:root {
  --bg-primary: #0f0b1a;
  --bg-secondary: #1a1230;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --surface-border: rgba(255, 255, 255, 0.06);
  --accent-primary: #a855f7;
  --accent-secondary: #22d3ee;
  --accent-highlight: #facc15;
  --text-primary: #f5f3ff;
  --text-secondary: #c4b5fd;
  --text-muted: #8b7fad;
  --gradient-main: linear-gradient(135deg, #a855f7, #22d3ee);
  --gradient-warm: linear-gradient(135deg, #a855f7, #facc15);
  --gradient-surface: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(34, 211, 238, 0.05));
  --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(168, 85, 247, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-full: 9999px;
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --container-max: 1400px;
  --header-height: 80px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

*,
*::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);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.3;
}

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

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   PARTICLES
   ============================================ */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 11, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  transition: all var(--transition-normal);
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-main);
  opacity: 0.4;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

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

.logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-desktop {
  display: flex;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.header-cta {
  flex-shrink: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.45);
  color: #fff;
  filter: brightness(1.1);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  transform: translateY(-2px);
  border-color: rgba(168, 85, 247, 0.3);
  color: var(--text-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  background: var(--surface);
  color: var(--text-primary);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

.btn-sparkle {
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--bg-secondary);
  padding: 32px 24px;
  overflow-y: auto;
  animation: slideInRight 0.3s ease;
  border-left: 1px solid rgba(168, 85, 247, 0.2);
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.mobile-nav-links {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--text-primary);
  background: var(--surface);
}

.mobile-cta {
  margin-top: 24px;
  width: 100%;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-primary);
  top: -200px;
  right: -100px;
  animation: glowPulse 8s infinite ease-in-out;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-secondary);
  bottom: -150px;
  left: -100px;
  animation: glowPulse 10s infinite ease-in-out 2s;
}

.hero-glow-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-highlight);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  animation: glowPulse 12s infinite ease-in-out 4s;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.15); opacity: 0.35; }
}

.hero-smoke {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
}

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

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

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-surface);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-primary);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(250, 204, 21, 0.05);
  border: 1px solid rgba(250, 204, 21, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}

.disclaimer-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-disclaimer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual — Potion Bottles */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 400px;
}

.potion-bottle {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.potion-bottle-1 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.potion-bottle-2 {
  left: 15%;
  top: 55%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: floatBottle 6s infinite ease-in-out 1s;
}

.potion-bottle-3 {
  left: 85%;
  top: 55%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: floatBottle 7s infinite ease-in-out 2s;
}

.bottle-body {
  width: 80px;
  height: 120px;
  background: rgba(168, 85, 247, 0.1);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px 20px 40px 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.potion-bottle-1 .bottle-body {
  width: 100px;
  height: 150px;
}

.potion-bottle-2 .bottle-body {
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.1);
}

.potion-bottle-3 .bottle-body {
  border-color: rgba(250, 204, 21, 0.3);
  background: rgba(250, 204, 21, 0.1);
}

.bottle-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  border-radius: 0 0 38px 38px;
  animation: liquidWave 4s infinite ease-in-out;
}

.potion-bottle-1 .bottle-liquid {
  background: linear-gradient(to top, rgba(168, 85, 247, 0.6), rgba(168, 85, 247, 0.2));
}

.potion-bottle-2 .bottle-liquid {
  background: linear-gradient(to top, rgba(34, 211, 238, 0.6), rgba(34, 211, 238, 0.2));
  animation-delay: 1s;
}

.potion-bottle-3 .bottle-liquid {
  background: linear-gradient(to top, rgba(250, 204, 21, 0.6), rgba(250, 204, 21, 0.2));
  animation-delay: 2s;
}

.bottle-glow {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
  z-index: -1;
}

.potion-bottle-1 .bottle-glow {
  background: var(--accent-primary);
  opacity: 0.3;
  width: 150px;
  height: 150px;
  animation: glowPulse 4s infinite ease-in-out;
}

.potion-bottle-2 .bottle-glow {
  background: var(--accent-secondary);
  opacity: 0.25;
  animation: glowPulse 5s infinite ease-in-out 1s;
}

.potion-bottle-3 .bottle-glow {
  background: var(--accent-highlight);
  opacity: 0.25;
  animation: glowPulse 6s infinite ease-in-out 2s;
}

@keyframes liquidWave {
  0%, 100% { height: 55%; }
  50% { height: 65%; }
}

@keyframes floatBottle {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-15px); }
}

/* ============================================
   PAGE HERO (Subpages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  text-align: center;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero .hero-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.page-hero .hero-subtitle {
  margin: 0 auto;
  text-align: center;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--gradient-surface);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   GAME SECTION
   ============================================ */
.game-section {
  padding: 100px 0 120px;
  position: relative;
}

.game-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.game-glow {
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.15), rgba(34, 211, 238, 0.05), transparent 70%);
  border-radius: var(--radius-xl);
  z-index: -1;
  animation: ambientGlow 6s infinite ease-in-out;
}

@keyframes ambientGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.game-container {
  background: var(--surface);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-glow-strong), var(--shadow-card);
  transition: transform var(--transition-slow);
  position: relative;
}

.game-container:hover {
  transform: scale(1.005);
}

.game-iframe {
  display: block;
  width: 100%;
  height: 750px;
  border: none;
  background: var(--bg-secondary);
}

.game-disclaimer {
  text-align: center;
  margin-top: 24px;
}

.game-disclaimer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 12px 24px;
  background: var(--surface);
  border-radius: var(--radius-full);
  display: inline-block;
  border: 1px solid var(--surface-border);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 100px 0;
  position: relative;
}

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

.feature-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--surface-hover);
  border-color: rgba(168, 85, 247, 0.2);
  box-shadow: var(--shadow-glow);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-surface);
  border-radius: var(--radius-md);
  font-size: 1.8rem;
  margin-bottom: 20px;
  border: 1px solid rgba(168, 85, 247, 0.15);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section {
  padding: 100px 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.experience-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.experience-item:hover {
  background: var(--surface-hover);
  border-color: rgba(168, 85, 247, 0.2);
}

.exp-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Experience Visual */
.exp-card-stack {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-float-card {
  position: absolute;
  padding: 20px 28px;
  background: var(--surface);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}

.exp-float-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.exp-float-icon {
  font-size: 2rem;
}

.exp-float-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.exp-float-card-1 {
  top: 40px;
  left: 20px;
  animation: floatCard 6s infinite ease-in-out;
}

.exp-float-card-2 {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  animation: floatCard 7s infinite ease-in-out 1.5s;
}

.exp-float-card-3 {
  bottom: 40px;
  left: 60px;
  animation: floatCard 8s infinite ease-in-out 3s;
}

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

.exp-glow-orb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent 70%);
  filter: blur(40px);
  animation: glowPulse 5s infinite ease-in-out;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
}

.cta-card {
  position: relative;
  text-align: center;
  padding: 80px 60px;
  background: var(--gradient-surface);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.cta-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--surface);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-legal {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ============================================
   CONTENT SECTIONS (Subpages)
   ============================================ */
.content-section {
  padding: 80px 0 120px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: flex-start;
}

.content-main h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

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

.content-main h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.content-main p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.styled-list {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.styled-list li {
  padding: 10px 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--surface-border);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.content-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Sidebar */
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.sidebar-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sidebar-card p:last-child {
  margin-bottom: 0;
}

.sidebar-facts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-facts li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--surface-border);
}

.sidebar-facts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Legal pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 10px 20px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 32px;
  border: 1px solid var(--surface-border);
}

.legal-nav {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* Glass Card */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
}

.glass-card h2 {
  font-size: 1.5rem;
  margin-bottom: 28px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: flex-start;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c4b5fd' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--accent-primary);
}

.form-success {
  text-align: center;
  padding: 40px;
}

.success-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-secondary);
}

.contact-link {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-secondary);
  margin-top: 4px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-mini li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--surface-border);
}

.faq-mini li:last-child {
  border-bottom: none;
}

/* ============================================
   RESPONSIBLE GAMING
   ============================================ */
.rg-highlight-box {
  display: flex;
  gap: 16px;
  padding: 28px;
  background: rgba(168, 85, 247, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  align-items: flex-start;
}

.rg-highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.rg-highlight-box h2,
.rg-highlight-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.rg-highlight-box p {
  margin-bottom: 0;
}

.rg-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 28px 0 40px;
}

.rg-tip-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all var(--transition-fast);
}

.rg-tip-card:hover {
  border-color: rgba(168, 85, 247, 0.2);
  background: var(--surface-hover);
}

.rg-tip-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 12px;
}

.rg-tip-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 8px;
}

.rg-tip-card p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.rg-resources {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0 32px;
}

.rg-resource-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.rg-resource-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.rg-resource-card p {
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.rg-sidebar-highlight {
  border-color: rgba(168, 85, 247, 0.25);
  background: rgba(168, 85, 247, 0.05);
}

/* ============================================
   RULES PAGE
   ============================================ */
.rules-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 40px;
}

.rule-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
}

.step-number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.step-content h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.step-content p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

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

.symbol-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition-fast);
}

.symbol-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.2);
  box-shadow: var(--shadow-glow);
}

.symbol-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.symbol-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 8px;
  margin-top: 0;
}

.symbol-card p {
  font-size: 0.82rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(168, 85, 247, 0.1);
  padding-top: 80px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--accent-highlight);
}

.age-icon {
  font-weight: 800;
  font-size: 0.9rem;
  background: rgba(250, 204, 21, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  text-decoration: none;
}

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

.footer-disclaimer {
  margin-bottom: 32px;
}

.disclaimer-box {
  padding: 24px 28px;
  background: rgba(250, 204, 21, 0.03);
  border: 1px solid rgba(250, 204, 21, 0.1);
  border-radius: var(--radius-md);
}

.disclaimer-box h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--accent-highlight);
  margin-bottom: 10px;
}

.disclaimer-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.disclaimer-box a {
  color: var(--accent-secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--surface-border);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--accent-primary);
}

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}