/* ============================================================
   NEON GRADIENT / VAPORWAVE - Tower Rush Gaming Site
   Aesthetic: Deep purples, hot pinks, electric blues, neon glows
   ============================================================ */

/* ----- @font-face: Self-hosted (NO Google Fonts) ----- */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Orbitron';
  src: url('fonts/Orbitron-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Orbitron';
  src: url('fonts/Orbitron-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Orbitron';
  src: url('fonts/Orbitron-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ----- CSS Variables ----- */
:root {
  --bg-primary: #0d0221;
  --bg-secondary: #150535;
  --bg-card: rgba(20, 5, 50, 0.6);
  --primary: #ff006e;
  --secondary: #8338ec;
  --accent: #3a86ff;
  --accent2: #fb5607;
  --text: #f0e6ff;
  --text-muted: #b8a9c9;
  --border-gradient: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
  --glow-pink: 0 0 20px rgba(255, 0, 110, 0.5);
  --glow-purple: 0 0 20px rgba(131, 56, 236, 0.5);
  --glow-blue: 0 0 20px rgba(58, 134, 255, 0.5);
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Orbitron', 'Inter', system-ui, sans-serif;
  --container-max: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Keyframes ----- */
@keyframes neon-border-rotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradient-shift {
  0%   { background-position: 0% 0%; }
  25%  { background-position: 50% 100%; }
  50%  { background-position: 100% 50%; }
  75%  { background-position: 50% 0%; }
  100% { background-position: 0% 0%; }
}

@keyframes neon-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(255, 0, 110, 0.3), 0 0 24px rgba(131, 56, 236, 0.15); }
  50%      { box-shadow: 0 0 18px rgba(255, 0, 110, 0.6), 0 0 48px rgba(131, 56, 236, 0.35), 0 0 72px rgba(58, 134, 255, 0.15); }
}

@keyframes sparkle-fade {
  0%   { opacity: 1; transform: scale(1) translateY(0); }
  100% { opacity: 0; transform: scale(0.2) translateY(-40px); }
}

@keyframes text-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float-up {
  0%   { transform: translateY(0) scale(1); opacity: 0.7; }
  100% { transform: translateY(-120px) scale(0.3); opacity: 0; }
}

@keyframes hero-glow {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

/* ----- Global Reset & Base ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Animated gradient mesh background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(131, 56, 236, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(255, 0, 110, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(58, 134, 255, 0.08) 0%, transparent 65%),
    var(--bg-primary);
  background-size: 200% 200%;
  animation: gradient-shift 20s ease infinite;
}

/* Subtle grid overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(131, 56, 236, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 56, 236, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

/* ----- Container ----- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ----- Section base ----- */
section {
  padding: 80px 0;
  position: relative;
}

/* Rainbow neon line separator between sections */
section + section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 900px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--accent), var(--accent2), var(--primary), transparent);
  background-size: 300% 100%;
  animation: neon-border-rotate 4s linear infinite;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 0, 110, 0.3), 0 0 24px rgba(131, 56, 236, 0.15);
}

/* ============================================================
   HEADER
   ============================================================ */
.header-top-bar {
  background: linear-gradient(135deg, rgba(13, 2, 33, 0.95), rgba(21, 5, 53, 0.95));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(131, 56, 236, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 24px;
}

.header-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 16px rgba(255, 0, 110, 0.35);
  transition: box-shadow var(--transition), transform var(--transition);
}

.logo:hover .logo-icon {
  box-shadow: 0 0 28px rgba(255, 0, 110, 0.6), 0 0 48px rgba(131, 56, 236, 0.3);
  transform: scale(1.08);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-gradient 4s ease infinite;
}

/* Language Selector */
.lang-selector {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-btn {
  padding: 6px 14px;
  border: 1px solid rgba(131, 56, 236, 0.3);
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.lang-btn:hover {
  border-color: var(--secondary);
  color: var(--text);
  background: rgba(131, 56, 236, 0.12);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 14px rgba(255, 0, 110, 0.3);
  pointer-events: none;
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(255, 0, 110, 0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(255, 0, 110, 0.5), 0 0 48px rgba(131, 56, 236, 0.25);
  color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Animated glow orbs behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.12) 0%, transparent 65%);
  filter: blur(60px);
  animation: hero-glow 6s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -5%;
  right: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(58, 134, 255, 0.1) 0%, transparent 60%);
  filter: blur(50px);
  animation: hero-glow 8s ease-in-out infinite 2s;
  pointer-events: none;
}

.hero-content,
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 580px;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, var(--primary), var(--secondary), var(--accent));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-gradient 6s ease infinite;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}

.hero-game,
.hero-iframe {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 16 / 10;
  width: 100%;
}

/* Neon border around iframe */
.hero-game::before,
.hero-iframe::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent), var(--accent2), var(--primary));
  background-size: 400% 400%;
  animation: neon-border-rotate 4s linear infinite;
  z-index: -1;
}

.hero-game iframe,
.hero-iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
  display: block;
}

/* ============================================================
   CTA BUTTONS
   ============================================================ */
.cta-button,
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 12px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 24px rgba(255, 0, 110, 0.35), 0 0 48px rgba(255, 0, 110, 0.1);
  animation: neon-pulse 3s ease-in-out infinite;
}

.cta-button::before,
.cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.cta-button:hover,
.cta-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 36px rgba(255, 0, 110, 0.5), 0 0 64px rgba(131, 56, 236, 0.3);
  color: #fff;
}

.cta-button:hover::before,
.cta-primary:hover::before {
  opacity: 1;
}

.cta-button span,
.cta-primary span {
  position: relative;
  z-index: 1;
}

.cta-button:active,
.cta-primary:active {
  transform: translateY(-1px) scale(1.01);
}

/* ============================================================
   SECTION TITLES & TEXT
   ============================================================ */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text), var(--primary), var(--secondary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-gradient 5s ease infinite;
}

.highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.section-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.section-text:last-child {
  margin-bottom: 0;
}

/* ============================================================
   NEON CARDS (main card system)
   ============================================================ */
.neon-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(131, 56, 236, 0.15);
  transition: all var(--transition);
  overflow: hidden;
}

/* Animated gradient border */
.neon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  background-size: 300% 300%;
  animation: neon-border-rotate 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  transition: opacity var(--transition);
  pointer-events: none;
}

.neon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 0, 110, 0.15), 0 0 60px rgba(131, 56, 236, 0.1);
}

.neon-card:hover::before {
  opacity: 1;
}

.neon-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.neon-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(131, 56, 236, 0.12);
  transition: all var(--transition);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  background-size: 300% 300%;
  animation: neon-border-rotate 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 0, 110, 0.12), 0 0 40px rgba(131, 56, 236, 0.08);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card .icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   CHARACTER / CHAR CARDS
   ============================================================ */
.char-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(131, 56, 236, 0.12);
  transition: all var(--transition);
  overflow: hidden;
}

.char-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  background-size: 200% 100%;
  animation: neon-border-rotate 3s linear infinite;
  opacity: 0;
  transition: opacity var(--transition);
}

.char-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 36px rgba(255, 0, 110, 0.12);
}

.char-card:hover::after {
  opacity: 1;
}

.char-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.char-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ============================================================
   SCENARIO / DECISION / STEP CARDS
   ============================================================ */
.scenario-card,
.decision-card,
.step-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(131, 56, 236, 0.12);
  transition: all var(--transition);
}

.scenario-card::before,
.decision-card::before,
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  border-radius: 2px;
  opacity: 0.5;
}

.scenario-card:hover,
.decision-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(131, 56, 236, 0.3);
  box-shadow: 0 8px 32px rgba(131, 56, 236, 0.1);
}

.scenario-card h3,
.decision-card h3,
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.scenario-card p,
.decision-card p,
.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Step number badge */
.step-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
  box-shadow: 0 0 16px rgba(255, 0, 110, 0.3);
}

/* ============================================================
   TABLES
   ============================================================ */
.info-table,
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin: 24px 0;
  border: 1px solid rgba(131, 56, 236, 0.15);
}

.info-table th,
.comparison-table th {
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.12), rgba(131, 56, 236, 0.12));
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 20px;
  text-align: left;
  color: var(--text);
  border-bottom: 1px solid rgba(131, 56, 236, 0.2);
}

.info-table td,
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(131, 56, 236, 0.08);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-table tr:last-child td,
.comparison-table tr:last-child td {
  border-bottom: none;
}

.info-table tr:hover td,
.comparison-table tr:hover td {
  background: rgba(131, 56, 236, 0.05);
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.review-card,
.testimonial-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(131, 56, 236, 0.12);
  transition: all var(--transition);
}

.review-card::before,
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  font-family: Georgia, serif;
  pointer-events: none;
}

.review-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255, 0, 110, 0.1);
  border-color: rgba(131, 56, 236, 0.25);
}

.review-card .stars,
.testimonial-card .stars {
  color: var(--accent2);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card .author,
.testimonial-card .author {
  font-weight: 600;
  color: var(--text);
  margin-top: 14px;
  font-size: 0.9rem;
}

.review-card p,
.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid rgba(131, 56, 236, 0.1);
  overflow: hidden;
  transition: border-color var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.faq-item:hover {
  border-color: rgba(131, 56, 236, 0.25);
}

.faq-item.active {
  border-color: rgba(255, 0, 110, 0.3);
  box-shadow: 0 4px 20px rgba(255, 0, 110, 0.08);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: color var(--transition);
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--secondary);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question::after {
  content: '-';
  color: var(--primary);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   IMAGES
   ============================================================ */
.content-image,
.section-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin: 24px 0;
}

.content-image img,
.section-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition);
}

.content-image:hover img,
.section-image:hover img {
  transform: scale(1.03);
}

/* Neon frame effect */
.content-image::before,
.section-image::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  background-size: 200% 200%;
  animation: neon-border-rotate 5s linear infinite;
  z-index: -1;
}

/* ============================================================
   ALERT BOX
   ============================================================ */
.alert-box {
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.08), rgba(131, 56, 236, 0.08));
  border: 1px solid rgba(255, 0, 110, 0.2);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.alert-box strong {
  color: var(--primary);
}

/* ============================================================
   VERDICT CARD
   ============================================================ */
.verdict-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.06), rgba(131, 56, 236, 0.06), rgba(58, 134, 255, 0.06));
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(131, 56, 236, 0.2);
  overflow: hidden;
}

.verdict-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent), var(--accent2), var(--primary));
  background-size: 400% 400%;
  animation: neon-border-rotate 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.verdict-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.verdict-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   RATING BADGE
   ============================================================ */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(255, 0, 110, 0.3);
  animation: neon-pulse 3s ease-in-out infinite;
}

.rating-badge .score {
  font-size: 1.4rem;
}

/* ============================================================
   NEON SPARKLE (particle effects for JS)
   ============================================================ */
.neon-sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: sparkle-fade 0.8s ease-out forwards;
}

.neon-sparkle::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: inherit;
  filter: blur(4px);
  opacity: 0.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--bg-secondary), rgba(8, 1, 16, 0.98));
  padding: 60px 0 30px;
  position: relative;
  border-top: 1px solid rgba(131, 56, 236, 0.15);
}

/* Neon line at top of footer */
.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--accent), transparent);
  background-size: 200% 100%;
  animation: neon-border-rotate 3s linear infinite;
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-content a {
  color: var(--secondary);
  transition: color var(--transition);
}

.footer-content a:hover {
  color: var(--primary);
}

.responsible-gaming {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(131, 56, 236, 0.1);
}

.responsible-gaming p {
  font-size: 0.8rem;
  color: rgba(184, 169, 201, 0.6);
  line-height: 1.7;
}

.responsible-gaming .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 12px auto;
  box-shadow: 0 0 12px rgba(255, 0, 110, 0.2);
}

/* ============================================================
   UTILITY GRIDS
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--secondary), var(--accent));
}

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: rgba(255, 0, 110, 0.3);
  color: #fff;
}

::-moz-selection {
  background: rgba(255, 0, 110, 0.3);
  color: #fff;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablet landscape */
@media (max-width: 1024px) {
  .hero-content,
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }

  .hero-game,
  .hero-iframe {
    max-width: 640px;
    margin: 0 auto;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  section {
    padding: 64px 0;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  :root {
    --radius: 12px;
    --radius-sm: 8px;
  }

  .header-content {
    flex-wrap: wrap;
    gap: 12px;
  }

  .header-cta {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 70px 0 50px;
    min-height: auto;
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-button,
  .cta-primary {
    padding: 14px 28px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .neon-card {
    padding: 24px;
  }

  .verdict-card {
    padding: 28px 20px;
  }

  .info-table,
  .comparison-table {
    font-size: 0.85rem;
  }

  .info-table th,
  .comparison-table th {
    padding: 12px 14px;
    font-size: 0.75rem;
  }

  .info-table td,
  .comparison-table td {
    padding: 10px 14px;
  }

  section {
    padding: 48px 0;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header-top-bar {
    padding: 0 12px;
  }

  .header-content {
    padding: 10px 0;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .lang-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  .hero-text h1 {
    font-size: 1.7rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .section-intro {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }

  .feature-card {
    padding: 24px 18px;
  }

  .feature-card .icon {
    font-size: 2.2rem;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.85rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 16px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .alert-box {
    padding: 16px 18px;
    font-size: 0.9rem;
  }

  .hero-game,
  .hero-iframe {
    aspect-ratio: 4 / 3;
  }

  /* Table scroll on mobile */
  .info-table,
  .comparison-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Small mobile */
@media (max-width: 360px) {
  .hero-text h1 {
    font-size: 1.45rem;
  }

  .logo-text {
    font-size: 0.85rem;
  }

  .header-cta {
    display: none;
  }

  .section-title {
    font-size: 1.3rem;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body::before {
    animation: none;
  }

  .neon-card:hover,
  .feature-card:hover,
  .char-card:hover,
  .review-card:hover,
  .testimonial-card:hover {
    transform: none;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  body {
    background: #fff;
    color: #000;
  }

  body::before,
  body::after {
    display: none;
  }

  .header-top-bar,
  .header-cta,
  .lang-selector,
  .hero-game,
  .hero-iframe,
  .cta-button,
  .cta-primary,
  .neon-sparkle {
    display: none !important;
  }

  .neon-card,
  .feature-card,
  .char-card,
  .review-card,
  .testimonial-card,
  .verdict-card,
  .scenario-card,
  .decision-card,
  .step-card {
    background: #f5f5f5;
    border: 1px solid #ddd;
    box-shadow: none;
    backdrop-filter: none;
  }

  .neon-card::before,
  .feature-card::before,
  .verdict-card::before,
  .content-image::before,
  .section-image::before {
    display: none;
  }

  .section-title,
  .highlight,
  .logo-text,
  .hero-text h1 {
    -webkit-text-fill-color: #000;
    background: none;
    color: #000;
  }

  section + section::before {
    display: none;
  }
}
