/* =========================================
   PlayInstantGamesHub — Main Stylesheet
   ========================================= */

:root {
  --clr-bg:          #080b18;
  --clr-bg-2:        #0f1220;
  --clr-bg-card:     #131729;
  --clr-bg-card-2:   #1a1e35;
  --clr-border:      #252843;
  --clr-border-2:    #313557;

  --clr-gold:        #f0b429;
  --clr-gold-light:  #ffd166;
  --clr-gold-dark:   #c4911c;
  --clr-orange:      #e8611a;
  --clr-orange-2:    #ff7f3e;
  --clr-red:         #e03b3b;
  --clr-green:       #27c47a;
  --clr-blue:        #3a86ff;

  --clr-text:        #dde1f0;
  --clr-text-muted:  #7a82a8;
  --clr-text-light:  #b0b8d8;
  --clr-heading:     #ffffff;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.35);
  --shadow-md:   0 4px 20px rgba(0,0,0,.5);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.65);
  --shadow-gold: 0 0 24px rgba(240,180,41,.22);

  --transition: 0.25s ease;
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-light); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- Utilities ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section-title { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--clr-heading); letter-spacing: .5px; margin-bottom: 12px; }
.section-sub { color: var(--clr-text-muted); font-size: 16px; max-width: 560px; }
.section-header { margin-bottom: 48px; }
.text-gold { color: var(--clr-gold); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 12px 28px; border-radius: var(--radius-full);
  border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-orange) 100%);
  color: #0a0c14; border-color: transparent;
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-orange-2) 100%);
  color: #0a0c14; transform: translateY(-2px); box-shadow: var(--shadow-gold);
}
.btn--secondary {
  background: transparent; color: var(--clr-gold); border-color: var(--clr-gold);
}
.btn--secondary:hover { background: var(--clr-gold); color: #0a0c14; transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.07); color: var(--clr-text-light); border-color: var(--clr-border-2); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: var(--clr-heading); border-color: var(--clr-text-muted); }
.btn--lg { padding: 16px 40px; font-size: 16px; }
.btn--sm { padding: 8px 18px; font-size: 14px; }
.btn--block { width: 100%; }

/* ---- Age Gate ---- */
.age-gate-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.92); z-index: 9998;
}
.age-gate {
  display: none; position: fixed; inset: 0; z-index: 9999;
  overflow-y: auto; padding: 40px 24px;
}
.age-gate__box {
  background: var(--clr-bg-card); border: 1px solid var(--clr-border-2);
  border-radius: var(--radius-lg); padding: 48px 40px;
  max-width: 520px; margin: 0 auto; text-align: center;
  box-shadow: var(--shadow-lg);
}
.age-gate.is-open, .age-gate-overlay.is-open { display: flex; align-items: flex-start; }
.age-gate__logo { margin-bottom: 24px; }
.age-gate__logo a { display: inline-flex; align-items: center; gap: 10px; }
.age-gate h2 { font-family: var(--font-heading); font-size: 28px; color: var(--clr-heading); margin-bottom: 16px; }
.age-gate p { color: var(--clr-text-light); margin-bottom: 12px; line-height: 1.65; }
.age-gate__sub { font-size: 14px; color: var(--clr-text-muted); }
.age-gate__actions { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 16px; }
.age-gate__disclaimer { font-size: 12px; color: var(--clr-text-muted); letter-spacing: .3px; }

/* ---- Logo ---- */
.site-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); text-decoration: none; color: var(--clr-heading);
}
.logo-icon { font-size: 28px; color: var(--clr-gold); line-height: 1; }
.logo-text { font-size: 22px; font-weight: 700; letter-spacing: .5px; color: var(--clr-heading); }
.site-logo:hover .logo-text { color: var(--clr-gold); }
.site-logo--footer .logo-text { font-size: 20px; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,11,24,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
}
.header-inner { display: flex; align-items: center; gap: 32px; height: 72px; }
.main-nav { flex: 1; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--clr-text-light); font-size: 15px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm); transition: all var(--transition);
  text-decoration: none;
}
.main-nav a:hover, .main-nav a.active { color: var(--clr-gold); background: rgba(240,180,41,.08); }
.main-nav li a[class="active"] { color: var(--clr-gold); }
.header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.age-badge {
  background: var(--clr-red); color: #fff; font-size: 13px; font-weight: 700;
  padding: 3px 9px; border-radius: var(--radius-full); letter-spacing: .5px;
}
.header-disclaimer {
  background: rgba(240,180,41,.06); border-top: 1px solid rgba(240,180,41,.12);
  font-size: 12px; color: var(--clr-gold); text-align: center; padding: 6px 0;
  letter-spacing: .3px;
}

/* Nav toggle */
.nav-toggle { display: none; background: none; border: none; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #080b18 0%, #0e1128 40%, #13102a 100%);
  padding: 100px 0 90px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(240,180,41,.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 50% at 20% 80%, rgba(232,97,26,.06) 0%, transparent 60%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,180,41,.1); border: 1px solid rgba(240,180,41,.25);
  color: var(--clr-gold); font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: var(--radius-full);
  margin-bottom: 20px; letter-spacing: .3px;
}
.hero h1 { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 58px); font-weight: 700; color: var(--clr-heading); line-height: 1.1; margin-bottom: 20px; letter-spacing: .5px; }
.hero h1 span { color: var(--clr-gold); }
.hero-sub { font-size: 17px; color: var(--clr-text-light); line-height: 1.65; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-feature {
  display: flex; align-items: center; gap: 8px;
  color: var(--clr-text-muted); font-size: 14px;
}
.hero-feature-icon { color: var(--clr-green); font-size: 16px; }
.hero-visual { position: relative; }
.hero-card-stack { position: relative; }
.hero-slot-display {
  background: linear-gradient(145deg, var(--clr-bg-card) 0%, var(--clr-bg-card-2) 100%);
  border: 1px solid var(--clr-border-2); border-radius: var(--radius-lg);
  padding: 32px; text-align: center; box-shadow: var(--shadow-lg);
}
.hero-slot-reels { display: flex; gap: 12px; justify-content: center; margin-bottom: 24px; }
.hero-slot-reel {
  width: 80px; height: 100px; border-radius: var(--radius-md);
  background: var(--clr-bg-2); border: 2px solid var(--clr-border-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; box-shadow: inset 0 2px 8px rgba(0,0,0,.4);
  animation: reel-spin 3s ease-in-out infinite;
}
.hero-slot-reel:nth-child(2) { animation-delay: .15s; }
.hero-slot-reel:nth-child(3) { animation-delay: .3s; }
@keyframes reel-spin {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
}
.hero-slot-label { color: var(--clr-text-muted); font-size: 13px; margin-bottom: 20px; }
.hero-slot-tag { display: inline-block; background: rgba(39,196,122,.12); border: 1px solid rgba(39,196,122,.3); color: var(--clr-green); font-size: 13px; font-weight: 600; padding: 6px 18px; border-radius: var(--radius-full); }

/* ---- Compliance Banner ---- */
.compliance-banner {
  background: linear-gradient(90deg, rgba(240,180,41,.06) 0%, rgba(232,97,26,.04) 100%);
  border: 1px solid rgba(240,180,41,.15);
  border-radius: var(--radius-md); padding: 20px 32px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 24px;
}
.compliance-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--clr-text-light); }
.compliance-icon { font-size: 20px; }

/* ---- Section Divider ---- */
.section-divider { border: none; border-top: 1px solid var(--clr-border); margin: 0; }

/* ---- Featured Games ---- */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.game-card {
  background: var(--clr-bg-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); position: relative;
}
.game-card:hover { border-color: var(--clr-gold-dark); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.game-card__thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.game-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.game-card:hover .game-card__thumb img { transform: scale(1.06); }
.game-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,11,24,.85) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity var(--transition);
}
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card__tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.game-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .4px;
  padding: 3px 10px; border-radius: var(--radius-full); text-transform: uppercase;
}
.game-tag--featured { background: var(--clr-gold); color: #0a0c14; }
.game-tag--new { background: var(--clr-green); color: #fff; }
.game-tag--popular { background: var(--clr-orange); color: #fff; }
.game-tag--hot { background: var(--clr-red); color: #fff; }
.game-tag--hold { background: var(--clr-blue); color: #fff; }
.game-tag--hold-win { background: var(--clr-blue); color: #fff; }
.game-card__body { padding: 20px; }
.game-card__title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--clr-heading); margin-bottom: 6px; }
.game-card__provider { font-size: 12px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.game-card__desc { font-size: 14px; color: var(--clr-text-muted); line-height: 1.55; margin-bottom: 18px; }
.game-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.game-card__rtp { font-size: 13px; color: var(--clr-text-muted); }
.game-card__rtp span { color: var(--clr-green); font-weight: 600; }
.game-card__age { font-size: 12px; color: var(--clr-text-muted); }

/* ---- How It Works ---- */
.how-it-works { background: var(--clr-bg-2); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.step-card { text-align: center; padding: 32px 20px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-orange) 100%);
  color: #0a0c14; font-family: var(--font-heading); font-size: 24px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
}
.step-card h3 { font-family: var(--font-heading); font-size: 20px; color: var(--clr-heading); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.6; }

/* ---- Disclaimer Box ---- */
.disclaimer-section { background: var(--clr-bg-card); }
.disclaimer-box {
  border: 1px solid rgba(240,180,41,.2); border-radius: var(--radius-lg);
  padding: 40px; background: rgba(240,180,41,.03);
}
.disclaimer-box h2 { font-family: var(--font-heading); font-size: 24px; color: var(--clr-gold); margin-bottom: 16px; }
.disclaimer-box p { color: var(--clr-text-light); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.disclaimer-box p:last-child { margin-bottom: 0; }

/* ---- Responsible Play Banner ---- */
.resp-play-banner {
  background: linear-gradient(135deg, #0e1225 0%, #131a2e 100%);
  border: 1px solid var(--clr-border-2); border-radius: var(--radius-lg);
  padding: 40px 48px; display: flex; align-items: center; gap: 40px;
}
.resp-play-banner__icon { font-size: 56px; flex-shrink: 0; }
.resp-play-banner h3 { font-family: var(--font-heading); font-size: 24px; color: var(--clr-heading); margin-bottom: 8px; }
.resp-play-banner p { font-size: 15px; color: var(--clr-text-light); margin-bottom: 16px; }
.resp-helpline { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--clr-gold); text-decoration: none; display: block; margin-bottom: 4px; }
.resp-helpline:hover { color: var(--clr-gold-light); }

/* ---- Game Player Page ---- */
.game-hero { background: var(--clr-bg-2); padding: 32px 0 0; border-bottom: 1px solid var(--clr-border); }
.game-hero-inner { display: flex; align-items: flex-start; gap: 24px; padding-bottom: 32px; }
.game-hero__info { flex: 1; }
.game-hero__back { color: var(--clr-text-muted); font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.game-hero__back:hover { color: var(--clr-gold); }
.game-hero__title { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--clr-heading); margin-bottom: 6px; }
.game-hero__provider { font-size: 13px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.game-hero__desc { color: var(--clr-text-light); font-size: 15px; line-height: 1.65; }

.game-player-wrap { background: var(--clr-bg); padding: 32px 0; }
.game-iframe-container {
  position: relative; width: 100%; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--clr-border-2); box-shadow: var(--shadow-lg);
  background: #000; padding-top: 56.25%;
}
.game-iframe-container iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.game-disclaimer {
  margin-top: 16px; padding: 16px 20px;
  background: rgba(240,180,41,.05); border: 1px solid rgba(240,180,41,.1);
  border-radius: var(--radius-md); font-size: 13px; color: var(--clr-text-muted); line-height: 1.55;
}

/* ---- Games Page ---- */
.games-page-hero { background: var(--clr-bg-2); padding: 56px 0; border-bottom: 1px solid var(--clr-border); }

/* ---- Static Page Content ---- */
.page-hero { background: var(--clr-bg-2); padding: 60px 0; border-bottom: 1px solid var(--clr-border); }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 48px); color: var(--clr-heading); margin-bottom: 12px; }
.page-hero p { color: var(--clr-text-muted); font-size: 16px; }
.page-content { padding: 64px 0; }
.prose { max-width: 820px; }
.prose h2 { font-family: var(--font-heading); font-size: 26px; color: var(--clr-heading); margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--clr-border); }
.prose h3 { font-size: 18px; color: var(--clr-text); margin: 24px 0 10px; font-weight: 600; }
.prose p { color: var(--clr-text-light); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 16px; }
.prose li { color: var(--clr-text-light); font-size: 15px; line-height: 1.7; margin-bottom: 8px; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--clr-gold); }
.prose strong { color: var(--clr-text); font-weight: 600; }
.prose .highlight-box { background: var(--clr-bg-card-2); border-left: 3px solid var(--clr-gold); padding: 20px 24px; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin: 24px 0; }
.prose .highlight-box p { margin: 0; }
.prose .effective-date { font-size: 14px; color: var(--clr-text-muted); margin-bottom: 32px; }

/* ---- FAQ ---- */
.faq-list { max-width: 820px; }
.faq-item { border: 1px solid var(--clr-border); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  width: 100%; padding: 18px 24px; background: var(--clr-bg-card); border: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--clr-heading);
  cursor: pointer; text-align: left; transition: background var(--transition);
}
.faq-question:hover { background: var(--clr-bg-card-2); }
.faq-question.is-open { background: var(--clr-bg-card-2); color: var(--clr-gold); }
.faq-arrow { flex-shrink: 0; font-size: 18px; color: var(--clr-text-muted); transition: transform var(--transition); }
.faq-question.is-open .faq-arrow { transform: rotate(180deg); color: var(--clr-gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--clr-text-light); font-size: 15px; line-height: 1.7; }

/* ---- Contact Form ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; }
.contact-info h3 { font-family: var(--font-heading); font-size: 24px; color: var(--clr-heading); margin-bottom: 16px; }
.contact-info p { color: var(--clr-text-light); font-size: 15px; margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-item-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-item-body strong { display: block; color: var(--clr-heading); margin-bottom: 2px; font-size: 14px; }
.contact-item-body a, .contact-item-body span { color: var(--clr-text-muted); font-size: 14px; }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--clr-text-light); margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 12px 16px;
  background: var(--clr-bg-card); border: 1px solid var(--clr-border-2);
  border-radius: var(--radius-md); color: var(--clr-text); font-family: var(--font-body); font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-control:focus { border-color: var(--clr-gold); box-shadow: 0 0 0 3px rgba(240,180,41,.15); }
.form-control::placeholder { color: var(--clr-text-muted); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-note { font-size: 12px; color: var(--clr-text-muted); margin-top: 6px; }

/* ---- Footer ---- */
.site-footer { background: var(--clr-bg-2); border-top: 1px solid var(--clr-border); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand > p { font-size: 14px; color: var(--clr-text-muted); margin-bottom: 12px; }
.footer-disclaimer { font-size: 13px; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 16px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge-item {
  font-size: 12px; font-weight: 700; letter-spacing: .4px;
  padding: 4px 12px; border-radius: var(--radius-full);
  border: 1px solid var(--clr-border-2); color: var(--clr-text-muted);
  text-transform: uppercase;
}
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--clr-text); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--clr-text-muted); font-size: 14px; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--clr-gold); }
.footer-col > p { font-size: 14px; color: var(--clr-text-muted); margin-bottom: 10px; line-height: 1.6; }
.helpline-link { display: inline-block; font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--clr-gold); margin: 8px 0 12px; }
.helpline-link:hover { color: var(--clr-gold-light); }
.footer-links-ext { font-size: 13px; }
.footer-links-ext a { color: var(--clr-text-muted); }
.footer-links-ext a:hover { color: var(--clr-gold); }

.footer-bottom { padding: 24px 0; border-top: 1px solid var(--clr-border); }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom p { font-size: 13px; color: var(--clr-text-muted); line-height: 1.6; }
.footer-bottom a { color: var(--clr-text-muted); }
.footer-bottom a:hover { color: var(--clr-gold); }
.footer-legal-note { font-size: 12px; color: #525878; line-height: 1.7; }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--clr-bg-card-2); border-top: 1px solid var(--clr-border-2);
  padding: 16px 0; box-shadow: 0 -4px 24px rgba(0,0,0,.5);
  transform: translateY(100%); transition: transform .4s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-banner p { font-size: 14px; color: var(--clr-text-light); flex: 1; }
.cookie-banner a { color: var(--clr-gold); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ---- About Page ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.value-card { background: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 28px; }
.value-card__icon { font-size: 32px; margin-bottom: 14px; }
.value-card h3 { font-family: var(--font-heading); font-size: 20px; color: var(--clr-heading); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.65; }

/* ---- Responsible Gaming Page ---- */
.rg-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.rg-card { background: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 28px; }
.rg-card__icon { font-size: 36px; margin-bottom: 14px; }
.rg-card h3 { font-family: var(--font-heading); font-size: 19px; color: var(--clr-heading); margin-bottom: 8px; }
.rg-card p { font-size: 14px; color: var(--clr-text-muted); line-height: 1.65; }
.resources-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 32px; }
.resource-card { background: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 24px; }
.resource-card h4 { font-size: 16px; font-weight: 700; color: var(--clr-heading); margin-bottom: 6px; }
.resource-card p { font-size: 14px; color: var(--clr-text-muted); margin-bottom: 12px; }
.resource-card a { font-size: 14px; font-weight: 600; }

/* ---- Alerts / Notices ---- */
.notice {
  padding: 16px 20px; border-radius: var(--radius-md); font-size: 14px; margin-bottom: 24px;
}
.notice--warning { background: rgba(240,180,41,.08); border: 1px solid rgba(240,180,41,.2); color: var(--clr-gold); }
.notice--info { background: rgba(58,134,255,.08); border: 1px solid rgba(58,134,255,.2); color: #7ab4ff; }
.notice--success { background: rgba(39,196,122,.08); border: 1px solid rgba(39,196,122,.2); color: var(--clr-green); }

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--clr-text-muted); margin-bottom: 12px; flex-wrap: wrap; }
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb-sep { color: var(--clr-border-2); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-inner { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--clr-bg-card); border-bottom: 1px solid var(--clr-border);
    padding: 16px 0;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: 12px 24px; border-radius: 0; }
  .site-header { position: relative; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .resp-play-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .games-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .age-gate__box { padding: 32px 24px; }
  .header-inner { height: 64px; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-bottom-inner { gap: 12px; }
  .game-hero-inner { flex-direction: column; }
  .compliance-banner { flex-direction: column; gap: 16px; align-items: flex-start; }
}
