/* ======================================================
   Winbox – Winbox88 Malaysia
   Theme: Light background + Sky Cyan-Blue accent
   (matches winbox88my6.com)
   ====================================================== */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f4faff;
  --bg-tertiary: #e6f5fc;
  --bg-card: #ffffff;
  --cyan-primary: #19bee8;
  --cyan-light: #5cd1ed;
  --cyan-dark: #0d8db0;
  --cyan-deep: #0a6e88;
  --cyan-glow: rgba(25, 190, 232, 0.35);
  --accent-orange: #ff7a00;
  --accent-red: #ff4d4d;
  --text-primary: #1a2733;
  --text-secondary: #2c3e50;
  --text-muted: #5e6b78;
  --text-faded: #8a96a3;
  --border-cyan: rgba(25, 190, 232, 0.25);
  --border-soft: rgba(25, 190, 232, 0.12);
  --border-light: #e1ecf2;
  --shadow-cyan: 0 8px 28px rgba(25, 190, 232, 0.22);
  --shadow-soft: 0 4px 14px rgba(25, 100, 140, 0.08);
  --shadow-deep: 0 12px 40px rgba(10, 110, 136, 0.18);
  --gradient-cyan: linear-gradient(135deg, #5cd1ed 0%, #19bee8 50%, #0d8db0 100%);
  --gradient-cyan-soft: linear-gradient(135deg, #19bee8 0%, #0d8db0 100%);
  --gradient-bg: linear-gradient(180deg, #ffffff 0%, #f4faff 60%, #ffffff 100%);
  --font-display: 'Poppins', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--gradient-bg);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cyan-primary); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
p { color: var(--text-muted); }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

/* Header — solid cyan bar like the screenshot */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cyan-primary);
  box-shadow: 0 2px 14px rgba(25, 190, 232, 0.25);
}
.header-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 12px; }

.brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.brand-mark {
  width: 36px; height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cyan-primary);
  font-weight: 900;
  font-family: var(--font-display);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  font-size: 1.1rem;
}
/* Brand wordmark (W + WINBOX horizontal lockup) */
.brand-logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
/* Footer version is slightly larger and sits on a dark background — wordmark is white so no padding needed */
.brand-logo-footer {
  height: 46px;
  max-width: 180px;
}

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-desktop a {
  display: block; padding: 8px 14px;
  font-size: 0.92rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em; transition: all var(--transition);
}
.nav-desktop a:hover, .nav-desktop a.active {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.header-actions { display: flex; align-items: center; gap: 8px; }

.lang-switch {
  display: flex; gap: 2px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill); padding: 3px;
}
.lang-switch a {
  padding: 5px 10px; font-size: 0.78rem; font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.lang-switch a.active { background: #ffffff; color: var(--cyan-primary); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 10px 22px;
  font-weight: 700; font-size: 0.9rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em; text-transform: uppercase;
  cursor: pointer; transition: all var(--transition);
  white-space: nowrap; border: 1px solid transparent;
  font-family: var(--font-display);
}
/* The signature white-pill register button (matches the header CTA in the screenshot) */
.btn-white {
  background: #ffffff;
  color: var(--cyan-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  color: var(--cyan-dark);
}
/* The big cyan CTAs that appear throughout the screenshot */
.btn-cyan {
  background: var(--cyan-primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(25, 190, 232, 0.4);
}
.btn-cyan:hover {
  transform: translateY(-2px);
  background: var(--cyan-dark);
  box-shadow: 0 8px 22px rgba(25, 190, 232, 0.55);
  color: #ffffff;
}
/* Keep btn-red and btn-gold aliases pointing to cyan so existing markup still works */
.btn-red, .btn-gold { background: var(--cyan-primary); color: #ffffff; box-shadow: 0 4px 14px rgba(25, 190, 232, 0.4); }
.btn-red:hover, .btn-gold:hover { transform: translateY(-2px); background: var(--cyan-dark); box-shadow: 0 8px 22px rgba(25, 190, 232, 0.55); color: #ffffff; }

.btn-outline {
  border: 1.5px solid var(--cyan-primary);
  color: var(--cyan-primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--cyan-primary);
  color: #ffffff;
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* Mobile menu toggle */
.menu-toggle {
  display: flex; flex-direction: column; gap: 4px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.menu-toggle span { width: 22px; height: 2px; background: #ffffff; border-radius: 2px; transition: var(--transition); }

.nav-mobile {
  position: fixed; inset: 0;
  background: #ffffff;
  z-index: 200;
  padding: 80px 24px 40px; overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile ul { list-style: none; }
.nav-mobile a {
  display: block; padding: 14px 16px;
  font-size: 1.05rem; font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}
.nav-mobile a:hover { color: var(--cyan-primary); }
.nav-mobile-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-cyan);
  color: var(--cyan-primary); font-size: 1.2rem;
}

/* Page banner — light with cyan accents */
.page-banner {
  position: relative; padding: 60px 0 50px;
  text-align: center;
  background:
    radial-gradient(circle at 30% 50%, rgba(25, 190, 232, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(92, 209, 237, 0.12) 0%, transparent 60%),
    var(--bg-secondary);
  border-bottom: 1px solid var(--border-cyan);
  overflow: hidden;
}
.page-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(25, 190, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 190, 232, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
  font-size: clamp(2rem, 6vw, 3.4rem); margin-bottom: 12px;
  color: var(--cyan-dark);
}
.page-banner p { font-size: clamp(1rem, 2.5vw, 1.15rem); max-width: 640px; margin: 0 auto; color: var(--text-secondary); }
.banner-eyebrow {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cyan-primary); padding: 6px 18px;
  border: 1px solid var(--border-cyan); border-radius: var(--radius-pill);
  margin-bottom: 18px;
  background: rgba(25, 190, 232, 0.08);
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background: var(--bg-primary);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(25, 190, 232, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(92, 209, 237, 0.15) 0%, transparent 50%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; display: grid; gap: 24px; text-align: center; max-width: 880px; margin: 0 auto; }
.hero h1 { font-size: clamp(2.2rem, 7vw, 4rem); line-height: 1.1; letter-spacing: -0.02em; color: var(--text-primary); }
.hero h1 .accent { color: var(--cyan-primary); }
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.18rem); color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.hero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 28px;
  border-top: 1px solid var(--border-light);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); }
.trust-item .icon { width: 24px; height: 24px; display: grid; place-items: center; color: var(--cyan-primary); }

/* Promo row — large cyan pill buttons (like the screenshot's blue bonus pills) */
.promo-row { padding: 30px 0; background: var(--bg-secondary); border-bottom: 1px solid var(--border-light); }
.promo-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.promo-card {
  position: relative; display: flex; flex-direction: column; justify-content: center;
  padding: 20px 22px; min-height: 110px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--gradient-cyan);
  box-shadow: var(--shadow-cyan);
  transition: all var(--transition);
  text-align: center;
}
.promo-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(25, 190, 232, 0.4); }
.promo-tag {
  font-size: 0.7rem; letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase; margin-bottom: 4px; font-weight: 700;
}
.promo-card h3 { font-size: 1.1rem; margin-bottom: 4px; color: #ffffff; font-weight: 700; }
.promo-card p { font-size: 0.82rem; color: rgba(255, 255, 255, 0.92); }

/* Sections */
.section { padding: 70px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--cyan-primary); margin-bottom: 14px; font-weight: 700;
}
.section-head h2 { margin-bottom: 12px; color: var(--text-primary); }
.section-head p { max-width: 620px; margin: 0 auto; color: var(--text-muted); }

.steps-grid { display: grid; gap: 20px; grid-template-columns: 1fr; max-width: 1000px; margin: 0 auto; }
.step-card {
  text-align: center; padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.step-card:hover { border-color: var(--cyan-primary); transform: translateY(-4px); box-shadow: var(--shadow-cyan); }
.step-num {
  display: inline-block; font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  color: var(--cyan-primary);
  line-height: 1;
}
.step-card h3 { margin: 14px 0 8px; color: var(--text-primary); }
.step-card p { font-size: 0.95rem; }
.step-card .step-icon {
  width: 80px; height: 80px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-cyan);
  display: grid; place-items: center;
  color: var(--cyan-primary);
}

/* Game cards */
.games-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.game-card {
  position: relative; padding: 30px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}
.game-card::before {
  content: ""; position: absolute;
  top: -50%; right: -30%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  z-index: 0; transition: var(--transition);
}
.game-card:hover { border-color: var(--cyan-primary); transform: translateY(-6px); box-shadow: var(--shadow-cyan); }
.game-card:hover::before { top: -30%; right: -10%; }
.game-card > * { position: relative; z-index: 1; }
.game-card .game-icon {
  width: 64px; height: 64px; margin-bottom: 18px;
  background: var(--gradient-cyan);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(25, 190, 232, 0.3);
}
.game-card h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--text-primary); }
.game-card p { font-size: 0.95rem; margin-bottom: 22px; }
.game-card .game-providers { font-size: 0.78rem; color: var(--cyan-dark); letter-spacing: 0.04em; margin-bottom: 18px; font-weight: 600; }

/* Why us */
.why-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.why-card {
  padding: 32px 24px; text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}
.why-card:hover { border-color: var(--cyan-primary); transform: translateY(-3px); box-shadow: var(--shadow-cyan); }
.why-icon {
  width: 90px; height: 90px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: grid; place-items: center;
  color: var(--cyan-primary);
  border: 2px solid var(--border-cyan);
}
.why-card h3 { margin-bottom: 10px; color: var(--text-primary); }
.why-card p { font-size: 0.95rem; }

/* Content block */
.content-block { background: var(--bg-secondary); padding: 70px 0; border-top: 1px solid var(--border-light); }
.content-block .container { max-width: 980px; }
.content-block h2 { margin-bottom: 24px; text-align: center; color: var(--cyan-dark); }
.content-block h3 { color: var(--cyan-primary); margin: 36px 0 14px; font-size: 1.4rem; }
.content-block h4 { color: var(--text-primary); margin: 24px 0 10px; font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; }
.content-block p { margin-bottom: 16px; color: var(--text-secondary); line-height: 1.75; }
.content-block ul, .content-block ol { margin: 12px 0 20px 22px; color: var(--text-secondary); }
.content-block li { margin-bottom: 8px; line-height: 1.7; }
.content-block strong { color: var(--cyan-dark); font-weight: 700; }

.author-byline {
  display: flex; align-items: center; gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border-left: 3px solid var(--cyan-primary);
  border-radius: var(--radius-sm);
  margin: 28px 0; font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
}
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-cyan);
  flex-shrink: 0; display: grid; place-items: center;
  color: #ffffff; font-family: var(--font-display);
  font-weight: 700;
}
.author-info { flex: 1; }
.author-name { color: var(--cyan-dark); font-weight: 700; margin-bottom: 2px; }
.author-meta { color: var(--text-faded); font-size: 0.82rem; }
.author-meta a { color: var(--cyan-primary); }

/* FAQ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  margin-bottom: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.faq-item:hover { border-color: var(--border-cyan); }
.faq-item[open] { border-color: var(--cyan-primary); }
.faq-item summary {
  padding: 18px 22px; font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 600; color: var(--text-primary);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; width: 28px; height: 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-cyan);
  border-radius: 50%; display: grid; place-items: center;
  color: var(--cyan-primary); font-size: 1.1rem;
  flex-shrink: 0; transition: var(--transition);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "−"; background: var(--cyan-primary); color: #ffffff; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--text-muted); line-height: 1.75; }

/* CTA strip */
.cta-strip {
  background: var(--gradient-cyan);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.15), transparent 70%);
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 { margin-bottom: 14px; color: #ffffff; }
.cta-strip p { margin-bottom: 28px; color: rgba(255, 255, 255, 0.95); }
.cta-strip .hero-cta { margin-top: 0; }
.cta-strip .btn-cyan, .cta-strip .btn-red, .cta-strip .btn-gold {
  background: #ffffff; color: var(--cyan-primary); box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.cta-strip .btn-cyan:hover, .cta-strip .btn-red:hover, .cta-strip .btn-gold:hover {
  background: #f4faff; color: var(--cyan-dark);
}
.cta-strip .btn-outline { color: #ffffff; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }
.cta-strip .btn-outline:hover { background: #ffffff; color: var(--cyan-primary); }

/* Forms */
.form-card {
  max-width: 520px; margin: 40px auto; padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit; font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--cyan-primary); background: #ffffff;
  box-shadow: 0 0 0 3px rgba(25, 190, 232, 0.15);
}
.form-card .btn { width: 100%; }
.form-help { font-size: 0.85rem; color: var(--text-faded); text-align: center; margin-top: 18px; }

/* Download cards */
.download-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 880px; margin: 0 auto; }
.download-card {
  padding: 36px 28px; text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.download-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-cyan); border-color: var(--cyan-primary); }
.download-icon {
  width: 80px; height: 80px; margin: 0 auto 18px;
  border-radius: var(--radius-md);
  background: var(--gradient-cyan);
  display: grid; place-items: center;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(25, 190, 232, 0.32);
}
.download-card h3 { margin-bottom: 10px; color: var(--text-primary); }
.download-card p { margin-bottom: 22px; font-size: 0.92rem; }

/* Partners */
.partners { background: var(--bg-secondary); padding: 50px 0; border-top: 1px solid var(--border-light); }
.partners h3 { text-align: center; margin-bottom: 28px; color: var(--text-muted); font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 700; }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: center; }
.partner-pill {
  padding: 16px 12px; text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em; transition: var(--transition);
}
.partner-pill:hover { border-color: var(--cyan-primary); color: var(--cyan-dark); transform: translateY(-2px); box-shadow: var(--shadow-soft); }

table.data-table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0;
  background: var(--bg-card);
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border-light);
}
table.data-table th, table.data-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border-light); font-size: 0.92rem; }
table.data-table th { background: var(--bg-secondary); color: var(--cyan-dark); font-weight: 700; }
table.data-table tr:last-child td { border-bottom: none; }

/* Footer */
.site-footer { background: #0d2433; color: #c5d2dc; border-top: 4px solid var(--cyan-primary); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan-light); font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; color: #c5d2dc; }
.footer-col a:hover { color: var(--cyan-light); }
.footer-col p { font-size: 0.9rem; color: #9aa8b4; }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand { color: #ffffff; }
.footer-brand .brand-mark { background: var(--cyan-primary); color: #ffffff; }

.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%; color: var(--cyan-light);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--cyan-primary); color: #ffffff; transform: translateY(-2px); border-color: var(--cyan-primary); }

.cert-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 16px; }
.cert-pill { padding: 8px 14px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-sm); font-size: 0.78rem; color: #c5d2dc; background: rgba(255, 255, 255, 0.03); }

.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.08); text-align: center; font-size: 0.82rem; color: #8a96a3; line-height: 1.7; }
.footer-bottom .age-warning {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 122, 0, 0.15);
  border: 1px solid rgba(255, 122, 0, 0.4);
  border-radius: var(--radius-pill);
  color: var(--accent-orange); font-weight: 700; margin-bottom: 14px;
}

.breadcrumb { padding: 18px 0; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb li::after { content: "/"; margin-left: 6px; color: var(--text-faded); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--cyan-primary); }

.text-cyan { color: var(--cyan-primary) !important; }
.text-center { text-align: center; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border-cyan), transparent); margin: 40px 0; }

@media (min-width: 640px) {
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) {
  .container { padding: 0 32px; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-grid { grid-template-columns: repeat(4, 1fr); }
  .partners-grid { grid-template-columns: repeat(6, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .section { padding: 90px 0; }
  .page-banner { padding: 80px 0 70px; }
}
@media (min-width: 1024px) {
  .nav-desktop { display: block; }
  .menu-toggle { display: none; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
@media print {
  .site-header, .site-footer, .nav-mobile, .menu-toggle, .promo-row, .cta-strip { display: none; }
  body { background: white; color: black; }
}
