/* IronGames LLC — hand-written stylesheet (no framework) */

/* Fonts */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url('/assets/fonts/Inter-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700 900;
  font-display: optional;
  src: url('/assets/fonts/Outfit-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700 900;
  font-display: optional;
  src: url('/assets/fonts/Cinzel-var.woff2') format('woff2');
}

/* Tokens */
:root {
  --bg-900: #07090E;
  --bg-800: #0D111A;
  --bg-700: #151C2C;
  --gold-300: #FDE047;
  --gold-400: #FACC15;
  --gold-500: #EAB308;
  --gold-600: #CA8A04;
  --amber-500: #F59E0B;
  --amber-600: #D97706;
  --text: #f1f5f9;
  --text-2: #cbd5e1;
  --text-3: #94a3b8;
  --text-4: #64748b;
  --line: #1e293b;
  --line-2: #334155;
  --glow: 0 0 25px -5px rgba(234, 179, 8, .4);
  --glow-lg: 0 0 40px 0 rgba(245, 158, 11, .5);
}

/* Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-900);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1; }
::selection { background: var(--gold-500); color: var(--bg-900); }
img, svg, video { max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; overflow-wrap: break-word; word-break: break-word; }
h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; word-break: break-word; line-height: 1.2; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
button, nav a { -webkit-user-select: none; user-select: none; }
textarea { resize: none; }
ul[class], ol[class] { list-style: none; padding: 0; }
[hidden], .hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Layout */
.container { max-width: 80rem; margin-inline: auto; padding-inline: clamp(16px, 2.5vw, 32px); }
.container--narrow { max-width: 56rem; }

/* Metallic gold heading */
.h-metal {
  font-family: 'Cinzel', serif;
  background: linear-gradient(180deg, #fdf3c8 0%, #fbd766 30%, #d99a1c 55%, #92610d 75%, #fce27e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .6));
}

/* Buttons */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--bg-900);
  background: linear-gradient(90deg, var(--gold-500), var(--amber-600));
  box-shadow: var(--glow);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: var(--glow-lg); }
.btn-gold:active { transform: translateY(0); }
.btn-gold--lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; letter-spacing: .06em; }
.btn-block { width: 100%; padding-block: 16px; border-radius: 12px; letter-spacing: .08em; }
.btn-dim {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 12px;
  font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: #fff; background: var(--line-2);
  transition: background .2s;
}
.btn-dim:hover { background: #475569; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 50;
  background: rgba(7, 9, 14, .8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 41, 59, .8);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 80px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 12px; padding: 4px; border-radius: 12px; outline: none; }
.brand:focus-visible { box-shadow: 0 0 0 2px var(--gold-500); }
.brand svg { width: 40px; height: 40px; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; }
.brand-text b { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: .05em; color: #fff; transition: color .2s; }
.brand:hover .brand-text b { color: var(--gold-400); }
.brand-text small { font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 14px; font-weight: 500; color: var(--text-2); transition: color .2s; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold-400); outline: none; }
.burger { display: none; padding: 8px; border-radius: 8px; color: var(--text-3); }
.burger:hover { color: #fff; background: rgba(30, 41, 59, .6); }
.burger:focus-visible { outline: 2px solid var(--gold-500); }
.burger svg { width: 24px; height: 24px; display: block; }
.mobile-menu { width: 100%; display: flex; flex-direction: column; gap: 16px; padding: 8px 8px 24px; border-top: 1px solid rgba(30, 41, 59, .6); }
.mobile-menu a { font-size: 16px; font-weight: 500; color: #e2e8f0; padding: 4px 8px; border-radius: 6px; }
.mobile-menu a:hover { color: var(--gold-400); }
.mobile-menu .btn-gold { color: var(--bg-900); padding: 12px 24px; }

@media (max-width: 1219px) {
  .main-nav { display: none; }
  .burger { display: block; }
}
@media (min-width: 1220px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 519px) {
  .nav-cta { display: none; }
}

/* Hero */
.sec-hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); filter: brightness(.9); }
.hero-media::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7, 9, 14, .94), rgba(7, 9, 14, .72) 45%, rgba(7, 9, 14, .3));
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--bg-900), rgba(7, 9, 14, .2) 40%, rgba(7, 9, 14, .55));
}
.sec-hero .container { position: relative; z-index: 2; width: 100%; }
.hero-inner {
  max-width: 48rem;
  margin-left: clamp(0px, 2vw, 32px);
  padding-block: clamp(64px, 10vh, 96px);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px;
}
.hero-title { display: flex; flex-direction: column; gap: 8px; font-family: 'Cinzel', serif; text-transform: uppercase; }
.hero-title-top {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: .12em;
  background: linear-gradient(180deg, #ffffff 20%, #b8c2d0 55%, #7c8798 80%, #e8edf4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .7));
}
.hero-title-main {
  font-size: clamp(2.1rem, 5.4vw, 4.5rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: .01em;
  white-space: nowrap;
  background: linear-gradient(180deg, #fdf3c8 0%, #fbd766 30%, #d99a1c 55%, #92610d 75%, #fce27e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, .75));
}
@media (max-width: 400px) {
  .hero-title-main { white-space: normal; }
}
.hero-divider {
  position: relative;
  border: 0;
  width: min(320px, 70%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250, 204, 21, .75), transparent);
  overflow: visible;
}
.hero-divider::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  width: 9px; height: 9px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(135deg, #fde047, #b45309);
  box-shadow: 0 0 8px rgba(250, 204, 21, .7);
}
.hero-lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  color: #e2e8f0;
  max-width: 36rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .6);
}
.hero-cta {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 16px;
  padding: 1.05rem 3.6rem;
  font-family: 'Cinzel', serif;
  font-size: 1.3rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: #3d2405;
  text-shadow: 0 1px 0 rgba(255, 240, 190, .55);
  background: linear-gradient(180deg, #fde68a 0%, #fbc93d 38%, #eda114 62%, #d97706 100%);
  border: 2px solid #f3cf5c;
  border-radius: 8px;
  box-shadow:
    inset 0 2px 3px rgba(255, 244, 200, .8),
    inset 0 -10px 18px rgba(146, 64, 14, .5),
    0 0 0 4px rgba(58, 38, 10, .85),
    0 0 0 6px #a8781a,
    0 0 30px rgba(245, 158, 11, .45),
    0 10px 24px rgba(0, 0, 0, .6);
  transition: box-shadow .25s, transform .25s, filter .25s;
}
.hero-cta::after {
  content: '';
  position: absolute; inset: 5px;
  border: 1px solid rgba(122, 74, 12, .55);
  border-radius: 4px;
  pointer-events: none;
}
.hero-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    inset 0 2px 3px rgba(255, 244, 200, .9),
    inset 0 -10px 18px rgba(146, 64, 14, .45),
    0 0 0 4px rgba(58, 38, 10, .85),
    0 0 0 6px #c8952a,
    0 0 46px rgba(245, 158, 11, .6),
    0 12px 28px rgba(0, 0, 0, .65);
}
.hero-cta-crest {
  position: absolute; top: -13px; left: 50%;
  width: 64px; height: 20px;
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .6));
  pointer-events: none;
}
.hero-cta-spike {
  position: absolute; top: 50%;
  width: 46px; height: 46px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .7));
  pointer-events: none;
}
.hero-cta-spike--l { left: -52px; transform: translateY(-50%); }
.hero-cta-spike--r { right: -52px; transform: translateY(-50%) scaleX(-1); }
@media (max-width: 519px) {
  .hero-cta { width: 100%; padding-inline: 1.5rem; font-size: 1.1rem; }
  .hero-inner { margin-left: 0; width: 100%; }
}

/* Section shells */
.sec-features, .sec-steps { position: relative; overflow: hidden; padding-block: clamp(80px, 10vw, 128px); }
.sec-features {
  border-block: 1px solid rgba(30, 41, 59, .8);
  background-image: linear-gradient(180deg, rgba(7, 9, 14, .86) 0%, rgba(7, 9, 14, .62) 100%), url('/assets/img/roster.avif');
  background-size: cover;
  background-position: center;
}
.sec-steps {
  background-image: linear-gradient(180deg, rgba(7, 9, 14, .9) 0%, rgba(7, 9, 14, .58) 50%, rgba(7, 9, 14, .9) 100%), url('/assets/img/battle.avif');
  background-size: cover;
  background-position: center;
}
.sec-head { max-width: 48rem; margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(1.875rem, 3.4vw, 2.5rem); font-weight: 900; }
.sec-head p { margin-top: 16px; color: var(--text-2); font-size: 1.0625rem; }
.sec-cta { text-align: center; margin-top: 64px; }

/* Glass card base */
.feature-card, .step-card, .cta-banner {
  background: rgba(13, 17, 26, .75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 64px;
}
.feature-card {
  padding: 24px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
  transition: transform .3s, border-color .3s, background .3s;
}
.feature-card:hover, .feature-card:focus-visible {
  background: rgba(21, 28, 44, .85);
  border-color: rgba(234, 179, 8, .4);
  transform: translateY(-4px);
  outline: none;
}
.feature-card h3 { font-size: 1.25rem; font-weight: 700; }
.feature-card p { font-size: 14px; line-height: 1.65; color: var(--text-2); }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 64px;
  margin-bottom: 64px;
}
.step-card { padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.step-num {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.25rem;
  color: var(--bg-900);
  background: linear-gradient(135deg, var(--gold-400), var(--amber-600));
  box-shadow: var(--glow);
}
.step-card h3 { font-size: 1.25rem; font-weight: 700; }
.step-card p { font-size: 14px; line-height: 1.65; color: var(--text-2); }
.step-card small {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid rgba(30, 41, 59, .8);
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-400);
}
.cta-banner {
  max-width: 56rem;
  margin-inline: auto;
  border-color: rgba(234, 179, 8, .3);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .4);
  padding: clamp(24px, 4vw, 32px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.cta-banner p { font-size: 13px; color: var(--text-2); }
.cta-banner strong { display: block; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.125rem; color: #fff; }

@media (max-width: 820px) {
  .features-grid, .steps-grid { grid-template-columns: minmax(0, 1fr); }
  .cta-banner { justify-content: center; text-align: center; }
}

/* Footer */
.site-footer {
  background: var(--bg-900);
  border-top: 1px solid var(--line);
  color: var(--text-3);
  font-size: 14px;
  padding-block: 48px;
}
.site-footer .container { display: grid; gap: 32px; }
.footer-top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(30, 41, 59, .8);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand svg { width: 32px; height: 32px; }
.footer-brand span { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.125rem; letter-spacing: .05em; color: #fff; }
.footer-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; font-weight: 500; }
.footer-nav a, .footer-nav button { text-transform: uppercase; text-align: left; transition: color .2s; }
.footer-nav a:hover, .footer-nav button:hover, .footer-nav a:focus-visible, .footer-nav button:focus-visible { color: var(--gold-400); outline: none; }
.footer-info { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; font-size: 13px; }
.footer-info dt { font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: #e2e8f0; margin-bottom: 4px; }
.footer-info a { color: var(--gold-400); }
.footer-info a:hover { text-decoration: underline; }
.footer-info .muted { margin-top: 4px; color: var(--text-4); }
.footer-note {
  padding-top: 24px;
  border-top: 1px solid rgba(30, 41, 59, .6);
  font-size: 12px; color: var(--text-4);
  display: grid; gap: 8px;
}
@media (max-width: 820px) {
  .footer-info { grid-template-columns: minmax(0, 1fr); }
}

/* Cookie modal */
.modal {
  position: fixed; inset: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(4px);
  padding: 16px;
  overflow-y: auto;
}
.modal-card {
  background: var(--bg-800);
  border: 1px solid rgba(51, 65, 85, .8);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .7);
  max-width: 32rem; width: 100%;
  padding: clamp(24px, 4vw, 32px);
  display: grid; gap: 24px;
}
.modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(51, 65, 85, .6);
}
.modal-head h3 { font-size: 1.25rem; font-weight: 700; }
.modal-close { padding: 4px; border-radius: 8px; color: var(--text-3); }
.modal-close:hover { color: #fff; }
.modal-close:focus-visible { outline: 2px solid var(--gold-500); }
.modal-close svg { width: 24px; height: 24px; display: block; }
.modal-card > p { font-size: 14px; line-height: 1.65; color: var(--text-2); }

.consent-list { display: grid; gap: 16px; }
.consent-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(21, 28, 44, .6);
  border: 1px solid rgba(51, 65, 85, .5);
}
.consent-list b { display: block; font-size: 14px; font-weight: 600; color: #fff; }
.consent-list small { display: block; margin-top: 2px; font-size: 12px; color: var(--text-3); }
.always-on {
  flex: 0 0 auto;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--gold-400);
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(234, 179, 8, .1);
  border: 1px solid rgba(234, 179, 8, .3);
}

.switch { position: relative; display: inline-flex; width: 44px; height: 24px; flex: 0 0 auto; cursor: pointer; }
.switch input { position: absolute; opacity: 0; inset: 0; }
.switch span { position: absolute; inset: 0; border-radius: 999px; background: var(--line-2); transition: background .2s; }
.switch span::after {
  content: '';
  position: absolute; top: 2px; left: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s;
}
.switch input:checked + span { background: var(--gold-500); }
.switch input:checked + span::after { transform: translateX(20px); }
.switch input:focus-visible + span { outline: 2px solid var(--gold-400); outline-offset: 2px; }

.modal-actions, .consent-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.modal-actions .btn-gold, .consent-actions .btn-gold { flex: 1 1 auto; padding-block: 12px; border-radius: 12px; }
.modal-actions .btn-dim, .consent-actions .btn-dim { flex: 1 1 auto; }

.save-note {
  padding: 12px;
  border-radius: 8px;
  background: rgba(16, 185, 129, .2);
  border: 1px solid rgba(16, 185, 129, .4);
  color: #34d399;
  font-size: 12px; font-weight: 600;
}

/* Inner pages */
.page-main { padding: 144px 0 64px; }
.page-main .container { display: grid; gap: 48px; }
.page-head { border-bottom: 1px solid var(--line); padding-bottom: 32px; }
.page-head h1 { font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 900; }
.page-head p { margin-top: 16px; font-size: 14px; color: var(--text-3); }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold-400);
  background: rgba(234, 179, 8, .1);
  border: 1px solid rgba(234, 179, 8, .3);
}
.pill--green { color: #34d399; background: rgba(16, 185, 129, .1); border-color: rgba(16, 185, 129, .3); }

/* Legal text */
.legal { display: grid; gap: 32px; color: var(--text-2); line-height: 1.65; }
.legal h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.legal a { color: var(--gold-400); }
.legal a:hover { text-decoration: underline; }
.legal ul { list-style: disc; padding-left: 24px; display: grid; gap: 8px; margin-top: 8px; }
.legal strong { color: var(--text); }

/* Card sections (support / parental / cookies) */
.card-sec {
  background: var(--bg-800);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 32px);
  display: grid; gap: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}
.card-sec h2 { font-size: 1.5rem; font-weight: 700; }
.card-sec > p { font-size: 14px; line-height: 1.65; color: var(--text-2); }
.card-sec a { color: var(--gold-400); }
.card-sec a:hover { text-decoration: underline; }

.page-hero { display: grid; gap: 16px; text-align: center; justify-items: center; max-width: 48rem; margin-inline: auto; }
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 900; }
.page-hero p { color: var(--text-2); font-size: 1.0625rem; }

.icon-box {
  width: 40px; height: 40px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  color: var(--gold-400);
  background: rgba(234, 179, 8, .1);
  border: 1px solid rgba(234, 179, 8, .3);
  font-weight: 700; font-size: 13px;
}
.icon-box svg { width: 24px; height: 24px; }
.sec-title-row { display: flex; align-items: center; gap: 12px; }

/* Support specs */
.specs-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; font-size: 14px; }
.specs-grid > li {
  padding: 16px;
  border-radius: 12px;
  background: rgba(21, 28, 44, .6);
  border: 1px solid rgba(51, 65, 85, .5);
  display: grid; gap: 8px;
}
.specs-grid b { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-400); }
.specs-grid ul { display: grid; gap: 4px; color: var(--text-2); }
.specs-grid strong { color: var(--text); }
@media (max-width: 820px) {
  .specs-grid { grid-template-columns: minmax(0, 1fr); }
}

/* FAQ */
.faq-list { display: grid; gap: 16px; }
.faq-list article {
  padding: 24px;
  border-radius: 16px;
  background: var(--bg-800);
  border: 1px solid var(--line);
  transition: border-color .3s;
  display: grid; gap: 8px;
}
.faq-list article:hover { border-color: rgba(234, 179, 8, .3); }
.faq-list h3 { font-size: 1.25rem; font-weight: 700; }
.faq-list p { font-size: 14px; line-height: 1.65; color: var(--text-2); }

/* Forms */
form { display: grid; gap: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 820px) {
  .form-grid { grid-template-columns: minmax(0, 1fr); }
}
.field { display: grid; gap: 8px; }
.field label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-2); }
.field input, .field textarea, .cselect-btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--bg-700);
  border: 1px solid var(--line-2);
  color: #fff;
  font: inherit; font-size: 15px;
  outline: none;
  transition: border-color .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-4); }
.field input:focus, .field textarea:focus, .cselect-btn:focus { border-color: var(--gold-500); }

/* Custom select */
.cselect { position: relative; }
.cselect-btn { display: flex; align-items: center; justify-content: space-between; gap: 12px; text-align: left; cursor: pointer; }
.cselect-arrow { width: 16px; height: 16px; flex: 0 0 auto; color: var(--text-3); transition: transform .2s; }
.cselect-btn[aria-expanded="true"] .cselect-arrow { transform: rotate(180deg); }
.cselect-list {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30;
  background: var(--bg-700);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 6px; margin: 0;
  list-style: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .55);
}
.cselect-list li { padding: 10px 12px; border-radius: 8px; cursor: pointer; font-size: 14px; color: #e2e8f0; }
.cselect-list li:hover { background: rgba(234, 179, 8, .12); color: var(--gold-400); }
.cselect-list li[aria-selected="true"] { color: var(--gold-400); font-weight: 600; }

/* Parental rating grid */
.rating-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; font-size: 13px; }
.rating-grid li {
  padding: 16px;
  border-radius: 12px;
  background: rgba(21, 28, 44, .6);
  border: 1px solid rgba(51, 65, 85, .5);
  display: grid; gap: 4px;
}
.rating-grid b { color: var(--gold-400); }
.rating-grid p { color: var(--text-3); line-height: 1.6; }
@media (max-width: 820px) {
  .rating-grid { grid-template-columns: minmax(0, 1fr); }
}
.control-list { display: grid; gap: 16px; }
.control-list article {
  padding: 24px;
  border-radius: 16px;
  background: var(--bg-800);
  border: 1px solid var(--line);
  display: grid; gap: 8px;
}
.control-list h3 { font-size: 1.25rem; font-weight: 700; }
.control-list p { font-size: 14px; line-height: 1.65; color: var(--text-2); }

/* Form toast */
.toast-backdrop {
  position: fixed; inset: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(4px);
  padding: 16px;
}
.toast-card {
  background: var(--bg-800);
  border: 1px solid rgba(234, 179, 8, .35);
  border-radius: 16px;
  padding: 32px;
  max-width: 26rem; width: 100%;
  text-align: center;
  box-shadow: 0 0 40px rgba(245, 158, 11, .25);
}
.toast-icon { width: 48px; height: 48px; margin: 0 auto 12px; color: var(--gold-400); }
.toast-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.25rem; color: #fff; margin-bottom: 8px; }
.toast-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* Support chat */
.cw-toggle {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FACC15, #D97706);
  color: var(--bg-900);
  box-shadow: 0 8px 24px rgba(245, 158, 11, .4);
  transition: transform .2s, box-shadow .2s;
}
.cw-toggle:hover { transform: scale(1.06); box-shadow: 0 10px 30px rgba(245, 158, 11, .55); }
.cw-toggle svg { width: 28px; height: 28px; }
.cw-panel {
  position: fixed; right: 20px; bottom: 88px; z-index: 80;
  width: 360px; height: 460px; max-width: calc(100vw - 24px);
  display: flex; flex-direction: column;
  background: var(--bg-800);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .7);
  overflow: hidden;
}
.cw-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(135deg, rgba(234, 179, 8, .14), rgba(217, 119, 6, .06));
}
.cw-head h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .95rem; color: #fff; }
.cw-head p { font-size: .72rem; color: var(--text-3); margin-top: 2px; }
.cw-close { color: var(--text-3); padding: 6px; border-radius: 8px; }
.cw-close:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.cw-close svg { width: 20px; height: 20px; display: block; }
.cw-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.cw-msg { max-width: 85%; padding: 9px 13px; border-radius: 14px; font-size: .85rem; line-height: 1.5; white-space: pre-line; }
.cw-msg--bot { background: var(--bg-700); color: #e2e8f0; border-bottom-left-radius: 4px; align-self: flex-start; }
.cw-msg--user { background: linear-gradient(135deg, #EAB308, #D97706); color: var(--bg-900); font-weight: 500; border-bottom-right-radius: 4px; align-self: flex-end; }
.cw-msg--typing { background: var(--bg-700); color: var(--text-3); align-self: flex-start; letter-spacing: 3px; }
.cw-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid rgba(255, 255, 255, .08); }
.cw-form input {
  flex: 1; min-width: 0;
  background: var(--bg-700);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 9px 13px;
  font: inherit; font-size: .85rem; color: #fff;
}
.cw-form input:focus { outline: none; border-color: var(--gold-500); }
.cw-form button {
  flex: 0 0 auto; width: 42px; border-radius: 10px;
  background: linear-gradient(135deg, #FACC15, #D97706);
  color: var(--bg-900);
  display: flex; align-items: center; justify-content: center;
}
.cw-form button svg { width: 18px; height: 18px; }
@media (max-width: 430px) {
  .cw-panel { right: 12px; bottom: 82px; height: min(460px, calc(100dvh - 110px)); }
  .cw-toggle { right: 12px; bottom: 14px; }
}
