/* ============================================================
   vina99 Design System
   Reusable across index, winning-result, sports-betting, jackpot,
   faq, license, privacy, terms, responsible-gaming pages.
   ============================================================ */

:root {
  --bg-deep: #0f2638;
  --bg-darker: #0a1c2a;
  --bg-panel: #14324a;
  --bg-card: #1a3a55;
  --bg-card-hover: #214a6a;
  --accent-teal: #1e8e8e;
  --accent-teal-light: #2bb3b3;
  --accent-yellow: #ffc107;
  --accent-yellow-dark: #e6a800;
  --accent-red: #d43c3c;
  --accent-green: #2fbf71;
  --accent-blue: #2b7cd6;
  --text-primary: #ffffff;
  --text-muted: #a8c0d0;
  --text-soft: #c8d8e3;
  --border-soft: #20425e;
  --border-stronger: #2c5b80;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-card: 0 4px 14px rgba(0,0,0,0.25);
  --shadow-hover: 0 8px 22px rgba(0,0,0,0.4);
  --font-base: "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif;
  --max-width: 1200px;
  --nav-height: 64px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-yellow);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus {
  color: var(--accent-yellow-dark);
  outline: none;
}

a:focus-visible {
  outline: 2px solid var(--accent-yellow);
  outline-offset: 2px;
}

/* ============================================================
   Container
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================================
   Top Bar / Navigation
   ============================================================ */
.topbar {
  background-color: var(--bg-darker);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-yellow);
  letter-spacing: 0.5px;
  font-style: italic;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.logo:hover {
  color: var(--accent-yellow-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-grow: 1;
  margin-left: 28px;
}

.main-nav a {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover {
  background-color: var(--bg-panel);
  color: var(--text-primary);
}

.main-nav a.active {
  color: var(--accent-yellow);
  background-color: var(--bg-panel);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 22px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border: 0;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.btn-login {
  background: linear-gradient(180deg, #3aa3a3, #1e8e8e);
  color: #fff;
}

.btn-register {
  background: linear-gradient(180deg, #ffd54a, #e6a800);
  color: #1a1a1a;
}

.btn-primary {
  background: linear-gradient(180deg, #ffd54a, #e6a800);
  color: #1a1a1a;
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-stronger);
}

.btn-ghost:hover {
  background: var(--bg-panel);
}

.search-box {
  display: flex;
  align-items: center;
  background: var(--bg-panel);
  border-radius: 22px;
  padding: 6px 14px;
  border: 1px solid var(--border-soft);
}

.search-box input {
  background: transparent;
  border: 0;
  color: var(--text-primary);
  outline: none;
  font-size: 13px;
  width: 160px;
  font-family: inherit;
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  padding: 6px 10px;
}

/* ============================================================
   Hero / Banner
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #b8252a, #d43c3c 50%, #e87a1a);
  border-radius: var(--radius-lg);
  margin: 18px 0 26px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  font-style: italic;
  text-shadow: 0 3px 6px rgba(0,0,0,0.35);
  margin-bottom: 14px;
  color: #fff;
}

.hero-text h1 span.accent {
  color: var(--accent-yellow);
  display: block;
}

.hero-tag {
  display: inline-block;
  background: rgba(0,0,0,0.25);
  color: #ffeaa3;
  padding: 6px 12px;
  border-radius: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-text p {
  color: #ffeedf;
  font-size: 15px;
  margin-bottom: 18px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   Section Title
   ============================================================ */
.section {
  margin: 38px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 18px;
  color: var(--accent-teal-light);
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.section-title a.see-all {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.section-title a.see-all:hover {
  color: var(--accent-yellow);
}

/* ============================================================
   Category Tiles (Pre-Match / Live Sports / providers)
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.cat-tile {
  background: var(--accent-teal);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  font-weight: 900;
  font-size: 22px;
  font-style: italic;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
  background-image: linear-gradient(135deg, #1e8e8e 0%, #2bb3b3 100%);
}

.cat-tile:hover {
  transform: translateY(-3px);
}

.cat-tile .cat-badge {
  display: inline-block;
  margin-left: 8px;
  background: #fff;
  color: var(--accent-red);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 12px;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.provider-tile {
  background: linear-gradient(135deg, #1e8e8e 0%, #2bb3b3 100%);
  border-radius: var(--radius-md);
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  font-size: 17px;
  text-align: center;
  padding: 12px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.provider-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* ============================================================
   Events Table
   ============================================================ */
.events-panel {
  background: var(--bg-panel);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border-soft);
}

.events-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
}

.events-head strong {
  color: var(--text-primary);
}

.events-head select {
  background: var(--bg-card);
  color: var(--text-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 5px 8px;
  font-size: 12px;
  font-family: inherit;
}

.tab-tennis {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-yellow);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 14px;
  margin-bottom: 10px;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.event-card {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 12px;
  border: 1px solid var(--border-soft);
}

.event-meta {
  color: var(--text-muted);
  font-size: 11px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.event-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  font-weight: 600;
  color: var(--text-primary);
}

.event-vs {
  background: var(--bg-darker);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  color: var(--text-muted);
}

.event-odds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.odd-btn {
  background: var(--bg-darker);
  color: var(--accent-yellow);
  text-align: center;
  padding: 7px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  transition: background var(--transition);
}

.odd-btn:hover {
  background: var(--bg-panel);
}

/* ============================================================
   Game Grid (Live Casino / Casino)
   ============================================================ */
.game-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border-soft);
}

.game-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.game-card .game-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0,0,0,0.7);
  color: var(--accent-yellow);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
}

/* ============================================================
   Tournament Cards
   ============================================================ */
.tournament-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.tournament-card {
  background: var(--bg-panel);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
}

.tournament-banner {
  height: 160px;
  overflow: hidden;
  background: var(--bg-card);
}

.tournament-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tournament-body {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  align-items: center;
}

.tournament-body h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.t-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.t-value {
  color: var(--accent-yellow);
  font-weight: 700;
  font-size: 14px;
}

.countdown {
  display: flex;
  gap: 4px;
}

.countdown div {
  background: var(--bg-darker);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  text-align: center;
  font-size: 11px;
  min-width: 32px;
}

.countdown strong {
  display: block;
  color: var(--accent-yellow);
  font-size: 14px;
}

.tournament-cta {
  grid-column: 1 / -1;
  padding-top: 8px;
}

/* ============================================================
   Brand Story Block
   ============================================================ */
.brand-story {
  background: var(--bg-panel);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-soft);
  margin: 30px 0;
}

.brand-story h2 {
  color: var(--accent-teal-light);
  font-size: 22px;
  margin-bottom: 14px;
}

.brand-story h3 {
  color: var(--accent-yellow);
  font-size: 16px;
  margin: 18px 0 8px;
}

.brand-story p {
  color: var(--text-soft);
  margin-bottom: 12px;
  font-size: 14px;
}

.brand-story ul {
  margin: 10px 0 14px 22px;
  color: var(--text-soft);
  font-size: 14px;
}

.brand-story ul li {
  margin-bottom: 6px;
}

/* ============================================================
   Feature Cards
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 22px 0;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  border: 1px solid var(--border-soft);
  transition: border-color var(--transition);
}

.feature-card:hover {
  border-color: var(--accent-teal-light);
}

.feature-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 22px;
}

.feature-card h3 {
  color: var(--accent-yellow);
  font-size: 15px;
  margin-bottom: 6px;
}

.feature-card p {
  color: var(--text-soft);
  font-size: 13px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  margin-top: 18px;
}

.faq-item {
  background: var(--bg-panel);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 12px;
  border: 1px solid var(--border-soft);
}

.faq-item h4 {
  color: var(--accent-yellow);
  font-size: 15px;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--text-soft);
  font-size: 14px;
}

.faq-item ul {
  margin: 8px 0 0 22px;
  color: var(--text-soft);
  font-size: 13px;
}

/* ============================================================
   User Review block
   ============================================================ */
.user-review {
  background: linear-gradient(135deg, #14324a, #1a3a55);
  border-left: 4px solid var(--accent-yellow);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  margin: 26px 0;
  font-style: italic;
  color: var(--text-soft);
  font-size: 14px;
}

.user-review strong {
  display: block;
  color: var(--accent-yellow);
  font-style: normal;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 13px;
}

/* ============================================================
   CTA Strip
   ============================================================ */
.cta-strip {
  background: linear-gradient(120deg, #1e8e8e, #2bb3b3);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-strip h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 6px;
}

.cta-strip p {
  color: #eafffd;
  font-size: 14px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--bg-darker);
  padding: 36px 0 18px;
  margin-top: 40px;
  border-top: 1px solid var(--border-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 24px;
}

.footer-col h5 {
  color: var(--accent-yellow);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.footer-col ul li a:hover {
  color: var(--accent-yellow);
}

.footer-col p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 6px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 18px 0;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-panel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom .age-badge {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 700;
  margin-right: 8px;
}

/* ============================================================
   Side Float Buttons
   ============================================================ */
.side-float {
  position: fixed;
  right: 14px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}

.side-float button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--accent-yellow);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.side-float button:hover {
  background: var(--accent-yellow-dark);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .game-grid { grid-template-columns: repeat(5, 1fr); }
  .provider-grid { grid-template-columns: repeat(4, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .event-list { grid-template-columns: repeat(2, 1fr); }
  .hero-text h1 { font-size: 30px; }
  .main-nav { gap: 0; }
  .main-nav a { padding: 8px 10px; font-size: 12px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: inline-block; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-darker);
    flex-direction: column;
    padding: 12px;
    margin-left: 0;
    border-bottom: 1px solid var(--border-soft);
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-sm);
  }
  .search-box { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }
  .hero-text h1 { font-size: 26px; }
  .category-grid { grid-template-columns: 1fr; }
  .provider-grid { grid-template-columns: repeat(2, 1fr); }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .event-list { grid-template-columns: 1fr; }
  .tournament-grid { grid-template-columns: 1fr; }
  .tournament-body { grid-template-columns: 1fr 1fr; }
  .cta-strip { flex-direction: column; text-align: center; }
  .topbar-inner { gap: 8px; }
  .btn { padding: 8px 14px; font-size: 12px; }
}

@media (max-width: 480px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .logo { font-size: 20px; }
  .hero-text h1 { font-size: 22px; }
  .section-title h2 { font-size: 15px; }
}
/* ============================================================
   Hero / Banner
   ============================================================ */
.hero img{width:100%;height:100%;object-fit:cover;object-position:center}
.feature-card .icon img{width:100%;height:100%;object-fit:cover;object-position:center}
.footer-social a img{width:100%;height:100%;object-fit:cover;object-position:center}
.side-float button 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;
}

