:root{
--playtogethero_bg: #FDFBF7;
--playtogethero_surface: #F2EFE9;
--playtogethero_primary: #6B8E6B;
--playtogethero_secondary: #4A6B4A;
--playtogethero_accent: #FF7F50;
--playtogethero_text: #1A2F1A;
--playtogethero_text_muted: #4A5D4A;
--playtogethero_gold: #D4AF37;
--playtogethero_font_heading: 'Cinzel', serif;
--playtogethero_font_body: 'Lato', sans-serif;
--playtogethero_radius: 12px;
--playtogethero_shadow: 0 8px 24px rgba(26,47,26,0.08);
}
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
font-family: var(--playtogethero_font_body);
background-color: var(--playtogethero_bg);
color: var(--playtogethero_text);
line-height: 1.6;
font-size: 16px;
}
img{
max-width: 100%;
height: auto;
display: block;
}
a{
color: inherit;
text-decoration: none;
}
.playtogethero_container{
width: 100%;
max-width: 1200px;
margin-inline: auto;
padding-inline: 24px;
}
.playtogethero_h1, .playtogethero_h2, .playtogethero_h3, .playtogethero_h4{
font-family: var(--playtogethero_font_heading);
font-weight: 700;
margin-bottom: 16px;
color: var(--playtogethero_text);
}
.playtogethero_h1{ font-size: 2.5rem; line-height: 1.2; }
.playtogethero_h2{ font-size: 2rem; }
.playtogethero_h3{ font-size: 1.5rem; }
.playtogethero_h4{ font-size: 1.25rem; }
.playtogethero_text_center{ text-align: center; }
.playtogethero_margin_bottom{ margin-bottom: 32px; }
.playtogethero_margin_top{ margin-top: 48px; }
.playtogethero_text_ivory{ color: var(--playtogethero_bg); }
.playtogethero_text_small{ font-size: 0.875rem; color: var(--playtogethero_text_muted); }
.playtogethero_bg_sage{ background-color: var(--playtogethero_primary); color: var(--playtogethero_bg); }
.playtogethero_bg_dark{ background-color: #1A2F1A; }
.playtogethero_bg_light{ background-color: #FFFFFF; }
.playtogethero_btn{
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 24px;
border-radius: 8px;
font-family: var(--playtogethero_font_body);
font-weight: 700;
border: none;
cursor: pointer;
transition: transform 0.2s, opacity 0.2s;
min-height: 44px;
}
.playtogethero_btn:hover{ transform: translateY(-2px); }
.playtogethero_btn:active{ transform: translateY(0); }
.playtogethero_btn_coral{
background-color: var(--playtogethero_accent);
color: #FFF;
}
.playtogethero_btn_sage{
background-color: var(--playtogethero_secondary);
color: var(--playtogethero_bg);
}
.playtogethero_btn_outline{
background-color: transparent;
border: 2px solid var(--playtogethero_primary);
color: var(--playtogethero_primary);
}
.playtogethero_input{
width: 100%;
padding: 12px;
border: 1px solid var(--playtogethero_primary);
border-radius: 8px;
font-family: var(--playtogethero_font_body);
background: var(--playtogethero_bg);
color: var(--playtogethero_text);
margin-bottom: 16px;
}
.playtogethero_textarea{
min-height: 120px;
resize: vertical;
}
.playtogethero_header{
position: sticky;
top: 0;
width: 100%;
background-color: rgba(253, 251, 247, 0.95);
backdrop-filter: blur(8px);
z-index: 100;
border-bottom: 1px solid rgba(107, 142, 107, 0.2);
}
.playtogethero_header_inner{
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
padding: 16px 24px;
}
.playtogethero_logo{
font-family: var(--playtogethero_font_heading);
font-size: 1.5rem;
font-weight: 700;
color: var(--playtogethero_secondary);
}
.playtogethero_nav{
display: flex;
gap: 24px;
}
.playtogethero_nav_link{
font-weight: 700;
color: var(--playtogethero_text_muted);
transition: color 0.2s;
}
.playtogethero_nav_link:hover, .playtogethero_active_link{
color: var(--playtogethero_secondary);
}
.playtogethero_header_actions{
display: flex;
align-items: center;
gap: 16px;
flex-wrap: wrap;
justify-content: end;
}
.playtogethero_age_badge{
background-color: var(--playtogethero_surface);
color: var(--playtogethero_secondary);
font-size: 0.75rem;
font-weight: 700;
padding: 4px 8px;
border-radius: 4px;
border: 1px solid var(--playtogethero_primary);
}
.playtogethero_burger{
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
padding: 8px;
}
.playtogethero_burger_line{
width: 24px;
height: 2px;
background-color: var(--playtogethero_secondary);
}
.playtogethero_wallet_floating{
position: fixed;
bottom: 24px;
right: 24px;
background-color: var(--playtogethero_surface);
border: 2px solid var(--playtogethero_gold);
border-radius: 30px;
padding: 12px 24px;
display: flex;
align-items: center;
gap: 8px;
z-index: 90;
box-shadow: var(--playtogethero_shadow);
}
.playtogethero_wallet_label{
font-size: 0.875rem;
color: var(--playtogethero_text_muted);
}
.playtogethero_wallet_amount{
font-weight: 700;
color: var(--playtogethero_secondary);
font-size: 1.125rem;
}
.playtogethero_hero_dock{
position: relative;
min-height: 80vh;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding-bottom: 48px;
}
.playtogethero_hero_bg_gradient{
position: absolute;
inset: 0;
background: linear-gradient(180deg, var(--playtogethero_surface) 0%, var(--playtogethero_bg) 100%);
z-index: -2;
}
.playtogethero_hero_content{
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: end;
}
.playtogethero_hero_arch{
border-radius: 200px 200px 0 0;
overflow: hidden;
border: 8px solid var(--playtogethero_surface);
box-shadow: var(--playtogethero_shadow);
}
.playtogethero_hero_img{
width: 100%;
height: 100%;
object-fit: cover;
aspect-ratio: 3/4;
}
.playtogethero_hero_text_dock{
background-color: var(--playtogethero_surface);
padding: 48px;
border-radius: var(--playtogethero_radius);
box-shadow: var(--playtogethero_shadow);
}
.playtogethero_hero_subtitle{
font-size: 1.125rem;
margin-bottom: 24px;
color: var(--playtogethero_text_muted);
}
.playtogethero_hero_legal_strip{
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-bottom: 24px;
font-size: 0.875rem;
font-weight: 700;
color: var(--playtogethero_secondary);
}
.playtogethero_hero_legal_strip span{
background: var(--playtogethero_bg);
padding: 4px 12px;
border-radius: 12px;
}
.playtogethero_social_games_band{
padding: 64px 0;
background-color: var(--playtogethero_bg);
}
.playtogethero_section_header{
text-align: center;
margin-bottom: 48px;
}
.playtogethero_home_games_stack{
display: grid;
grid-template-columns: 1fr;
max-width: clamp(820px, 72vw, 900px);
width: 100%;
margin-inline: auto;
gap: clamp(20px, 3vw, 28px);
padding-inline: clamp(14px, 3vw, 24px);
}
.playtogethero_game_card{
background-color: var(--playtogethero_surface);
border-radius: var(--playtogethero_radius);
border: 2px solid rgba(107, 142, 107, 0.2);
padding: 24px;
box-shadow: var(--playtogethero_shadow);
display: flex;
flex-direction: column;
gap: 24px;
box-sizing: border-box;
max-width: 100%;
min-width: 0;
}
.playtogethero_game_card_header h3{
margin-bottom: 8px;
color: var(--playtogethero_secondary);
}
.playtogethero_slot_stage{
width: 100%;
min-height: clamp(240px, 18vw, 320px);
background-color: #1A2F1A;
border-radius: 8px;
border: 4px solid var(--playtogethero_secondary);
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
box-sizing: border-box;
}
.playtogethero_slot_reel_window{
width: 100%;
height: 100%;
display: grid;
grid-template-columns: repeat(3, 1fr);
overflow: hidden;
border-radius: 4px;
}
.playtogethero_slot_reel{
width: 100%;
height: 100%;
min-width: 0;
display: flex;
align-items: center;
justify-content: center;
border-right: 2px solid rgba(255,255,255,0.1);
position: relative;
}
.playtogethero_slot_reel:last-child{
border-right: none;
}
.playtogethero_slot_symbol{
display: block;
max-width: 80%;
max-height: 80%;
object-fit: contain;
}
.playtogethero_slot_payline{
position: absolute;
top: 50%;
left: 0;
width: 100%;
height: 4px;
background-color: rgba(212, 175, 55, 0.5);
transform: translateY(-50%);
z-index: 10;
pointer-events: none;
}
.playtogethero_wheel_stage{
width: 100%;
max-width: 360px;
margin: 0 auto;
aspect-ratio: 1/1;
position: relative;
display: grid;
place-items: center;
border-radius: 50%;
overflow: hidden;
border: 8px solid var(--playtogethero_secondary);
box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
background-color: #1A2F1A;
}
.playtogethero_wheel_img{
width: 100%;
height: 100%;
border-radius: 50%;
display: block;
max-width: 100%;
max-height: 100%;
object-fit: contain;
transform-origin: center;
grid-area: 1/1;
}
.playtogethero_wheel_pointer{
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-top: 30px solid var(--playtogethero_accent);
z-index: 20;
grid-area: 1/1;
place-self: start center;
}
.playtogethero_game_controls{
display: flex;
flex-direction: column;
gap: 16px;
background-color: var(--playtogethero_bg);
padding: 16px;
border-radius: 8px;
}
.playtogethero_control_row{
display: flex;
flex-wrap: wrap;
gap: 16px;
align-items: flex-end;
}
.playtogethero_control_row label{
display: flex;
flex-direction: column;
gap: 8px;
font-size: 0.875rem;
font-weight: 700;
color: var(--playtogethero_text_muted);
}
.playtogethero_control_row select{
margin-bottom: 0;
min-width: 120px;
}
.playtogethero_game_result{
font-weight: 700;
color: var(--playtogethero_accent);
min-height: 24px;
}
.playtogethero_game_history{
font-size: 0.875rem;
color: var(--playtogethero_text_muted);
}
.playtogethero_game_rules_panel{
margin-top: 16px;
padding: 16px;
background-color: var(--playtogethero_bg);
border-radius: 8px;
}
.playtogethero_cta_wrapper{
display: flex;
justify-content: center;
margin-top: 48px;
}
.playtogethero_split_editorial{
padding: 64px 0;
}
.playtogethero_grid_2{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: center;
}
.playtogethero_arch_frame{
border-radius: 200px 200px 0 0;
overflow: hidden;
border: 8px solid var(--playtogethero_surface);
}
.playtogethero_list{
list-style: none;
display: flex;
flex-direction: column;
gap: 16px;
}
.playtogethero_list li{
background-color: var(--playtogethero_surface);
padding: 16px;
border-radius: 8px;
border-left: 4px solid var(--playtogethero_secondary);
}
.playtogethero_feature_blocks{
padding: 64px 0;
}
.playtogethero_grid_3{
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 48px;
}
.playtogethero_proof_card{
background-color: var(--playtogethero_bg);
padding: 32px;
border-radius: var(--playtogethero_radius);
box-shadow: var(--playtogethero_shadow);
color: var(--playtogethero_text);
}
.playtogethero_interactive_faq{
padding: 64px 0;
background-color: var(--playtogethero_surface);
}
.playtogethero_accordion_wrapper{
max-width: 800px;
margin: 32px auto 0;
display: flex;
flex-direction: column;
gap: 16px;
}
.playtogethero_accordion_item{
background-color: var(--playtogethero_bg);
border-radius: 8px;
border: 1px solid rgba(107, 142, 107, 0.2);
overflow: hidden;
}
.playtogethero_accordion_trigger{
width: 100%;
text-align: left;
padding: 16px 24px;
background: none;
border: none;
font-family: var(--playtogethero_font_heading);
font-weight: 700;
font-size: 1.125rem;
color: var(--playtogethero_secondary);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}
.playtogethero_accordion_trigger::after{
content: '+';
font-size: 1.5rem;
}
.playtogethero_accordion_trigger[aria-expanded="true"]::after{
content: '-';
}
.playtogethero_accordion_content{
padding: 0 24px;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
}
.playtogethero_accordion_trigger[aria-expanded="true"] + .playtogethero_accordion_content{
max-height: 300px;
padding: 0 24px 24px;
}
.playtogethero_legal_disclaimer_block{
padding: 48px 0;
background-color: var(--playtogethero_bg);
text-align: center;
max-width: 800px;
margin: 0 auto;
color: var(--playtogethero_text_muted);
font-size: 0.875rem;
}
.playtogethero_page_spacing{
padding: 64px 0;
}
.playtogethero_editorial_content{
max-width: 800px;
margin: 0 auto;
}
.playtogethero_editorial_content h2, .playtogethero_editorial_content h3{
margin-top: 32px;
}
.playtogethero_contact_grid{
align-items: start;
}
.playtogethero_footer{
background-color: var(--playtogethero_secondary);
color: var(--playtogethero_bg);
padding: 64px 24px 24px;
}
.playtogethero_footer_top{
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 48px;
margin-bottom: 48px;
}
.playtogethero_footer_col h4{
color: var(--playtogethero_surface);
}
.playtogethero_footer_col p{
font-size: 0.875rem;
opacity: 0.9;
margin-bottom: 12px;
}
.playtogethero_footer_nav{
display: flex;
flex-direction: column;
gap: 12px;
}
.playtogethero_footer_link{
font-size: 0.875rem;
transition: opacity 0.2s;
}
.playtogethero_footer_link:hover{
opacity: 0.7;
}
.playtogethero_partner_logos{
display: flex;
gap: 16px;
flex-wrap: wrap;
margin-top: 16px;
}
.playtogethero_partner_anchor{
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px;
border-radius: 4px;
}
.playtogethero_partner_img{
height: 40px;
width: auto;
}
.playtogethero_footer_bottom{
max-width: 1200px;
margin: 0 auto;
border-top: 1px solid rgba(253, 251, 247, 0.2);
padding-top: 24px;
text-align: center;
font-size: 0.75rem;
opacity: 0.8;
}
.playtogethero_age_gate_overlay, .playtogethero_modal_overlay{
position: fixed;
inset: 0;
background: rgba(10, 16, 34, 0.9);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s;
padding: 24px;
}
.playtogethero_active{
opacity: 1;
pointer-events: auto;
}
.playtogethero_age_gate_card, .playtogethero_modal_card{
background: var(--playtogethero_bg);
color: var(--playtogethero_text);
padding: 48px;
border-radius: var(--playtogethero_radius);
max-width: 500px;
width: 100%;
text-align: center;
position: relative;
}
.playtogethero_modal_close{
position: absolute;
top: 16px;
right: 16px;
background: none;
border: none;
font-size: 1.25rem;
cursor: pointer;
color: var(--playtogethero_text_muted);
}
.playtogethero_age_gate_card p{
margin-bottom: 24px;
}
.playtogethero_hidden_lantern{
position: absolute;
bottom: 10px;
right: 10px;
width: 20px;
height: 20px;
opacity: 0;
cursor: pointer;
}
@media (max-width: 768px){
.playtogethero_nav{
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: var(--playtogethero_surface);
flex-direction: column;
padding: 24px;
border-bottom: 1px solid rgba(107, 142, 107, 0.2);
}
.playtogethero_nav.playtogethero_nav_open{
display: flex;
}
.playtogethero_burger{
display: flex;
}
.playtogethero_hero_content, .playtogethero_grid_2, .playtogethero_grid_3{
grid-template-columns: 1fr;
}
.playtogethero_hero_arch{
aspect-ratio: 16/9;
}
.playtogethero_hero_text_dock{
padding: 24px;
}
.playtogethero_home_games_stack{
padding-inline: 16px;
}
.playtogethero_wallet_floating{
bottom: 16px;
right: 16px;
padding: 8px 16px;
}
}
/* footer-logo-contrast-guard-v2 */
a[href*="begambleaware.org"],
a[href*="gambleaware"] {
  background: #000 !important;
  color: #111111 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

a[href*="begambleaware.org"] img,
a[href*="begambleaware.org"] picture,
a[href*="begambleaware.org"] .partner-logo,
img[src*="gambleaware"],
img[alt*="BeGambleAware" i],
img[alt*="GambleAware" i] {
  background: #000 !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

a[href*="gamcare.org"] {
  background: #fff !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

a[href*="gamcare.org"] img,
a[href*="gamcare.org"] picture,
a[href*="gamcare.org"] .partner-logo,
img[src*="gamcare"],
img[alt*="GamCare" i] {
  background: #fff !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

/* social-game-layering-guard-v4 */
[data-home-live-game],
[data-game-card],
[data-slot-game],
[data-slot-stage],
[data-wheel-game],
[data-wheel-stage],
[data-mechanic],
[class*="game_wrapper"],
[class*="game-wrapper"],
[class*="game_board"],
[class*="game-board"],
[class*="slot_board"],
[class*="slot-board"],
[class*="roulette_board"],
[class*="roulette-board"] {
  position: relative !important;
  isolation: isolate !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

[class*="slot"][class*="frame"],
[class*="slot"][class*="bg"],
[class*="slot"][class*="background"],
img[class*="slot_frame"],
img[class*="slot-frame"],
img[class*="frame_img"],
img[class*="frame-img"],
[data-game-mechanic="slot"] [class*="game_visual"] > img:first-child,
[data-game-mechanic="slot"] [class*="game-visual"] > img:first-child,
[data-game-mechanic="slot"] img[class*="game_bg"],
[data-game-mechanic="slot"] img[class*="game-bg"] {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

[class*="roulette"][class*="wheel"] img,
img[class*="roulette"][class*="wheel"],
[data-wheel-img] {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transform-origin: center !important;
  border-radius: 50% !important;
  clip-path: circle(50% at 50% 50%) !important;
  pointer-events: none !important;
}

[data-wheel-stage],
[data-wheel-game] [class*="wheel_stage"],
[data-wheel-game] [class*="wheel-stage"],
[class*="wheel_board"],
[class*="wheel-board"],
[class*="roulette_board"],
[class*="roulette-board"] {
  aspect-ratio: 1 / 1 !important;
  position: relative !important;
  overflow: hidden !important;
  display: grid !important;
  place-items: center !important;
}

[data-game-mechanic="slot"] [class*="game_visual"],
[data-game-mechanic="slot"] [class*="game-visual"] {
  min-height: clamp(260px, 42vw, 560px) !important;
  aspect-ratio: 4 / 3 !important;
  position: relative !important;
  overflow: hidden !important;
}

[data-slot-stage],
[data-slot-game] [class*="slot_stage"],
[data-slot-game] [class*="slot-stage"],
[data-game-mechanic="slot"] [class*="slot_board"],
[data-game-mechanic="slot"] [class*="slot-board"] {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  aspect-ratio: 16 / 7 !important;
  display: grid !important;
  align-items: center !important;
}

[data-slot-reel-window],
[data-slot-game] [class*="slot_reel_window"],
[data-slot-game] [class*="slot-reel-window"],
[data-slot-game] [class*="reel_window"],
[data-slot-game] [class*="reel-window"] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: clamp(170px, 22vw, 320px) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: clamp(0.55rem, 1.5vw, 1.2rem) !important;
  overflow: hidden !important;
  position: relative !important;
}

[class*="slot_reels"],
[class*="slot-reels"],
[class*="reels"],
[data-home-live-game] [data-reel-index] {
  position: absolute !important;
  left: 10% !important;
  right: 10% !important;
  top: 35% !important;
  bottom: 35% !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: clamp(0.45rem, 1.4vw, 1.1rem) !important;
  z-index: 60 !important;
  pointer-events: none !important;
}

[data-slot-symbol],
[class*="slot_symbol"],
[class*="slot-symbol"],
[class*="reel"] img,
[data-home-live-game] [data-reel-index] img {
  position: relative !important;
  z-index: 70 !important;
  display: block !important;
  width: clamp(72px, 62%, 170px) !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 88% !important;
  object-fit: contain !important;
}

[class*="slot_reel"]:not([class*="window"]),
[class*="slot-reel"]:not([class*="window"]),
[data-slot-reel],
[data-home-live-game] [data-reel-index] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: clamp(72px, 10vw, 150px) !important;
  background: rgba(2, 8, 18, 0.88) !important;
  border: 2px solid rgba(255,255,255,0.78) !important;
  border-radius: 0.85rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16), 0 0.9rem 1.8rem rgba(0,0,0,0.35) !important;
}

[class*="roulette"][class*="pointer"],
[class*="wheel"][class*="pointer"],
[data-wheel-pointer],
[data-home-live-game] [data-roulette-bet],
[data-home-live-game] [class*="game_ui"],
[data-home-live-game] [class*="game-ui"],
[data-home-live-game] [class*="game_controls"],
[data-home-live-game] [class*="game-controls"],
[data-home-live-game] [class*="bet"],
[data-home-live-game] [class*="result"],
[data-home-live-game] [class*="status"],
[data-home-live-game] button,
[data-home-live-game] select,
[data-home-live-game] input {
  position: relative !important;
  z-index: 90 !important;
}
