@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-0: #060606;
  --bg-1: #0E0E0E;
  --bg-2: #161616;
  --bg-3: #1E1E1E;
  --bg-4: #272727;
  --gold-400: #C8A84B;
  --gold-300: #DDB95A;
  --gold-200: #EFD080;
  --gold-500: #9B7D32;
  --gold-600: #6A5420;
  --silver-300: #C8C0B0;
  --silver-400: #9A9080;
  --silver-500: #6A6258;
  --text-100: #F0EAD6;
  --text-200: #CEC6B2;
  --text-300: #9A9080;
  --text-400: #5C5650;
  --success-400: #3A9A6A;
  --success-300: #50C882;
  --warning-400: #C8881A;
  --error-400: #C03838;
  --border: rgba(200, 168, 75, 0.18);
  --border-hover: rgba(200, 168, 75, 0.45);
  --shadow-gold: 0 0 30px rgba(200, 168, 75, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-0);
  color: var(--text-100);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; font-weight: 600; }
a { color: var(--gold-400); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-300); }
img { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--gold-600); border-radius: 3px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(6,6,6,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: background 0.3s;
}
.navbar.scrolled { background: rgba(6,6,6,0.98); }
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700;
  color: var(--text-100); letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--gold-400); }
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  color: var(--text-200); font-size: 0.875rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s; letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-100); background: rgba(200,168,75,0.1); }
.nav-links a.active { color: var(--gold-400); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500)) !important;
  color: var(--bg-0) !important; padding: 9px 22px !important;
  border-radius: var(--radius-sm) !important; font-weight: 600 !important;
  font-size: 0.875rem !important; letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 8px; min-width: 180px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6); z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a { display: block; padding: 10px 14px !important; border-radius: var(--radius-sm); color: var(--text-200) !important; font-size: 0.875rem; }
.nav-dropdown-menu a:hover { color: var(--gold-400) !important; background: rgba(200,168,75,0.08); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-100); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ── LAYOUT ── */
.page-content { padding-top: 72px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 16px; }
.section-title { font-size: clamp(2rem,4vw,3rem); color: var(--text-100); margin-bottom: 20px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-300); max-width: 600px; line-height: 1.7; }
.gold-divider { width: 60px; height: 2px; background: linear-gradient(90deg,var(--gold-400),transparent); margin: 24px 0; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-sm); font-family: 'Inter',sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.03em; border: none; cursor: pointer; transition: all 0.25s; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg,var(--gold-400),var(--gold-500)); color: var(--bg-0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,0.3); color: var(--bg-0); opacity: 0.95; }
.btn-outline { background: transparent; color: var(--gold-400); border: 1px solid var(--border-hover); }
.btn-outline:hover { background: rgba(200,168,75,0.08); transform: translateY(-1px); color: var(--gold-400); }
.btn-ghost { background: var(--bg-3); color: var(--text-200); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-4); color: var(--text-100); }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ── CARDS ── */
.card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; }
.card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-gold); transform: translateY(-4px); }

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--bg-0); }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,168,75,0.07) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 20% 80%, rgba(200,168,75,0.04) 0%, transparent 50%); }
.hero-grid { position: absolute; inset: 0; z-index: 0; opacity: 0.04; background-image: linear-gradient(rgba(200,168,75,0.8) 1px,transparent 1px), linear-gradient(90deg,rgba(200,168,75,0.8) 1px,transparent 1px); background-size: 60px 60px; }
.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; padding-top: 72px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,168,75,0.08); border: 1px solid rgba(200,168,75,0.25); border-radius: 20px; padding: 6px 16px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 32px; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--success-400); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.hero-title { font-size: clamp(2.5rem,6vw,5rem); font-weight: 700; line-height: 1.08; color: var(--text-100); margin-bottom: 28px; }
.hero-title .highlight { background: linear-gradient(135deg,var(--gold-400),var(--gold-300)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: clamp(1rem,2vw,1.2rem); color: var(--text-300); max-width: 580px; line-height: 1.75; margin-bottom: 48px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat-number { font-family: 'Playfair Display',serif; font-size: 2rem; font-weight: 700; color: var(--gold-400); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-400); margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }

/* ── GAMES ── */
.games-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.game-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; cursor: pointer; text-decoration: none; display: block; color: inherit; }
.game-card:hover { border-color: var(--border-hover); box-shadow: 0 12px 48px rgba(200,168,75,0.15); transform: translateY(-6px); color: inherit; }
.game-card-visual { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; font-size: 5rem; }
.game-card-visual.slots-bg { background: linear-gradient(135deg,#0D1A12 0%,#0A2A15 50%,#0D1A12 100%); }
.game-card-visual.roulette-bg { background: linear-gradient(135deg,#0D0A1A 0%,#1A0D2A 50%,#0D0A1A 100%); }
.game-card-visual.poker-bg { background: linear-gradient(135deg,#1A0D0D 0%,#2A1010 50%,#1A0D0D 100%); }
.game-card-visual::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at center,rgba(200,168,75,0.08),transparent 70%); }
.game-card-body { padding: 28px; }
.game-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-400); background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.2); padding: 3px 10px; border-radius: 10px; margin-bottom: 12px; }
.game-card-title { font-size: 1.4rem; font-weight: 600; color: var(--text-100); margin-bottom: 10px; }
.game-card-desc { font-size: 0.875rem; color: var(--text-300); line-height: 1.6; margin-bottom: 20px; }
.game-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--border); }
.game-meta { font-size: 0.78rem; color: var(--text-400); }
.game-meta strong { color: var(--text-200); }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; transition: border-color 0.3s, box-shadow 0.3s; }
.feature-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-gold); }
.feature-icon { width: 56px; height: 56px; background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.2); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 24px; }
.feature-title { font-size: 1.2rem; font-weight: 600; color: var(--text-100); margin-bottom: 12px; }
.feature-desc { font-size: 0.9rem; color: var(--text-300); line-height: 1.7; }

/* ── PAGE HERO ── */
.page-hero { padding: 140px 0 80px; background: var(--bg-0); border-bottom: 1px solid var(--border); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 70% at 50% 0%,rgba(200,168,75,0.06),transparent); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem,5vw,3.5rem); margin-bottom: 20px; }
.page-hero p { font-size: 1.1rem; color: var(--text-300); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ── CONTENT ── */
.content-block { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; margin-bottom: 24px; }
.content-block h2 { font-size: 1.6rem; margin-bottom: 16px; color: var(--text-100); }
.content-block h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--text-100); margin-top: 28px; }
.content-block p { color: var(--text-300); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }
.content-block ul, .content-block ol { color: var(--text-300); padding-left: 24px; margin-bottom: 16px; }
.content-block li { line-height: 1.8; margin-bottom: 8px; font-size: 0.95rem; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; color: var(--text-100); font-family: 'Playfair Display',serif; font-size: 1.1rem; font-weight: 600; }
.faq-icon { width: 28px; height: 28px; background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; color: var(--gold-400); transition: transform 0.3s, background 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(200,168,75,0.2); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding-bottom: 24px; color: var(--text-300); font-size: 0.95rem; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 500px; }

/* ── FOOTER ── */
.footer { background: var(--bg-0); border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-logo { font-family: 'Playfair Display',serif; font-size: 1.2rem; font-weight: 700; color: var(--text-100); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.footer-logo span { color: var(--gold-400); }
.footer-tagline { font-size: 0.875rem; color: var(--text-300); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-contact-info { margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: var(--text-300); margin-bottom: 10px; line-height: 1.5; }
.footer-contact-icon { color: var(--gold-400); flex-shrink: 0; margin-top: 1px; font-size: 0.9rem; }
.footer-age-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border); border-radius: 8px; padding: 8px 14px; font-size: 0.8rem; font-weight: 600; color: var(--text-300); }
.footer-age-badge strong { color: var(--gold-400); }
.footer-col-title { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-400); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.9rem; color: var(--text-300); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-400); }
.footer-disclaimer { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 32px; margin-bottom: 40px; }
.disclaimer-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warning-400); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.footer-disclaimer p { font-size: 0.82rem; color: var(--text-400); line-height: 1.7; margin-bottom: 14px; }
.disclaimer-help-links { display: flex; gap: 20px; flex-wrap: wrap; }
.disclaimer-help-links a { font-size: 0.8rem; color: var(--text-300); text-decoration: underline; text-decoration-color: rgba(154,144,128,0.4); }
.disclaimer-help-links a:hover { color: var(--gold-400); }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: var(--text-400); }

/* ── AGE GATE ── */
.age-gate-overlay { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.97); display: flex; align-items: center; justify-content: center; padding: 24px; }
.age-gate-modal { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 60px 48px; max-width: 520px; width: 100%; text-align: center; box-shadow: 0 0 80px rgba(200,168,75,0.1); animation: slideUp 0.4s ease; }
@keyframes slideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.age-gate-logo { font-family: 'Playfair Display',serif; font-size: 1.4rem; font-weight: 700; color: var(--text-100); margin-bottom: 8px; }
.age-gate-logo span { color: var(--gold-400); }
.age-gate-emblem { font-size: 3rem; margin-bottom: 24px; background: linear-gradient(135deg,var(--gold-400),var(--gold-500)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.age-gate-title { font-size: 1.8rem; margin-bottom: 12px; color: var(--text-100); }
.age-gate-subtitle { font-size: 0.9rem; color: var(--text-300); line-height: 1.7; margin-bottom: 36px; }
.age-gate-check { display: flex; align-items: flex-start; gap: 14px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px 20px; margin-bottom: 24px; text-align: left; cursor: pointer; transition: border-color 0.2s; }
.age-gate-check:hover { border-color: var(--border-hover); }
.age-gate-check input[type="checkbox"] { display: none; }
.age-gate-check-box { width: 22px; height: 22px; flex-shrink: 0; border: 2px solid var(--silver-400); border-radius: 5px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; margin-top: 2px; }
.age-gate-check.checked .age-gate-check-box { background: var(--gold-400); border-color: var(--gold-400); color: var(--bg-0); }
.age-gate-check-text { font-size: 0.88rem; color: var(--text-200); line-height: 1.6; }
.age-gate-btn { width: 100%; padding: 16px; background: linear-gradient(135deg,var(--gold-400),var(--gold-500)); color: var(--bg-0); font-family: 'Inter',sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; border: none; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.25s; opacity: 0.4; pointer-events: none; }
.age-gate-btn.active { opacity: 1; pointer-events: all; }
.age-gate-btn.active:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,0.3); }
.age-gate-decline { margin-top: 16px; font-size: 0.82rem; color: var(--text-400); }

/* ── COOKIE ── */
.cookie-banner { position: fixed; bottom: 24px; left: 24px; z-index: 8000; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px 28px; max-width: 420px; box-shadow: 0 16px 60px rgba(0,0,0,0.6); display: none; animation: slideUp 0.4s ease; }
.cookie-banner.visible { display: block; }
.cookie-banner-title { font-size: 1rem; font-weight: 600; color: var(--text-100); margin-bottom: 10px; }
.cookie-banner p { font-size: 0.82rem; color: var(--text-300); line-height: 1.6; margin-bottom: 18px; }
.cookie-banner-actions { display: flex; gap: 10px; }
.cookie-accept { flex: 1; padding: 10px; background: linear-gradient(135deg,var(--gold-400),var(--gold-500)); color: var(--bg-0); font-weight: 600; font-size: 0.85rem; border: none; border-radius: var(--radius-sm); cursor: pointer; font-family: 'Inter',sans-serif; transition: opacity 0.2s; }
.cookie-accept:hover { opacity: 0.9; }
.cookie-decline { flex: 1; padding: 10px; background: transparent; color: var(--text-300); font-size: 0.85rem; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; font-family: 'Inter',sans-serif; transition: color 0.2s; }
.cookie-decline:hover { color: var(--text-100); }

/* ── COMMUNITY ── */
.community-preview { background: linear-gradient(135deg,rgba(200,168,75,0.04),transparent); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 72px 64px; text-align: center; }
.member-avatar { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--bg-0); margin-left: -12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; background: var(--bg-3); }
.member-avatar:first-child { margin-left: 0; }

/* ── STEPS / TEAMS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; position: relative; }
.step-number { font-family: 'Playfair Display',serif; font-size: 3.5rem; font-weight: 700; color: rgba(200,168,75,0.12); line-height: 1; margin-bottom: 20px; }
.step-title { font-size: 1.2rem; margin-bottom: 12px; color: var(--text-100); }
.step-desc { font-size: 0.9rem; color: var(--text-300); line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; text-align: center; transition: border-color 0.3s, box-shadow 0.3s; }
.team-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-gold); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg,var(--gold-400),var(--gold-500)); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; border: 3px solid rgba(200,168,75,0.3); }
.team-name { font-size: 1.2rem; color: var(--text-100); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--gold-400); margin-bottom: 12px; }
.team-bio { font-size: 0.875rem; color: var(--text-300); line-height: 1.6; }

/* ── RG ── */
.rg-card { background: rgba(200,168,75,0.04); border: 1px solid rgba(200,168,75,0.15); border-radius: var(--radius-lg); padding: 36px; margin-bottom: 24px; }
.rg-card h3 { font-size: 1.2rem; color: var(--gold-300); margin-bottom: 12px; }
.rg-card p { color: var(--text-300); font-size: 0.9rem; line-height: 1.8; }
.rg-card ul { color: var(--text-300); padding-left: 20px; }
.rg-card li { font-size: 0.9rem; line-height: 1.9; }
.help-org-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px; }
.help-org-link { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; text-align: center; transition: border-color 0.2s; }
.help-org-link:hover { border-color: var(--border-hover); }
.help-org-link-name { font-size: 0.9rem; font-weight: 600; color: var(--text-100); margin-bottom: 4px; }
.help-org-link-desc { font-size: 0.78rem; color: var(--text-400); }

/* ── BADGE ── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 10px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; }
.badge-gold { background: rgba(200,168,75,0.15); color: var(--gold-400); border: 1px solid rgba(200,168,75,0.25); }
.badge-success { background: rgba(58,154,106,0.15); color: var(--success-300); border: 1px solid rgba(58,154,106,0.25); }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-400); margin-bottom: 20px; }
.breadcrumb a { color: var(--text-400); }
.breadcrumb a:hover { color: var(--gold-400); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .games-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .help-org-links { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; top: 72px; background: var(--bg-0); padding: 32px 24px; gap: 4px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 16px !important; font-size: 1rem !important; border-radius: var(--radius-md) !important; }
  .nav-toggle { display: flex; }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: var(--bg-3); margin-top: 4px; margin-left: 16px; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { gap: 28px; }
  .section { padding: 72px 0; }
  .games-grid, .features-grid, .steps-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .community-preview { padding: 40px 24px; }
  .content-block { padding: 28px 24px; }
  .help-org-links { grid-template-columns: 1fr; }
  .age-gate-modal { padding: 40px 28px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}
