/* PlayVibez - Alpine Festival Social Platform */
/* Swiss Alpine Electronic Festival Theme */

:root {
  --deep-alpine-blue: #0a1628;
  --alpine-blue-mid: #132244;
  --electric-violet: #8b5cf6;
  --snow-white: #f8fafc;
  --warm-orange: #f97316;
  --festival-pink: #ec4899;
  --dark-graphite: #1a1a2e;
  --glass-border: rgba(139, 92, 246, 0.3);
  --glow-violet: rgba(139, 92, 246, 0.5);
  --glow-orange: rgba(249, 115, 22, 0.5);
  --glow-pink: rgba(236, 72, 153, 0.4);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --card-bg: rgba(19, 34, 68, 0.7);
  --card-border: rgba(139, 92, 246, 0.2);
  --success: #22c55e;
  --danger: #ef4444;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--deep-alpine-blue);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }

a {
  color: var(--electric-violet);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--warm-orange);
}

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--electric-violet), var(--festival-pink), var(--warm-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--electric-violet), var(--warm-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--snow-white);
}

.badge-18 {
  background: var(--danger);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--snow-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--deep-alpine-blue) 0%, var(--alpine-blue-mid) 50%, var(--dark-graphite) 100%);
}

.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  opacity: 0.3;
}

.hero-fog {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0deg, rgba(139, 92, 246, 0.1), transparent);
  animation: fogMove 8s ease-in-out infinite;
}

@keyframes fogMove {
  0%, 100% { transform: translateX(-5%); opacity: 0.5; }
  50% { transform: translateX(5%); opacity: 0.8; }
}

.hero-lights {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60%;
  background: radial-gradient(ellipse at 30% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 30%, rgba(249, 115, 22, 0.1) 0%, transparent 40%),
              radial-gradient(ellipse at 50% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 40%);
  animation: lightsMove 6s ease-in-out infinite;
}

@keyframes lightsMove {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--electric-violet), var(--festival-pink));
  color: white;
  box-shadow: 0 4px 20px var(--glow-violet);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--glow-violet);
  color: white;
}

.btn-secondary {
  background: rgba(139, 92, 246, 0.1);
  color: var(--electric-violet);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.2);
  color: var(--electric-violet);
}

.btn-spin {
  background: linear-gradient(135deg, var(--warm-orange), var(--festival-pink));
  color: white;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 4px 20px var(--glow-orange);
}

.btn-spin:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px var(--glow-orange);
}

.btn-game {
  background: linear-gradient(135deg, var(--electric-violet), #6d28d9);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  box-shadow: 0 2px 12px var(--glow-violet);
}

.btn-game:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--glow-violet);
}

/* ========== GAME ARENA ========== */
.game-arena {
  padding: 5rem 0;
  position: relative;
}

.game-arena-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.game-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.game-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-violet), var(--festival-pink), var(--warm-orange));
}

.game-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.game-panel-title {
  font-size: 1.3rem;
  font-weight: 700;
}

.game-badge {
  background: rgba(139, 92, 246, 0.2);
  color: var(--electric-violet);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--glass-border);
}

/* Card Game */
.card-game-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.card-table {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.game-card {
  width: 100px;
  height: 140px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  position: relative;
}

.game-card-front {
  background: linear-gradient(135deg, #1e293b, #334155);
  border: 2px solid var(--glass-border);
  color: var(--snow-white);
}

.game-card-back {
  background: linear-gradient(135deg, var(--electric-violet), var(--festival-pink));
  border: 2px solid var(--festival-pink);
}

.game-card-back .card-pattern {
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.5);
}

/* Card Flip Animation */
.card-flip-container {
  width: 100px;
  height: 140px;
  perspective: 800px;
}

.card-flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.card-flip-inner.flipped {
  transform: rotateY(180deg);
}

.card-flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.card-flip-back-face {
  transform: rotateY(0deg);
}

.card-flip-front-face {
  transform: rotateY(180deg);
}

.card-suit {
  font-size: 0.9rem;
  position: absolute;
  top: 8px;
  left: 10px;
}

.card-suit-bottom {
  font-size: 0.9rem;
  position: absolute;
  bottom: 8px;
  right: 10px;
  transform: rotate(180deg);
}

.card-value {
  font-size: 2.2rem;
}

.card-vs {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--warm-orange);
  text-shadow: 0 0 10px var(--glow-orange);
}

.card-controls {
  display: flex;
  gap: 1rem;
}

.btn-higher {
  background: linear-gradient(135deg, var(--success), #16a34a);
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-higher:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(34,197,94,0.4); }

.btn-lower {
  background: linear-gradient(135deg, var(--danger), #dc2626);
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-lower:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(239,68,68,0.4); }

.card-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

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

.card-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--warm-orange);
}

.card-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-history {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.card-history-item {
  width: 36px;
  height: 50px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid var(--card-border);
  background: rgba(30, 41, 59, 0.8);
}

.card-history-item.win { border-color: var(--success); color: var(--success); }
.card-history-item.loss { border-color: var(--danger); color: var(--danger); }

.card-result-banner {
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-result-banner.win {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.card-result-banner.loss {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.combo-meter {
  width: 100%;
  max-width: 200px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.combo-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--electric-violet), var(--warm-orange));
  border-radius: 3px;
  transition: width 0.5s;
}

/* Reel Machine */
.reel-machine-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.reel-frame {
  background: linear-gradient(180deg, #0f172a, #1e293b);
  border: 2px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

.reel-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--electric-violet), var(--festival-pink), var(--warm-orange));
  z-index: -1;
  opacity: 0.5;
}

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

.reel-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0,0,0,0.4);
  padding: 6px;
}

.reel-cell {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.15);
  transition: all 0.3s;
}

.reel-cell svg {
  width: 36px;
  height: 36px;
}

.reel-cell.winning {
  border-color: var(--warm-orange);
  box-shadow: 0 0 15px var(--glow-orange);
  animation: cellPulse 0.5s ease-in-out 3;
}

@keyframes cellPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.reel-spinning .reel-cell {
  animation: spinCell 0.1s linear infinite;
}

@keyframes spinCell {
  0% { transform: translateY(-100%); opacity: 0.5; }
  100% { transform: translateY(0); opacity: 1; }
}

.reel-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-auto {
  background: rgba(139, 92, 246, 0.15);
  color: var(--electric-violet);
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.btn-auto:hover { background: rgba(139, 92, 246, 0.25); }
.btn-auto.active { background: var(--electric-violet); color: white; }

.reel-stats {
  display: flex;
  gap: 1.5rem;
}

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

.reel-stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--festival-pink);
}

.reel-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reel-history {
  width: 100%;
  max-height: 120px;
  overflow-y: auto;
  margin-top: 0.5rem;
}

.reel-history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  margin-bottom: 4px;
  background: rgba(30, 41, 59, 0.4);
}

.reel-history-item.win {
  border-left: 3px solid var(--success);
}

.reel-history-item.loss {
  border-left: 3px solid var(--text-muted);
}

.reel-win-banner {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(236, 72, 153, 0.15));
  border: 1px solid var(--warm-orange);
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  text-align: center;
  font-weight: 700;
  color: var(--warm-orange);
  animation: bannerGlow 2s ease-in-out infinite;
}

@keyframes bannerGlow {
  0%, 100% { box-shadow: 0 0 10px var(--glow-orange); }
  50% { box-shadow: 0 0 25px var(--glow-orange); }
}

/* ========== STATISTICS ========== */
.stats-section {
  padding: 5rem 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--electric-violet), var(--festival-pink));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--snow-white);
  font-family: 'Courier New', monospace;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* LED Counter Animation */
.led-counter {
  display: inline-block;
  animation: ledPulse 2s ease-in-out infinite;
}

@keyframes ledPulse {
  0%, 100% { text-shadow: 0 0 5px var(--glow-violet); }
  50% { text-shadow: 0 0 15px var(--glow-violet), 0 0 30px var(--glow-violet); }
}

/* ========== MOUNTAIN ROUTE TIMELINE ========== */
.timeline-section {
  padding: 5rem 0;
}

.timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-violet), var(--festival-pink), var(--warm-orange));
  transform: translateY(-50%);
  opacity: 0.4;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
}

.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-violet), var(--festival-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px var(--glow-violet);
}

.timeline-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  max-width: 120px;
}

/* ========== REWARDS ========== */
.rewards-section {
  padding: 5rem 0;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
}

.reward-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: transform 0.3s, border-color 0.3s;
}

.reward-card:hover {
  transform: translateY(-3px);
  border-color: var(--electric-violet);
}

.reward-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.reward-content h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.reward-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== COMMUNITY FEED ========== */
.community-section {
  padding: 5rem 0;
}

.feed-list {
  max-width: 700px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feed-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.3s;
}

.feed-item:hover {
  border-color: var(--electric-violet);
}

.feed-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-violet), var(--festival-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 40px;
}

.feed-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feed-text strong {
  color: var(--snow-white);
}

.feed-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ========== FAQ ========== */
.faq-section {
  padding: 5rem 0;
}

.faq-list {
  max-width: 750px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--electric-violet);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--snow-white);
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--electric-violet);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, padding 0.3s;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

/* ========== VIP BANNER ========== */
.vip-banner {
  padding: 3rem 0;
}

.vip-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vip-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  animation: vipGlow 4s ease-in-out infinite;
}

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

.vip-card h2 {
  position: relative;
  margin-bottom: 1rem;
}

.vip-card p {
  position: relative;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.vip-card .btn {
  position: relative;
}

/* ========== FOOTER ========== */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--card-border);
  background: rgba(10, 22, 40, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

.footer-brand h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, var(--electric-violet), var(--warm-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--snow-white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid var(--card-border);
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-badge-18 {
  background: var(--danger);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

/* ========== WAVEFORM SEPARATOR ========== */
.waveform-separator {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  opacity: 0.4;
}

.waveform-bar {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--electric-violet), var(--festival-pink));
  animation: waveBar 1.2s ease-in-out infinite;
}

.waveform-bar:nth-child(1) { height: 10px; animation-delay: 0s; }
.waveform-bar:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.waveform-bar:nth-child(3) { height: 30px; animation-delay: 0.2s; }
.waveform-bar:nth-child(4) { height: 15px; animation-delay: 0.3s; }
.waveform-bar:nth-child(5) { height: 25px; animation-delay: 0.4s; }
.waveform-bar:nth-child(6) { height: 35px; animation-delay: 0.5s; }
.waveform-bar:nth-child(7) { height: 18px; animation-delay: 0.6s; }
.waveform-bar:nth-child(8) { height: 28px; animation-delay: 0.7s; }
.waveform-bar:nth-child(9) { height: 12px; animation-delay: 0.8s; }
.waveform-bar:nth-child(10) { height: 22px; animation-delay: 0.9s; }

@keyframes waveBar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.8); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .game-arena-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    padding: 1.5rem;
    border-bottom: 1px solid var(--card-border);
  }
  .nav-mobile-toggle { display: block; }

  .hero-content h1 { font-size: 2rem; }

  .card-table { gap: 1rem; padding: 1rem; }
  .game-card { width: 80px; height: 112px; }
  .card-value { font-size: 1.8rem; }

  .reel-cell { width: 50px; height: 50px; }
  .reel-cell svg { width: 28px; height: 28px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .timeline {
    flex-direction: column;
    gap: 1.5rem;
  }
  .timeline::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
  }

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

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

  .hero-cta { flex-direction: column; align-items: center; }

  .card-controls { flex-direction: row; }

  .reel-controls { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .game-panel { padding: 1.2rem; }
  .reel-cell { width: 42px; height: 42px; }
  .reel-cell svg { width: 24px; height: 24px; }
  .stat-number { font-size: 1.5rem; }
  .vip-card { padding: 2rem 1.5rem; }
}

/* ========== PAGE STYLES ========== */
.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--deep-alpine-blue), var(--alpine-blue-mid));
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.page-content h2 {
  color: var(--snow-white);
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
}

.page-content h3 {
  color: var(--snow-white);
  margin: 1.5rem 0 0.8rem;
  font-size: 1.1rem;
}

.page-content p {
  margin-bottom: 1rem;
}

.page-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-content ul li {
  margin-bottom: 0.5rem;
}

.page-content a {
  color: var(--electric-violet);
}

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

::-webkit-scrollbar-track {
  background: var(--deep-alpine-blue);
}

::-webkit-scrollbar-thumb {
  background: var(--electric-violet);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--festival-pink);
}
