/* =============================================================
   SquidWhipped.com — Main Stylesheet
   Theme: Dark Arcade (navy background, neon pink/cyan/gold)
   Mobile-first, CSS custom properties throughout
   ============================================================= */

/* ----------------------------------------------------------------
   1. Custom Properties (Design Tokens)
---------------------------------------------------------------- */
:root {
  /* Colors */
  --color-bg:           #08081a;
  --color-bg-alt:       #0d0d24;
  --color-bg-card:      rgba(255, 255, 255, 0.04);
  --color-bg-card-hover:rgba(255, 255, 255, 0.08);
  --color-surface:      #12122e;
  --color-border:       rgba(255, 255, 255, 0.1);

  --color-neon-pink:    #ff2d78;
  --color-neon-cyan:    #00e5ff;
  --color-neon-gold:    #ffd700;
  --color-neon-purple:  #bf5fff;

  --color-text:         #e8e8f8;
  --color-text-muted:   #8888aa;
  --color-text-heading: #ffffff;

  /* Fonts */
  --font-heading: 'Orbitron', 'Courier New', monospace;
  --font-body:    'Nunito', 'Segoe UI', sans-serif;

  /* Glow */
  --glow-pink:   0 0 8px rgba(255, 45, 120, 0.6),  0 0 24px rgba(255, 45, 120, 0.3);
  --glow-cyan:   0 0 8px rgba(0, 229, 255, 0.6),   0 0 24px rgba(0, 229, 255, 0.3);
  --glow-gold:   0 0 8px rgba(255, 215, 0, 0.6),   0 0 24px rgba(255, 215, 0, 0.3);

  /* Spacing scale */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Border radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill: 999px;

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;

  /* Layout */
  --max-width: 1200px;
  --header-h:  70px;
}

/* ----------------------------------------------------------------
   2. 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-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Subtle animated star-field background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.4) 0%, transparent 0%),
    radial-gradient(1px 1px at 45% 60%, rgba(255,255,255,0.3) 0%, transparent 0%),
    radial-gradient(1px 1px at 75% 10%, rgba(255,255,255,0.4) 0%, transparent 0%),
    radial-gradient(1px 1px at 85% 75%, rgba(255,255,255,0.25) 0%, transparent 0%),
    radial-gradient(1px 1px at 30% 90%, rgba(255,255,255,0.3) 0%, transparent 0%),
    radial-gradient(1px 1px at 60% 40%, rgba(255,255,255,0.35) 0%, transparent 0%),
    radial-gradient(1px 1px at 92% 30%, rgba(255,255,255,0.2) 0%, transparent 0%),
    radial-gradient(1px 1px at 5%  55%, rgba(255,255,255,0.3) 0%, transparent 0%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-neon-cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-neon-pink); }
ul { list-style: none; }

main { flex: 1; position: relative; z-index: 1; }

/* ----------------------------------------------------------------
   3. Utility Classes
---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.neon-pink   { color: var(--color-neon-pink); }
.neon-cyan   { color: var(--color-neon-cyan); }
.neon-gold   { color: var(--color-neon-gold); }

.text-link {
  color: var(--color-neon-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link:hover { color: var(--color-neon-pink); }

/* Page visibility: app.js toggles [hidden] to switch SPA pages */
.page { display: block; }
.page[hidden] { display: none !important; }

/* Page fade-in animation triggered by app.js */
.page--entering {
  animation: fadeIn 0.25s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------
   4. Buttons
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--color-neon-cyan);
  outline-offset: 3px;
}

/* Primary — neon pink */
.btn--primary {
  background: var(--color-neon-pink);
  color: #fff;
  border-color: var(--color-neon-pink);
  box-shadow: var(--glow-pink);
}
.btn--primary:hover {
  background: transparent;
  color: var(--color-neon-pink);
  box-shadow: var(--glow-pink), inset 0 0 20px rgba(255,45,120,0.1);
}
.btn--primary:active { transform: scale(0.97); }

/* Secondary — neon cyan outline */
.btn--secondary {
  background: transparent;
  color: var(--color-neon-cyan);
  border-color: var(--color-neon-cyan);
  box-shadow: var(--glow-cyan);
}
.btn--secondary:hover {
  background: var(--color-neon-cyan);
  color: var(--color-bg);
}

/* Ghost — subtle border */
.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: var(--color-border);
}
.btn--ghost:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

/* Buy Me a Coffee style */
.btn--bmc {
  background: #FFDD00;
  color: #000000;
  border-color: #FFDD00;
  font-weight: 800;
}
.btn--bmc:hover {
  background: #e6c700;
  border-color: #e6c700;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,221,0,0.4);
}

/* Sizes */
.btn--lg  { font-size: 1.1rem; padding: 1rem 2.25rem; }
.btn--sm  { font-size: 0.875rem; padding: 0.5rem 1.25rem; }

/* Spinner inside button */
.btn__spinner {
  width: 18px; height: 18px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ----------------------------------------------------------------
   5. Cookie Consent Banner
---------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  padding: var(--space-md) 0;
  animation: slideUp 0.3s ease forwards;
}
.cookie-banner[hidden] { display: none !important; }

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
}
.cookie-banner__text { flex: 1; min-width: 200px; font-size: 0.9rem; color: var(--color-text-muted); }
.cookie-banner__text a { color: var(--color-neon-cyan); }
.cookie-banner__actions { display: flex; gap: var(--space-sm); flex-shrink: 0; }

/* ----------------------------------------------------------------
   6. Header
---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo { display: flex; align-items: center; }
.site-logo__img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(255,45,120,0.5));
  transition: filter var(--transition);
}
.site-logo:hover .site-logo__img {
  filter: drop-shadow(0 0 12px rgba(255,45,120,0.9));
}

/* Desktop Nav */
.site-nav__list {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.site-nav__link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--color-text-heading);
  border-color: var(--color-neon-pink);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}
.hamburger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav__list { display: flex; flex-direction: column; }
.mobile-nav__link {
  display: block;
  padding: var(--space-md) var(--space-lg);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.mobile-nav__link:hover,
.mobile-nav__link[aria-current="page"] {
  color: var(--color-neon-pink);
  border-left-color: var(--color-neon-pink);
  background: rgba(255,45,120,0.06);
}

/* ----------------------------------------------------------------
   7. Hero Section (Home)
---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--space-3xl) 0 var(--space-2xl);
}

/* Ambient glowing orb behind hero */
.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255,45,120,0.12) 0%,
    rgba(0,229,255,0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite alternate;
}
@keyframes pulse {
  from { transform: translate(-50%, -60%) scale(1); opacity: 0.8; }
  to   { transform: translate(-50%, -60%) scale(1.1); opacity: 1; }
}

.hero__content { position: relative; z-index: 1; max-width: 700px; }

.hero__logo-wrap {
  margin-bottom: var(--space-xl);
}
.hero__logo {
  max-width: 420px;
  width: 80%;
  margin-inline: auto;
  filter: drop-shadow(0 0 16px rgba(255,45,120,0.5)) drop-shadow(0 0 40px rgba(0,229,255,0.25));
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--color-text-heading);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto var(--space-xl);
}

/* ----------------------------------------------------------------
   8. Section Layout
---------------------------------------------------------------- */
.section {
  padding: var(--space-3xl) 0;
}
.section--alt {
  background: var(--color-bg-alt);
}
.section--cta {
  background: linear-gradient(135deg, rgba(255,45,120,0.08) 0%, rgba(0,229,255,0.05) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-heading);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section__sub {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-2xl);
}

/* ----------------------------------------------------------------
   9. Game Cards (Home Preview)
---------------------------------------------------------------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.game-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  transition: all var(--transition-slow);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,45,120,0.06) 0%, rgba(0,229,255,0.04) 100%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.game-card:hover {
  border-color: var(--color-neon-pink);
  box-shadow: 0 0 20px rgba(255,45,120,0.2), 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.game-card:hover::before { opacity: 1; }

.game-card__img-wrap {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}
.game-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card__title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1.3;
}

.game-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  flex: 1;
}

/* ----------------------------------------------------------------
   10. Game List (Games Page)
---------------------------------------------------------------- */
.game-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.game-list-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.game-list-item:hover {
  border-color: rgba(255,45,120,0.4);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.game-list-item__body {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  align-items: start;
}

.game-list-item__img-wrap {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}
.game-list-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-list-item__info { display: flex; flex-direction: column; gap: var(--space-md); }

.game-list-item__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-heading);
}

.game-list-item__desc {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* How to Play accordion */
.how-to-play { border-top: 1px solid var(--color-border); }

.htp-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) var(--space-xl);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-neon-cyan);
  text-align: left;
  transition: background var(--transition);
}
.htp-toggle:hover { background: rgba(0,229,255,0.04); }
.htp-toggle:focus-visible { outline: 2px solid var(--color-neon-cyan); outline-offset: -2px; }

.htp-toggle__icon {
  font-size: 1.2rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.htp-toggle[aria-expanded="true"] .htp-toggle__icon { transform: rotate(180deg); }

.htp-content {
  padding: var(--space-md) var(--space-xl) var(--space-xl);
  color: var(--color-text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--color-border);
}
.htp-content[hidden] { display: none !important; }

.htp-steps { padding-left: 1.4rem; display: flex; flex-direction: column; gap: var(--space-sm); }
.htp-steps li { color: var(--color-text); }

/* ----------------------------------------------------------------
   11. "How It Works" Steps (Home)
---------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.step-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.step-card__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--space-md);
}
.step-card__num.neon-cyan  { text-shadow: var(--glow-cyan); }
.step-card__num.neon-pink  { text-shadow: var(--glow-pink); }
.step-card__num.neon-gold  { text-shadow: var(--glow-gold); }

.step-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: var(--space-sm);
}

.step-card__text { font-size: 0.9rem; color: var(--color-text-muted); }

/* ----------------------------------------------------------------
   12. CTA Banner (Home)
---------------------------------------------------------------- */
.cta-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  text-align: left;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: var(--space-sm);
}
.cta-banner__text { color: var(--color-text-muted); max-width: 520px; }

/* ----------------------------------------------------------------
   13. Page Hero (inner pages)
---------------------------------------------------------------- */
.page-hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
}

.page-hero--games::before   { background: radial-gradient(ellipse, rgba(0,229,255,0.08) 0%, transparent 70%); }
.page-hero--about::before   { background: radial-gradient(ellipse, rgba(191,95,255,0.08) 0%, transparent 70%); }
.page-hero--donate::before  { background: radial-gradient(ellipse, rgba(255,215,0,0.08) 0%, transparent 70%); }
.page-hero--feedback::before{ background: radial-gradient(ellipse, rgba(255,45,120,0.08) 0%, transparent 70%); }

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-text-heading);
  margin-bottom: var(--space-md);
  position: relative;
}

.page-hero--games .page-hero__title   { color: var(--color-neon-cyan); text-shadow: var(--glow-cyan); }
.page-hero--about .page-hero__title   { color: var(--color-neon-purple); text-shadow: 0 0 12px rgba(191,95,255,0.5); }
.page-hero--donate .page-hero__title  { color: var(--color-neon-gold); text-shadow: var(--glow-gold); }
.page-hero--feedback .page-hero__title{ color: var(--color-neon-pink); text-shadow: var(--glow-pink); }

.page-hero__sub { color: var(--color-text-muted); font-size: 1.1rem; max-width: 540px; margin-inline: auto; position: relative; }

/* ----------------------------------------------------------------
   14. About / Prose Content
---------------------------------------------------------------- */
.content-prose {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.prose-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.prose-card h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-neon-cyan);
  margin-bottom: var(--space-lg);
}

.prose-card p { color: var(--color-text); margin-bottom: var(--space-md); }
.prose-card p:last-child { margin-bottom: 0; }

.prose-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-left: var(--space-md);
}
.prose-list li {
  color: var(--color-text);
  position: relative;
  padding-left: var(--space-md);
}
.prose-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-neon-pink);
}

/* ----------------------------------------------------------------
   15. Donate Page
---------------------------------------------------------------- */
.donate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.donate-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-neon-gold);
  box-shadow: var(--glow-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.donate-card__icon { font-size: 3rem; }

.donate-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-neon-gold);
}

.donate-card__text { color: var(--color-text-muted); line-height: 1.8; }
.donate-card__note { font-size: 0.85rem; color: var(--color-text-muted); }

.donate-faq { display: flex; flex-direction: column; gap: var(--space-lg); }

.donate-faq__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: var(--space-sm);
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}
.faq-item h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-neon-cyan);
  margin-bottom: var(--space-sm);
}
.faq-item p { font-size: 0.9rem; color: var(--color-text-muted); }

/* ----------------------------------------------------------------
   16. Feedback Form
---------------------------------------------------------------- */
.feedback-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-2xl);
  align-items: start;
}

.feedback-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group { display: flex; flex-direction: column; gap: var(--space-xs); }

.form-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
}
.required { color: var(--color-neon-pink); }

.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus {
  outline: none;
  border-color: var(--color-neon-cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.15);
}
.form-input::placeholder { color: var(--color-text-muted); }
.form-input.error { border-color: var(--color-neon-pink); box-shadow: 0 0 0 3px rgba(255,45,120,0.15); }

.form-textarea { resize: vertical; min-height: 140px; }

.form-hint { font-size: 0.8rem; color: var(--color-text-muted); }

.form-status {
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
}
.form-status[hidden] { display: none !important; }
.form-status--success {
  background: rgba(0,229,255,0.08);
  border: 1px solid var(--color-neon-cyan);
  color: var(--color-neon-cyan);
}
.form-status--error {
  background: rgba(255,45,120,0.08);
  border: 1px solid var(--color-neon-pink);
  color: var(--color-neon-pink);
}

.feedback-aside { display: flex; flex-direction: column; gap: var(--space-lg); }
.feedback-aside__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.feedback-aside__card h2 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-neon-pink);
  margin-bottom: var(--space-md);
}
.feedback-aside__card p { font-size: 0.9rem; color: var(--color-text-muted); }

/* ----------------------------------------------------------------
   17. Footer
---------------------------------------------------------------- */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.footer-brand__logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 0 4px rgba(255,45,120,0.3));
}
.footer-brand__tagline { color: var(--color-text-muted); font-size: 0.9rem; }

.footer-nav__heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-neon-pink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.footer-nav__list { display: flex; flex-direction: column; gap: var(--space-sm); }

.footer-nav__link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-nav__link:hover { color: var(--color-neon-cyan); }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) 0;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer-bottom__copy { font-size: 0.85rem; color: var(--color-text-muted); }

.footer-bmc {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
}

/* ----------------------------------------------------------------
   18. Responsive / Mobile
---------------------------------------------------------------- */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: var(--space-2xl) 0; }
  .hero__logo { max-width: 260px; }
  .hero__tagline { font-size: 1.6rem; }

  .game-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .game-card__img-wrap { width: 80px; height: 80px; }

  .game-list-item__body { grid-template-columns: 1fr; }
  .game-list-item__img-wrap { width: 100%; height: 200px; }

  .steps-grid { grid-template-columns: 1fr 1fr; }

  .cta-banner { flex-direction: column; text-align: center; }
  .cta-banner__text { margin-inline: auto; }

  .donate-layout { grid-template-columns: 1fr; }

  .feedback-layout { grid-template-columns: 1fr; }

  .site-footer__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .game-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .section { padding: var(--space-2xl) 0; }
  .section--cta .container { flex-direction: column; }
}
