/* ============================================================
   Apple-inspired Design System
   ============================================================ */

:root {
  /* Colors */
  --color-bg: #fbfbfd;
  --color-bg-secondary: #f5f5f7;
  --color-bg-dark: #000000;
  --color-bg-dark-secondary: #1d1d1f;
  --color-text: #1d1d1f;
  --color-text-secondary: #6e6e73;
  --color-text-light: #f5f5f7;
  --color-accent: #0071e3;
  --color-accent-hover: #0077ed;
  --color-border: rgba(0, 0, 0, 0.08);

  /* Wengla accent (vibrant card colors) */
  --wengla-blue: #2196f3;
  --wengla-green: #4caf50;
  --wengla-red: #e53935;
  --wengla-yellow: #fdd835;

  /* NEO Blocks accent (magical forest) */
  --neo-gold: #d4a64a;
  --neo-gold-light: #f0d68f;
  --neo-forest: #2d4a2b;
  --neo-forest-dark: #1a2e1a;

  /* Typography */
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 52px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Easing */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================================
   Reset & Base
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.47;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s var(--ease-smooth);
}

a:hover {
  color: var(--color-accent-hover);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   Typography
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.08;
}

.display-1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.display-2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.headline {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.1;
}

.subheadline {
  font-size: clamp(21px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--color-text-secondary);
  letter-spacing: 0.004em;
  line-height: 1.4;
}

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

/* ============================================================
   Navigation (Glassmorphism)
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 9999;
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s var(--ease-smooth);
}

.nav-inner {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  font-size: 21px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.nav-brand:hover {
  color: var(--color-text);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 8px;
  opacity: 0.85;
  transition: opacity 0.2s var(--ease-smooth);
}

.nav-link:hover {
  opacity: 1;
  color: var(--color-text);
}

.nav-link.active {
  opacity: 1;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.06);
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-text);
}

@media (max-width: 768px) {
  .nav-link.active {
    background: rgba(0, 0, 0, 0.06);
  }
  .nav-link.active::after { display: none; }
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}

.lang-btn {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  border-radius: 16px;
  letter-spacing: 0.04em;
  transition: all 0.2s var(--ease-smooth);
}

.lang-btn.active {
  background: var(--color-text);
  color: white;
}

/* Always-visible nav actions on the right (lang switcher + hamburger) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile menu toggle (hamburger) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
  transition: background 0.2s var(--ease-smooth);
}

.nav-toggle:hover,
.nav-toggle:active {
  background: rgba(0, 0, 0, 0.1);
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s var(--ease-smooth);
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 25px; }

.nav-toggle.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .nav-toggle { display: block; }

  .nav-inner { padding: 0 16px; gap: 12px; }

  .nav-brand { font-size: 19px; }

  /* Hide the link list — only show via hamburger toggle */
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(251, 251, 253, 0.97);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease-smooth), transform 0.25s var(--ease-smooth), visibility 0.25s;
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 17px;
    width: 100%;
  }
  .nav-link.active::after { display: none; }

  /* Compact lang-switch on mobile so it fits next to hamburger */
  .lang-switch { padding: 3px; }
  .lang-btn { padding: 5px 10px; font-size: 11px; }
}

/* ============================================================
   Layout
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section-sm {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-sm { padding: 56px 0; }
}

/* ============================================================
   Hero Sections
   ============================================================ */

.hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hero-image {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  font-size: 17px;
  font-weight: 400;
  border-radius: 980px;
  transition: all 0.2s var(--ease-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: white;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: white;
}

.btn-link {
  color: var(--color-accent);
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-link::after {
  content: "›";
  font-size: 22px;
  transition: transform 0.2s var(--ease-smooth);
}

.btn-link:hover::after {
  transform: translateX(4px);
}

.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============================================================
   Game Cards (on home page)
   ============================================================ */

.game-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .game-grid {
    grid-template-columns: 1fr;
  }
}

.game-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 64px 48px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.4s var(--ease-smooth);
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-8px);
}

.game-card-wengla {
  background: linear-gradient(160deg, #0f0a1f 0%, #1a1530 40%, #2d1f4a 100%);
  color: white;
}

.game-card-neo {
  background: linear-gradient(160deg, #0a1a0a 0%, #1a2e1a 40%, #2d4a2b 100%);
  color: white;
}

.game-card-header {
  margin-bottom: auto;
}

.game-card-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
}

.game-card-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 8px;
}

.game-card-tagline {
  font-size: clamp(18px, 2vw, 22px);
  opacity: 0.85;
  font-weight: 400;
}

.game-card-cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.game-card-image {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.game-card-image img {
  max-height: 280px;
  width: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

/* ============================================================
   Feature Grids
   ============================================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.feature-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #007aff, #0051d5);
  color: white;
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-text {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ============================================================
   Showcase Sections (alternating image/text)
   ============================================================ */

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.showcase.reverse {
  direction: rtl;
}

.showcase.reverse > * {
  direction: ltr;
}

.showcase-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.showcase-content h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.showcase-content p {
  font-size: 19px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .showcase, .showcase.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  .showcase-content { text-align: center; }
}

/* ============================================================
   Section Headers
   ============================================================ */

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.section-header h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 21px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* ============================================================
   Dark Section
   ============================================================ */

.section-dark {
  background: #000;
  color: white;
}

.section-dark .section-header h2 { color: white; }
.section-dark .section-header p { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   Stats Row
   ============================================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-top: 64px;
  text-align: center;
}

.stat-value {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--color-accent), #50a0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* ============================================================
   Game-Specific Hero Backgrounds
   ============================================================ */

.hero-wengla {
  background: radial-gradient(ellipse at top, #1a0a2e 0%, #0a0515 70%, #000 100%);
  color: white;
}

.hero-wengla .hero-content,
.hero-wengla .subheadline {
  color: white;
}
.hero-wengla .subheadline { color: rgba(255, 255, 255, 0.75); }

.hero-neo {
  background: radial-gradient(ellipse at center, #2d4a2b 0%, #1a2e1a 50%, #0a1a0a 100%);
  color: white;
}

.hero-neo .hero-content,
.hero-neo .subheadline {
  color: white;
}
.hero-neo .subheadline { color: rgba(240, 214, 143, 0.85); }

.hero-neo .display-1 {
  background: linear-gradient(180deg, #f0d68f 0%, #d4a64a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* viewmedia hero (warm brown mosaic) */
.hero-viewmedia {
  background:
    radial-gradient(ellipse at center, rgba(180, 120, 60, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, #1a1208 0%, #2a1e10 50%, #1a1208 100%);
  color: white;
}

.hero-viewmedia .subheadline { color: rgba(255, 255, 255, 0.75); }

.viewmedia-wordmark {
  display: flex;
  justify-content: center;
  margin: 24px 0 8px;
}

.viewmedia-logo-img {
  max-width: 520px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--color-bg-secondary);
  padding: 48px 0 32px;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--color-text-secondary);
  font-size: 12px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-secondary);
}

/* ============================================================
   Animations (Scroll-In)
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Parallax-like floating hero image */
.float {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================================
   Utility
   ============================================================ */

.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-64 { margin-top: 64px; }
.hidden-mobile { display: block; }
.hidden-desktop { display: none; }

@media (max-width: 768px) {
  .hidden-mobile { display: none; }
  .hidden-desktop { display: block; }
}

/* Hide language by class — JS toggles these */
[data-lang]:not(.lang-active) { display: none; }

/* ============================================================
   Legal Pages (Imprint, Privacy)
   ============================================================ */

.legal-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 64px;
  background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg) 100%);
  text-align: center;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 120px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
}

.legal-content h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.022em;
  margin-top: 64px;
  margin-bottom: 16px;
  line-height: 1.15;
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--color-text-secondary);
}

.legal-content strong {
  color: var(--color-text);
  font-weight: 600;
}

.legal-content a {
  color: var(--color-accent);
  word-break: break-word;
}

.legal-content ul {
  margin: 0 0 16px 24px;
  color: var(--color-text-secondary);
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content code {
  background: var(--color-bg-secondary);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: ui-monospace, "SF Mono", Menlo, Monaco, monospace;
  color: var(--color-text);
}

.legal-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 32px;
  margin: 24px 0;
}

.legal-card-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px 24px;
  font-size: 16px;
}

.legal-card-row dt {
  color: var(--color-text-secondary);
  font-weight: 500;
}

.legal-card-row dd {
  color: var(--color-text);
  margin: 0;
}

.legal-meta {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  background: var(--color-bg-secondary);
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 16px;
}

.legal-toc {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 48px;
  font-size: 15px;
}

.legal-toc strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

.legal-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  counter-reset: toc;
}

@media (max-width: 600px) {
  .legal-toc ol { grid-template-columns: 1fr; }
  .legal-card-row { grid-template-columns: 1fr; gap: 4px 0; }
  .legal-card-row dt { font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
}

.legal-toc li {
  counter-increment: toc;
}

.legal-toc a {
  color: var(--color-text);
  text-decoration: none;
  display: block;
  padding: 6px 0;
  transition: color 0.2s;
}

.legal-toc a::before {
  content: counter(toc) ".";
  color: var(--color-text-secondary);
  margin-right: 8px;
  font-variant-numeric: tabular-nums;
}

.legal-toc a:hover { color: var(--color-accent); }

.legal-table-wrap {
  margin: 24px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table th {
  background: var(--color-bg-secondary);
  color: var(--color-text);
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--color-border);
  vertical-align: top;
  color: var(--color-text-secondary);
}

.legal-table td:first-child {
  color: var(--color-text);
  font-weight: 500;
}

.legal-divider {
  height: 1px;
  background: var(--color-border);
  margin: 48px 0;
  border: none;
}

.legal-footnote {
  font-size: 13px;
  color: var(--color-text-secondary);
  font-style: italic;
  padding: 16px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-sm);
  margin-top: 48px;
}

/* ============================================================
   Support Page
   ============================================================ */

.support-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 64px;
  background:
    radial-gradient(ellipse at top, rgba(0, 113, 227, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
  text-align: center;
}

.contact-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  transition: transform 0.3s var(--ease-smooth);
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color-accent), #4ea4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  color: white;
}

.contact-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.contact-card p {
  color: var(--color-text-secondary);
  font-size: 17px;
  margin-bottom: 24px;
}

.contact-email-btn {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-accent);
  padding: 14px 32px;
  background: rgba(0, 113, 227, 0.08);
  border-radius: 980px;
  transition: all 0.2s var(--ease-smooth);
}

.contact-email-btn:hover {
  background: rgba(0, 113, 227, 0.15);
  transform: translateY(-1px);
}

.contact-meta {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 20px;
}

/* Checklist (what to include) */
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.checklist-item {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--color-border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.checklist-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(52, 199, 89, 0.12);
  color: #34c759;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.checklist-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: var(--color-text);
}

.checklist-item span {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.45;
}

/* FAQ accordion */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 19px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary:hover {
  color: var(--color-accent);
}

.faq-item summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--color-text-secondary);
  transition: transform 0.3s var(--ease-smooth);
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 8px 24px;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.faq-item .faq-answer p {
  margin-bottom: 12px;
}

.faq-item .faq-answer p:last-child {
  margin-bottom: 0;
}

/* Game quick-link cards */
.support-games {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 700px) {
  .support-games { grid-template-columns: 1fr; }
  .contact-card { padding: 32px 24px; }
}

.support-game-card {
  display: block;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: white;
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
}

.support-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--color-accent);
}

.support-game-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.support-game-card p {
  color: var(--color-text-secondary);
  font-size: 15px;
  margin-bottom: 12px;
}

.support-game-card .arrow {
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 500;
}

/* Danger zone (data deletion) */
.danger-card {
  background: #fff5f5;
  border: 1px solid rgba(229, 57, 53, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
}

.danger-card h3 {
  color: #c62828;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.danger-card p {
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.danger-card strong { color: #c62828; }
