:root{
  --bg-primary:#0b0e1a;
  --bg-secondary:#141829;
  --bg-card:#1c2138;
  --bg-card-hover:#252b47;
  --accent-purple:#7c3aed;
  --accent-pink:#ec4899;
  --accent-gold:#fbbf24;
  --accent-blue:#3b82f6;
  --accent-green:#10b981;
  --text-primary:#ffffff;
  --text-secondary:#a8aec5;
  --text-muted:#6b7290;
  --border:#2a304a;
  --gradient-1:linear-gradient(135deg,#7c3aed 0%,#ec4899 100%);
  --gradient-2:linear-gradient(135deg,#3b82f6 0%,#7c3aed 100%);
  --gradient-gold:linear-gradient(135deg,#fbbf24 0%,#f59e0b 100%);
  --shadow-card:0 4px 20px rgba(0,0,0,0.4);
  --shadow-hover:0 8px 30px rgba(124,58,237,0.3);
  --radius-sm:6px;
  --radius-md:10px;
  --radius-lg:16px;
  --radius-xl:24px;
  --container:1280px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Segoe UI','Helvetica Neue',Arial,sans-serif;
  background:var(--bg-primary);
  color:var(--text-primary);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit;text-decoration:none;transition:color .25s ease}
a:hover{color:var(--accent-gold)}
img{max-width:100%;display:block}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}

.container{max-width:var(--container);margin:0 auto;padding:0 20px}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(11,14,26,0.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
  gap:24px;
}
.logo{
  font-size:28px;
  font-weight:900;
  letter-spacing:1px;
  background:var(--gradient-1);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  text-transform:uppercase;
  flex-shrink:0;
}
.logo:hover{color:transparent;opacity:0.85}

.main-nav{display:flex;align-items:center;gap:4px;flex:1;justify-content:center}
.main-nav a{
  padding:10px 18px;
  font-size:15px;
  font-weight:500;
  color:var(--text-secondary);
  border-radius:var(--radius-sm);
  transition:all .25s ease;
  position:relative;
}
.main-nav a:hover{color:var(--text-primary);background:var(--bg-card)}
.main-nav a.active{
  color:var(--text-primary);
  background:var(--gradient-1);
}

.header-actions{display:flex;gap:10px;flex-shrink:0}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 22px;
  font-size:14px;
  font-weight:600;
  border-radius:var(--radius-sm);
  transition:all .25s ease;
  cursor:pointer;
  white-space:nowrap;
}
.btn-login{
  background:transparent;
  color:var(--text-primary);
  border:1px solid var(--border);
}
.btn-login:hover{border-color:var(--accent-purple);color:var(--accent-purple)}
.btn-register{
  background:var(--gradient-gold);
  color:#1a0f00;
  font-weight:700;
}
.btn-register:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(251,191,36,0.4);color:#1a0f00}

.menu-toggle{
  display:none;
  width:40px;
  height:40px;
  align-items:center;
  justify-content:center;
  border-radius:var(--radius-sm);
  background:var(--bg-card);
}
.menu-toggle span{display:block;width:22px;height:2px;background:var(--text-primary);position:relative}
.menu-toggle span::before,.menu-toggle span::after{
  content:'';position:absolute;left:0;width:22px;height:2px;background:var(--text-primary);
}
.menu-toggle span::before{top:-7px}
.menu-toggle span::after{top:7px}

/* HERO */
.hero{
  padding:60px 0 80px;
  background:radial-gradient(circle at 20% 30%,rgba(124,58,237,0.15) 0%,transparent 50%),
             radial-gradient(circle at 80% 70%,rgba(236,72,153,0.12) 0%,transparent 50%),
             var(--bg-primary);
  position:relative;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.hero-content h1{
  font-size:52px;
  font-weight:900;
  line-height:1.1;
  margin-bottom:20px;
  letter-spacing:-1px;
}
.hero-content h1 .accent{
  background:var(--gradient-1);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.hero-content p.lead{
  font-size:17px;
  color:var(--text-secondary);
  margin-bottom:32px;
  max-width:520px;
}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:36px;
  max-width:520px;
}
.stat-item{
  background:var(--bg-card);
  padding:18px;
  border-radius:var(--radius-md);
  border:1px solid var(--border);
  text-align:center;
}
.stat-number{
  font-size:22px;
  font-weight:800;
  color:var(--accent-gold);
  margin-bottom:4px;
}
.stat-label{font-size:12px;color:var(--text-muted);text-transform:uppercase;letter-spacing:0.5px}

.hero-cta{display:flex;gap:14px;flex-wrap:wrap}
.btn-lg{padding:14px 30px;font-size:15px;border-radius:var(--radius-md)}
.btn-primary{background:var(--gradient-1);color:#fff}
.btn-primary:hover{transform:translateY(-2px);box-shadow:var(--shadow-hover);color:#fff}
.btn-outline{border:1px solid var(--border);color:var(--text-primary)}
.btn-outline:hover{border-color:var(--accent-purple);background:var(--bg-card)}

.hero-image{
  position:relative;
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
}
.hero-image img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}
.hero-image::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 60%,rgba(11,14,26,0.4) 100%);
  pointer-events:none;
}

/* SECTION */
.section{padding:70px 0}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:36px;
  gap:20px;
  flex-wrap:wrap;
}
.section-title{
  font-size:32px;
  font-weight:800;
  letter-spacing:-0.5px;
}
.section-title .dot{
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent-pink);
  margin-right:12px;
  vertical-align:middle;
}
.section-subtitle{color:var(--text-muted);font-size:15px;margin-top:6px}
.section-link{
  color:var(--accent-gold);
  font-size:14px;
  font-weight:600;
  padding:8px 16px;
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
}
.section-link:hover{background:var(--bg-card);color:var(--accent-gold)}

/* CATEGORY TABS */
.cat-tabs{
  display:flex;
  gap:10px;
  margin-bottom:30px;
  overflow-x:auto;
  padding-bottom:6px;
  scrollbar-width:none;
}
.cat-tabs::-webkit-scrollbar{display:none}
.cat-tab{
  padding:10px 20px;
  background:var(--bg-card);
  border-radius:30px;
  font-size:14px;
  font-weight:500;
  color:var(--text-secondary);
  white-space:nowrap;
  border:1px solid var(--border);
  transition:all .25s ease;
}
.cat-tab:hover{color:var(--text-primary)}
.cat-tab.active{
  background:var(--gradient-1);
  color:#fff;
  border-color:transparent;
}

/* GAME GRID */
.game-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
}
.game-card{
  background:var(--bg-card);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:all .3s ease;
  cursor:pointer;
  position:relative;
  border:1px solid transparent;
}
.game-card:hover{
  transform:translateY(-6px);
  border-color:var(--accent-purple);
  box-shadow:var(--shadow-hover);
}
.game-thumb{
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  background:var(--bg-secondary);
}
.game-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .4s ease;
}
.game-card:hover .game-thumb img{transform:scale(1.08)}
.game-info{padding:12px 10px}
.game-name{font-size:13px;font-weight:600;margin-bottom:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.game-provider{font-size:11px;color:var(--text-muted)}
.game-badge{
  position:absolute;
  top:8px;
  left:8px;
  padding:3px 8px;
  border-radius:4px;
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  background:var(--accent-pink);
  color:#fff;
  z-index:2;
}
.game-badge.gold{background:var(--gradient-gold);color:#1a0f00}
.game-badge.green{background:var(--accent-green);color:#fff}

/* WIDE GAMES (live casino) */
.wide-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.wide-card{
  background:var(--bg-card);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:all .3s ease;
  border:1px solid transparent;
}
.wide-card:hover{transform:translateY(-4px);border-color:var(--accent-pink)}
.wide-thumb{
  width:100%;
  aspect-ratio:3/2;
  overflow:hidden;
}
.wide-thumb img{width:100%;height:100%;object-fit:cover;object-position:center}
.wide-info{padding:14px}
.wide-info h4{font-size:16px;margin-bottom:4px}
.wide-info p{font-size:13px;color:var(--text-muted)}

/* JACKPOT BANNER */
.jackpot-banner{
  background:linear-gradient(135deg,#1a0f3a 0%,#3a0f2a 100%);
  border-radius:var(--radius-lg);
  padding:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  border:1px solid var(--border);
  position:relative;
  overflow:hidden;
}
.jackpot-banner::before{
  content:'';
  position:absolute;
  top:-50%;
  right:-10%;
  width:400px;
  height:400px;
  background:radial-gradient(circle,rgba(251,191,36,0.2),transparent 70%);
  pointer-events:none;
}
.jackpot-info{position:relative;z-index:1}
.jackpot-info h3{
  font-size:18px;
  color:var(--accent-gold);
  margin-bottom:8px;
  text-transform:uppercase;
  letter-spacing:1px;
}
.jackpot-amount{
  font-size:48px;
  font-weight:900;
  background:var(--gradient-gold);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:6px;
}
.jackpot-info p{color:var(--text-secondary);font-size:14px}
.jackpot-banner img{
  width:220px;
  height:auto;
  position:relative;
  z-index:1;
}

/* FEATURES */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.feature-card{
  background:var(--bg-card);
  padding:28px 22px;
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  transition:all .3s ease;
}
.feature-card:hover{
  transform:translateY(-4px);
  border-color:var(--accent-purple);
}
.feature-icon{
  width:56px;
  height:56px;
  border-radius:14px;
  background:var(--gradient-1);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:18px;
}
.feature-card h3{font-size:17px;margin-bottom:10px}
.feature-card p{font-size:14px;color:var(--text-secondary);line-height:1.7}

/* CONTENT BLOCK */
.content-block{
  background:var(--bg-secondary);
  padding:60px 0;
}
.content-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}
.content-text h2{font-size:30px;margin-bottom:18px;letter-spacing:-0.5px}
.content-text h3{font-size:20px;margin:24px 0 12px;color:var(--accent-gold)}
.content-text p{
  color:var(--text-secondary);
  font-size:15px;
  margin-bottom:14px;
  line-height:1.8;
}
.content-text ul.bullets{margin:14px 0 14px 18px}
.content-text ul.bullets li{
  color:var(--text-secondary);
  font-size:14px;
  margin-bottom:8px;
  position:relative;
  padding-left:14px;
  list-style:none;
}
.content-text ul.bullets li::before{
  content:'▸';
  position:absolute;
  left:0;
  color:var(--accent-pink);
}

.info-cards{display:flex;flex-direction:column;gap:18px}
.info-card{
  background:var(--bg-card);
  padding:24px;
  border-radius:var(--radius-md);
  border-left:3px solid var(--accent-purple);
}
.info-card h4{font-size:16px;margin-bottom:8px;color:var(--accent-gold)}
.info-card p{font-size:14px;color:var(--text-secondary)}

/* PROCESS STEPS */
.process-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:30px;
}
.step-card{
  background:var(--bg-card);
  padding:24px 20px;
  border-radius:var(--radius-md);
  border:1px solid var(--border);
  position:relative;
}
.step-num{
  position:absolute;
  top:-14px;
  left:20px;
  width:34px;
  height:34px;
  background:var(--gradient-1);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:14px;
}
.step-card h4{font-size:15px;margin:10px 0 8px}
.step-card p{font-size:13px;color:var(--text-secondary);line-height:1.6}

/* FAQ */
.faq-list{display:flex;flex-direction:column;gap:14px;max-width:900px;margin:0 auto}
.faq-item{
  background:var(--bg-card);
  border-radius:var(--radius-md);
  padding:22px 26px;
  border:1px solid var(--border);
  transition:border-color .25s ease;
}
.faq-item:hover{border-color:var(--accent-purple)}
.faq-item h4{
  font-size:16px;
  margin-bottom:10px;
  color:var(--text-primary);
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.faq-item h4::before{
  content:'?';
  flex-shrink:0;
  width:24px;
  height:24px;
  background:var(--gradient-1);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:800;
}
.faq-item p{font-size:14px;color:var(--text-secondary);line-height:1.75;padding-left:34px}
.faq-item ul{margin:8px 0 0 50px;color:var(--text-secondary);font-size:14px}
.faq-item ul li{list-style:disc;margin-bottom:4px}

/* TESTIMONIAL */
.testimonial{
  background:linear-gradient(135deg,rgba(124,58,237,0.1),rgba(236,72,153,0.08));
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:36px;
  max-width:800px;
  margin:40px auto 0;
  text-align:center;
}
.testimonial::before{content:'"';font-size:64px;color:var(--accent-purple);line-height:0.6;font-family:Georgia,serif}
.testimonial p{font-size:16px;color:var(--text-secondary);font-style:italic;margin:14px 0 12px;line-height:1.8}
.testimonial .author{font-size:13px;color:var(--accent-gold);font-weight:600}

/* CTA */
.cta-section{
  background:var(--gradient-2);
  padding:60px 40px;
  border-radius:var(--radius-xl);
  text-align:center;
  margin:60px auto;
  max-width:1100px;
  position:relative;
  overflow:hidden;
}
.cta-section::before,.cta-section::after{
  content:'';
  position:absolute;
  width:300px;
  height:300px;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
}
.cta-section::before{top:-150px;left:-150px}
.cta-section::after{bottom:-150px;right:-150px}
.cta-section h2{font-size:32px;margin-bottom:14px;position:relative;z-index:1}
.cta-section p{color:rgba(255,255,255,0.85);margin-bottom:26px;font-size:16px;position:relative;z-index:1}
.cta-section .btn{position:relative;z-index:1}

/* FOOTER */
.site-footer{
  background:#070912;
  padding:60px 0 30px;
  border-top:1px solid var(--border);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.2fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-col h5{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:18px;
  color:var(--accent-gold);
}
.footer-col ul li{margin-bottom:10px}
.footer-col ul li a{color:var(--text-secondary);font-size:14px}
.footer-col ul li a:hover{color:var(--accent-gold)}
.footer-col p{color:var(--text-secondary);font-size:13px;line-height:1.8;margin-bottom:10px}
.footer-col .footer-logo{
  font-size:26px;
  font-weight:900;
  background:var(--gradient-1);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:14px;
  display:inline-block;
}
.footer-contact{font-size:13px;color:var(--text-secondary);line-height:2}
.footer-contact strong{color:var(--text-primary)}
.footer-bottom{
  padding-top:28px;
  border-top:1px solid var(--border);
  text-align:center;
  font-size:13px;
  color:var(--text-muted);
}
.footer-bottom .age{
  display:inline-block;
  padding:4px 10px;
  background:var(--accent-pink);
  color:#fff;
  font-weight:700;
  border-radius:4px;
  margin:0 6px;
}

/* RESPONSIVE */
@media (max-width:1100px){
  .game-grid{grid-template-columns:repeat(4,1fr)}
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .process-steps{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .hero-content h1{font-size:42px}
}
@media (max-width:768px){
  .menu-toggle{display:flex}
  .main-nav{
    position:fixed;
    top:72px;
    left:0;
    right:0;
    background:var(--bg-secondary);
    flex-direction:column;
    padding:20px;
    gap:6px;
    border-bottom:1px solid var(--border);
    transform:translateY(-150%);
    transition:transform .3s ease;
    z-index:999;
  }
  .main-nav.open{transform:translateY(0)}
  .main-nav a{width:100%;padding:14px 16px}
  .header-actions .btn-login{display:none}
  .hero{padding:40px 0 50px}
  .hero-grid{grid-template-columns:1fr;gap:40px}
  .hero-content h1{font-size:34px}
  .hero-stats{grid-template-columns:repeat(3,1fr);gap:10px}
  .stat-number{font-size:18px}
  .stat-label{font-size:10px}
  .game-grid{grid-template-columns:repeat(3,1fr);gap:12px}
  .wide-grid{grid-template-columns:1fr;gap:14px}
  .section{padding:50px 0}
  .section-title{font-size:24px}
  .jackpot-banner{flex-direction:column;text-align:center;padding:28px 20px}
  .jackpot-amount{font-size:36px}
  .jackpot-banner img{width:160px}
  .content-grid{grid-template-columns:1fr;gap:40px}
  .content-text h2{font-size:24px}
  .cta-section{padding:40px 24px}
  .cta-section h2{font-size:24px}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .logo{font-size:22px}
  .feature-grid{grid-template-columns:1fr}
}
@media (max-width:480px){
  .game-grid{grid-template-columns:repeat(2,1fr)}
  .hero-stats{grid-template-columns:repeat(3,1fr)}
  .hero-cta{flex-direction:column}
  .hero-cta .btn{width:100%}
  .section-head{flex-direction:column;align-items:flex-start}
}

/* Focus styles */
a:focus-visible,button:focus-visible{outline:2px solid var(--accent-gold);outline-offset:3px;border-radius:4px}

/* Utility */
.text-gold{color:var(--accent-gold)}
.text-pink{color:var(--accent-pink)}
.mb-2{margin-bottom:16px}
.mb-3{margin-bottom:24px}
.section-title .dot img{width:100%;height:100%;object-fit:cover;object-position:center}
.step-num img{width:100%;height:100%;object-fit:cover;object-position:center}
.faq-item h4::before img{width:100%;height:100%;object-fit:cover;object-position:center}
.cta-section::before,.cta-section::after img{width:100%;height:100%;object-fit:cover;object-position:center}

/* codex-design-system-v2: reusable full-site components */
:root{
  --ds-bg:var(--page-bg,#090014);
  --ds-surface:var(--card-bg,#1a1230);
  --ds-surface-2:var(--section-bg,#2a0730);
  --ds-text:var(--text,#ffffff);
  --ds-muted:var(--muted,#d8c8e6);
  --ds-accent:var(--accent,#e92a88);
  --ds-accent-2:var(--accent-2,#ffca2c);
  --ds-border:rgba(255,255,255,.18);
  --ds-radius:8px;
  --ds-shadow:0 18px 44px rgba(0,0,0,.28);
  --ds-container:1180px;
}
html{scroll-behavior:smooth}
body{background:var(--ds-bg);color:var(--ds-text)}
body a{color:inherit}
.main-nav,.nav-links{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap}
.main-nav ul,.nav-links ul{display:contents;list-style:none;margin:0;padding:0}
.main-nav li,.nav-links li{display:contents;margin:0;padding:0}
.main-nav a,.nav-links a{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;white-space:nowrap}
.main-nav a.active,.nav-links a.active{background:var(--ds-accent-2);color:#111;border-radius:var(--ds-radius)}
.container,.site-container,.inner,.wrap{width:min(var(--ds-container),calc(100% - 40px));margin-inline:auto}
.section,.section-pad,.content-section{padding:64px 0}
.section-tight{padding:42px 0}
.breadcrumb,.breadcrumbs{width:min(var(--ds-container),calc(100% - 40px));margin:0 auto;padding:22px 0;color:var(--ds-muted);font-size:14px}
.breadcrumb a,.breadcrumbs a{color:var(--ds-accent-2);text-decoration:none}
.story,.page-hero,.hero,.hero-section{position:relative;overflow:hidden;background:var(--ds-surface-2);color:var(--ds-text)}
.story>.container,.hero .container,.hero-section .container{width:min(var(--ds-container),calc(100% - 40px));margin-inline:auto}
.story-flex,.hero-split,.inner-hero{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(280px,.8fr);align-items:center;gap:56px;padding:70px 0}
.story-copy,.hero-copy,.inner-hero-copy{max-width:680px}
.story-copy h1,.hero-copy h1,.page-hero h1,.inner-hero h1{font-size:clamp(34px,5vw,64px);line-height:1.05;letter-spacing:0;margin:0 0 22px;color:#fff}
.story-copy p,.hero-copy p,.inner-hero p,.lead{font-size:clamp(16px,1.4vw,19px);line-height:1.75;color:var(--ds-muted);margin:0 0 18px}
.story-media,.hero-media,.inner-hero-media{border:1px solid var(--ds-border);border-radius:var(--ds-radius);overflow:hidden;box-shadow:var(--ds-shadow);background:#000}
.story-media img,.hero-media img,.inner-hero-media img{display:block;width:100%;aspect-ratio:16/10;object-fit:cover}
.btn,.button,.cta-button,.primary-btn,.secondary-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:44px;padding:0 22px;border-radius:999px;font-weight:800;text-decoration:none;border:1px solid transparent;line-height:1}
.primary-btn,.btn-primary,.cta-button{background:var(--ds-accent);color:#fff;box-shadow:0 12px 28px color-mix(in srgb,var(--ds-accent) 35%,transparent)}
.secondary-btn,.btn-secondary{background:transparent;color:#fff;border-color:var(--ds-border)}
.btn:hover,.button:hover,.cta-button:hover{transform:translateY(-1px)}
.content-card,.info-card,.feature-card,.step-card,.related-card{background:var(--ds-surface);border:1px solid var(--ds-border);border-radius:var(--ds-radius);box-shadow:var(--ds-shadow);padding:28px;color:var(--ds-text)}
.content-card h2,.info-card h3,.feature-card h3,.step-card h3,.related-card h3{color:var(--ds-text);margin:0 0 12px;line-height:1.25}
.content-card p,.info-card p,.feature-card p,.step-card p,.related-card p{color:var(--ds-muted);line-height:1.72;margin:0}
.feature-grid,.cards-grid,.related-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;width:min(var(--ds-container),calc(100% - 40px));margin-inline:auto}
.step-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;width:min(860px,calc(100% - 40px));margin-inline:auto}
.step-card .num,.step-number{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:999px;background:var(--ds-accent-2);color:#111;font-weight:900;margin-bottom:14px}
.faq,.faq-section{width:min(860px,calc(100% - 40px));margin-inline:auto}
.faq details,.faq-item{border:1px solid var(--ds-border);border-radius:var(--ds-radius);background:rgba(255,255,255,.04);margin-bottom:12px;overflow:hidden}
.faq summary,.faq-question{cursor:pointer;padding:18px 20px;color:var(--ds-text);font-weight:800}
.faq details p,.faq-answer{padding:0 20px 18px;color:var(--ds-muted);line-height:1.72}
.related-links{width:min(860px,calc(100% - 40px));margin-inline:auto}
.related-links a{color:var(--ds-accent-2);font-weight:800}
.cta-band,.final-cta{background:var(--ds-accent);color:#fff;text-align:center;padding:56px 20px}
.cta-band h2,.final-cta h2{color:#fff;margin:0 0 12px;font-size:clamp(26px,3vw,42px)}
.cta-band p,.final-cta p{width:min(720px,100%);margin:0 auto 22px;color:#fff;line-height:1.7}
footer,.footer{background:#090014;color:#fff}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.4fr;gap:34px;width:min(var(--ds-container),calc(100% - 40px));margin-inline:auto}
footer h3,footer h4,.footer h3,.footer h4{color:#fff;margin:0 0 14px}
footer p,footer li,footer a,.footer p,.footer li,.footer a{color:var(--ds-muted);line-height:1.65;text-decoration:none}
input,select,textarea{width:100%;border:1px solid var(--ds-border);border-radius:var(--ds-radius);padding:13px 14px;background:#fff;color:#111;font:inherit}
label{display:block;color:var(--ds-text);font-weight:700;margin-bottom:8px}
table{width:100%;border-collapse:collapse;background:var(--ds-surface);color:var(--ds-text);border-radius:var(--ds-radius);overflow:hidden}
th,td{padding:14px 16px;border-bottom:1px solid var(--ds-border);text-align:left}
th{color:var(--ds-text);background:rgba(255,255,255,.06)}
.text-safe,.content-section p,.content-section li{color:var(--ds-muted)}
.content-section h1,.content-section h2,.content-section h3{color:var(--ds-text)}
@media (max-width:900px){
  .story-flex,.hero-split,.inner-hero{grid-template-columns:1fr;gap:28px;padding:52px 0}
  .feature-grid,.cards-grid,.related-grid,.step-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:560px){
  .container,.site-container,.inner,.wrap,.breadcrumb,.breadcrumbs{width:min(100% - 28px,var(--ds-container))}
  .section,.section-pad,.content-section{padding:44px 0}
  .story-copy h1,.hero-copy h1,.page-hero h1,.inner-hero h1{font-size:34px}
  .footer-grid{grid-template-columns:1fr}
}

/* Uniform media grids: keep side-by-side images aligned */
.games-grid,
.game-grid,
.cards-grid,
.cat-grid,
.category-grid,
.overview-grid,
.slot-grid,
.casino-grid,
.game-gallery,
.game-list,
.featured-games,
.popular-games,
.grid {
  align-items: stretch;
  justify-content: center;
}
.games-grid img,
.game-grid img,
.slot-grid img,
.casino-grid img,
.game-gallery img,
.game-list img,
.featured-games img,
.popular-games img,
.game-tile img,
.slot-card img,
.casino-card img,
.game-card img,
.cat-card img,
.category-card img,
.cards-grid img,
.overview-grid img {
  width: 100% !important;
  height: 180px !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}
.game-card,
.game-tile,
.slot-card,
.casino-card,
.cat-card,
.category-card {
  display: grid !important;
  grid-template-rows: auto 1fr !important;
  align-content: start !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 14px !important;
}
.game-card > :not(img),
.game-tile > :not(img),
.slot-card > :not(img),
.casino-card > :not(img),
.cat-card > :not(img),
.category-card > :not(img) {
  margin-left: 18px !important;
  margin-right: 18px !important;
}
.game-card > img:first-child,
.game-tile > img:first-child,
.slot-card > img:first-child,
.casino-card > img:first-child,
.cat-card > img:first-child,
.category-card > img:first-child {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: 180px !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 0 0 18px 0 !important;
  border-radius: 14px 14px 0 0 !important;
}
.game-card > img:first-child + *,
.game-tile > img:first-child + *,
.slot-card > img:first-child + *,
.casino-card > img:first-child + *,
.cat-card > img:first-child + *,
.category-card > img:first-child + * {
  margin-top: 0 !important;
}
.strip-inner img,
.partner-strip img,
.logo-strip img {
  width: 110px !important;
  height: 110px !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
}
@media (max-width: 640px) {
  .games-grid img,
  .game-grid img,
  .slot-grid img,
  .casino-grid img,
  .game-gallery img,
  .game-list img,
  .featured-games img,
  .popular-games img,
  .game-tile img,
  .slot-card img,
  .casino-card img,
  .game-card img,
  .cat-card img,
  .category-card img,
  .cards-grid img,
  .overview-grid img {
    height: 150px !important;
  }
}
.feat-card img,
.feature-card img,
.service-card img,
.news-card img {
  flex-shrink: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

