/* === VELORIA – css/style.css === */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ==============================
   CSS VARIABLES
============================== */
:root {
  --bg-primary:    #080F1E;
  --bg-secondary:  #0D1A30;
  --bg-card:       #112240;
  --bg-card-hover: #162B4A;
  --primary:       #E84040;
  --accent-red:    #E84040;
  --accent-red-hover: #FF5252;
  --accent-teal:   #00C9A7;
  --accent-amber:  #F5A623;
  --text-primary:  #E8F0FE;
  --text-secondary:#8899B4;
  --text-muted:    #546078;
  --border:        rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.14);
  --shadow-card:   0 4px 32px rgba(0,0,0,0.45);
  --shadow-glow:   0 0 40px rgba(232,64,64,0.15);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --font-heading:  'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;
  --nav-height:    72px;
  --transition:    0.25s ease;
}

/* ==============================
   RESET & BASE
============================== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ==============================
   TYPOGRAPHY
============================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); }

.text-accent  { color: var(--accent-red); }
.text-teal    { color: var(--accent-teal); }
.text-amber   { color: var(--accent-amber); }
.text-white   { color: var(--text-primary); }
.text-center  { text-align: center; }

/* ==============================
   LAYOUT
============================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

section { padding: 96px 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 56px;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto 0; }

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent-red);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,64,64,0.35);
}
.btn--outline {
  border: 1.5px solid var(--border-bright);
  color: var(--text-primary);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  transform: translateY(-2px);
}
.btn--teal {
  background: var(--accent-teal);
  color: #080F1E;
}
.btn--teal:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,201,167,0.3);
}
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--sm { padding: 9px 20px; font-size: 0.88rem; }

/* ==============================
   AGE GATE MODAL
============================== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4,8,18,0.97);
  backdrop-filter: blur(12px);
}
.age-gate.hidden { display: none; }
.age-gate__box {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 480px;
  width: calc(100% - 32px);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.age-gate__logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}
.age-gate__logo span { color: var(--accent-red); }
.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--accent-red);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--accent-red);
  margin: 0 auto 24px;
}
.age-gate h2 { font-size: 1.5rem; margin-bottom: 12px; }
.age-gate p  { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 32px; }
.age-gate__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin-bottom: 28px;
  cursor: pointer;
}
.age-gate__checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--accent-red);
  margin-top: 2px;
  cursor: pointer;
}
.age-gate__checkbox span { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.age-gate__btn {
  width: 100%;
  padding: 15px;
  background: var(--accent-red);
  color: #fff;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
  opacity: 0.4;
  pointer-events: none;
}
.age-gate__btn.active {
  opacity: 1;
  pointer-events: all;
}
.age-gate__btn.active:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,64,64,0.35);
}
.age-gate__note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==============================
   COOKIE BANNER
============================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  width: calc(100% - 48px);
  max-width: 820px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  animation: slideUp 0.4s ease forwards;
}
.cookie-banner.hidden { display: none; }
.cookie-banner__text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.cookie-banner__text a { color: var(--accent-teal); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ==============================
   NAVIGATION
============================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.35s ease;
}
.nav.scrolled {
  background: rgba(8,15,30,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}
.nav__logo span { color: var(--accent-red); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.nav__cta {
  background: var(--accent-red);
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
}
.nav__cta:hover {
  background: var(--accent-red-hover) !important;
  color: #fff !important;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(8,15,30,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__mobile a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.nav__mobile a.active { color: var(--text-primary); }
.nav__mobile .nav__cta {
  margin-top: 8px;
  text-align: center;
  background: var(--accent-red) !important;
  color: #fff !important;
}

/* ==============================
   HERO – HOME
============================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(232,64,64,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0,201,167,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #080F1E 0%, #0A1220 100%);
  z-index: 0;
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-teal);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-teal);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.hero h1 {
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.hero h1 .highlight {
  color: var(--accent-red);
  position: relative;
}
.hero__sub {
  font-size: 1.12rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==============================
   FEATURED GAMES
============================== */
.games { background: var(--bg-secondary); }
.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.game-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.game-card__thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.game-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .game-card__thumb img { transform: scale(1.06); }
.game-card__thumb--emoji {
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-card__emoji {
  font-size: 5rem;
  line-height: 1;
  transition: transform 0.35s ease;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
  pointer-events: none;
}
.game-card:hover .game-card__emoji { transform: scale(1.15); }
.game-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(8,15,30,0.85);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-teal);
}
.game-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,15,30,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.game-card:hover .game-card__play { opacity: 1; }
.game-card__play-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.game-card:hover .game-card__play-icon { transform: scale(1); }
.game-card__body { padding: 20px; }
.game-card__provider {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.game-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.game-card__desc { font-size: 0.88rem; margin-bottom: 16px; }
.game-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.game-card__coins {
  font-size: 0.82rem;
  color: var(--accent-amber);
  font-weight: 600;
}

/* ==============================
   WHY US – FEATURE GRID
============================== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.feature-card__icon--red  { background: rgba(232,64,64,0.12); }
.feature-card__icon--teal { background: rgba(0,201,167,0.12); }
.feature-card__icon--amber{ background: rgba(245,166,35,0.12); }
.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.feature-card p { font-size: 0.9rem; }

/* ==============================
   CTA BAND
============================== */
.cta-band {
  background: linear-gradient(135deg, #112240 0%, #0D1A30 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(232,64,64,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p  { max-width: 500px; margin: 0 auto 36px; }
.cta-band__notice {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==============================
   FOOTER
============================== */
.footer {
  background: #060C18;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer__brand .footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  display: block;
}
.footer__brand .footer__logo span { color: var(--accent-red); }
.footer__brand p { font-size: 0.88rem; max-width: 280px; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}
.footer__col h5 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--text-primary); }
.footer__notice {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 32px 0;
  border: 1px solid var(--border);
}
.footer__notice h6 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-amber);
  margin-bottom: 8px;
}
.footer__notice p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom-left { font-size: 0.82rem; color: var(--text-muted); }
.footer__orgs {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__orgs a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
  font-weight: 500;
}
.footer__orgs a:hover { color: var(--text-secondary); }
.footer__18 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--accent-red);
  flex-shrink: 0;
}

/* ==============================
   BREADCRUMB
============================== */
.breadcrumb {
  padding: calc(var(--nav-height) + 24px) 0 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb__list a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb__list a:hover { color: var(--text-primary); }
.breadcrumb__list span { color: var(--text-secondary); }
.breadcrumb__sep { color: var(--text-muted); font-size: 0.75rem; }

/* ==============================
   GAME WINDOW
============================== */
.game-section { padding: 48px 0; }
.game-window {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.game-window__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.game-window__dots { display: flex; gap: 8px; }
.game-window__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.game-window__dot--red  { background: #E84040; }
.game-window__dot--amber{ background: #F5A623; }
.game-window__dot--green{ background: #00C9A7; }
.game-window__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.game-window__badge {
  margin-left: auto;
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.25);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-teal);
  letter-spacing: 0.05em;
}
.game-content {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: #000;
}
.game-content iframe {
  border: none;
  width: 100%;
  height: calc(100% + 40px);
  position: absolute;
  top: 0;
  left: 0;
}
.game-window__footer {
  padding: 14px 24px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* ==============================
   PAGE HEROES
============================== */
.page-hero {
  padding: calc(var(--nav-height) + 64px) 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(232,64,64,0.09) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
.page-hero__content { position: relative; z-index: 1; max-width: 720px; }
.page-hero.centered .page-hero__content { max-width: 100%; text-align: center; }
.page-hero.centered .page-hero__content p { max-width: 600px; margin: 0 auto; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { font-size: 1.08rem; color: var(--text-secondary); }

/* ==============================
   STEPS
============================== */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  position: relative;
}
.steps__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--border-bright); }
.step-card__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-red);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-card h4 { font-size: 1rem; margin-bottom: 10px; color: var(--text-primary); }
.step-card p  { font-size: 0.88rem; }

/* ==============================
   FAQ ACCORDION
============================== */
.faq__list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-bright); }
.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--accent-teal); }
.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  background: rgba(0,201,167,0.08);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-item__answer { max-height: 400px; }
.faq-item__answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item__answer-inner a { color: var(--accent-teal); text-decoration: underline; }

/* ==============================
   STATS BAR
============================== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-bar__item-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-bar__item-label { font-size: 0.85rem; color: var(--text-muted); }

/* ==============================
   TEAM CARDS
============================== */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}
.team-card:hover { transform: translateY(-4px); border-color: var(--border-bright); }
.team-card__photo {
  height: 180px;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.team-card:hover .team-card__photo img { transform: scale(1.05); }
.team-card__body { padding: 20px 16px; }
.team-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.team-card__role { font-size: 0.82rem; color: var(--accent-teal); font-weight: 500; }

/* ==============================
   VALUES
============================== */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--border-bright); }
.value-card__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(232,64,64,0.18);
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.value-card p { font-size: 0.88rem; }

/* ==============================
   COMMUNITY FEATURES
============================== */
.comm-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.comm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.3s ease;
}
.comm-card:hover { border-color: var(--border-bright); transform: translateY(-4px); }
.comm-card__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: var(--radius-md);
  background: rgba(232,64,64,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.comm-card__icon--teal  { background: rgba(0,201,167,0.1); }
.comm-card__icon--amber { background: rgba(245,166,35,0.1); }
.comm-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.comm-card p  { font-size: 0.9rem; }

/* ==============================
   HELP CENTER / CONTACT
============================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-card:hover { border-color: var(--border-bright); transform: translateY(-4px); }
.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0,201,167,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.contact-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.contact-card p  { font-size: 0.88rem; margin-bottom: 12px; }
.contact-card a.contact-link {
  color: var(--accent-teal);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
}

/* ==============================
   POLICY PAGES
============================== */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 0;
}
.policy-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 12px;
  color: var(--text-primary);
}
.policy-content h3 {
  font-size: 1.05rem;
  margin: 28px 0 10px;
  color: var(--text-primary);
}
.policy-content p  { margin-bottom: 16px; font-size: 0.95rem; }
.policy-content ul { margin: 0 0 16px 20px; list-style: disc; }
.policy-content ul li { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 6px; }
.policy-content a  { color: var(--accent-teal); text-decoration: underline; }
.policy-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* ==============================
   RESPONSIBLE GAMING
============================== */
.rg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.rg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}
.rg-card:hover { border-color: var(--border-bright); }
.rg-card__icon { font-size: 2rem; margin-bottom: 16px; }
.rg-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.rg-card p  { font-size: 0.88rem; }
.rg-warning {
  background: rgba(232,64,64,0.07);
  border: 1px solid rgba(232,64,64,0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 40px 0;
}
.rg-warning h3 { color: var(--accent-red); margin-bottom: 12px; }
.rg-warning p  { font-size: 0.92rem; }
.rg-orgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.rg-org {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.rg-org:hover { border-color: var(--accent-teal); }
.rg-org a {
  color: var(--accent-teal);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
}
.rg-org p { font-size: 0.82rem; margin-top: 6px; }

/* ==============================
   GUIDELINES
============================== */
.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.guideline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: all 0.3s ease;
}
.guideline-card:hover { border-color: var(--border-bright); }
.guideline-card--do  { border-left: 3px solid var(--accent-teal); }
.guideline-card--dont{ border-left: 3px solid var(--accent-red); }
.guideline-card h4   { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.guideline-card ul   { margin-left: 16px; list-style: disc; }
.guideline-card ul li{ font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 6px; }

/* ==============================
   NOTICE BOX
============================== */
.notice-box {
  background: rgba(245,166,35,0.06);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 32px 0;
}
.notice-box strong { color: var(--accent-amber); }

/* ==============================
   SCROLL REVEAL
============================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   COMPLIANCE STRIP
============================== */
.compliance-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin: 0;
}
.compliance-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.compliance-18 {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  border: 2.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.78rem;
  color: var(--primary);
  flex-shrink: 0;
}
.compliance-strip__text {
  flex: 1;
  min-width: 220px;
  max-width: 520px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  text-align: center;
}
.compliance-strip__strong {
  color: var(--primary);
  font-weight: 700;
}
.compliance-strip__logos {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.compliance-org {
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  flex-shrink: 0;
}
.compliance-org:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.compliance-org img {
  height: 36px;
  width: auto;
  display: block;
}

/* ==============================
   COMPACT FOOTER (game pages)
============================== */
.footer--compact {
  padding: 32px 0;
}
.footer--compact .footer__bottom {
  border-top: none;
  padding: 0;
}

/* ==============================
   MISC HELPERS
============================== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}
.pill {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}
.pill--teal  { background: rgba(0,201,167,0.1); color: var(--accent-teal); }
.pill--red   { background: rgba(232,64,64,0.1); color: var(--accent-red); }
.pill--amber { background: rgba(245,166,35,0.1); color: var(--accent-amber); }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .footer__main { grid-template-columns: 1fr 1fr; }
  .games__grid  { grid-template-columns: repeat(2, 1fr); }
  .steps__grid  { grid-template-columns: repeat(2, 1fr); }
  .steps__grid::before { display: none; }
  .team__grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .rg-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .rg-orgs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__stats { gap: 28px; }
  .features__grid  { grid-template-columns: 1fr; }
  .games__grid     { grid-template-columns: 1fr; }
  .steps__grid     { grid-template-columns: 1fr; }
  .team__grid      { grid-template-columns: repeat(2, 1fr); }
  .values__grid    { grid-template-columns: 1fr; }
  .comm-features__grid { grid-template-columns: 1fr; }
  .comm-card       { flex-direction: column; }
  .footer__main    { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom  { flex-direction: column; text-align: center; }
  .footer__orgs    { justify-content: center; }
  .contact-grid    { grid-template-columns: 1fr; }
  .guidelines-grid { grid-template-columns: 1fr; }
  .rg-cards        { grid-template-columns: 1fr; }
  .rg-orgs         { grid-template-columns: 1fr; }
  .cookie-banner   { flex-direction: column; bottom: 12px; width: calc(100% - 24px); }
  .hero__actions   { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .age-gate__box   { padding: 36px 24px; }
  .game-content    { aspect-ratio: 4/3; }
  .game-content iframe { height: calc(100% + 30px); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .hero__stats     { gap: 20px; }
  .team__grid      { grid-template-columns: 1fr; }
}
