/* ============================================
   SLIDEARENAFORGE — CANDY GAMING THEME
   Premium Social Casino Stylesheet
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Backgrounds */
  --bg-deep: #0a0a0f;
  --bg-soft: #12121a;
  --bg-card: #16162a;
  --candy-glass: rgba(255, 255, 255, 0.06);
  --candy-glass-hover: rgba(255, 255, 255, 0.1);
  --candy-glass-border: rgba(255, 255, 255, 0.08);

  /* Candy Neon Colors */
  --candy-pink: #ff4da6;
  --candy-purple: #a855f7;
  --candy-orange: #ff7a18;
  --candy-yellow: #ffd60a;
  --candy-mint: #00f5d4;

  /* Gradients */
  --grad-sweet: linear-gradient(135deg, #ff4da6, #a855f7);
  --grad-candy: linear-gradient(135deg, #ff7a18, #ffd60a);
  --grad-neon: linear-gradient(135deg, #00f5d4, #ff4da6);

  /* Typography */
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --text-muted: #6b6b8a;

  /* Sidebar */
  --sidebar-width: 76px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-round: 50px;

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

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, li {
  list-style: none;
}

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

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--candy-pink), var(--candy-purple));
  border-radius: 10px;
}

/* ---------- SELECTION ---------- */
::selection {
  background: var(--candy-pink);
  color: #fff;
}

/* ============================================
   SIDEBAR NAVIGATION
   ============================================ */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: rgba(12, 12, 20, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-right: 1px solid var(--candy-glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s var(--ease-smooth);
}

.sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--candy-pink), var(--candy-purple), transparent);
  opacity: 0.3;
}

.sidebar-logo {
  margin-bottom: 30px;
}

.logo-icon {
  font-size: 28px;
  display: block;
  animation: candySpin 4s ease-in-out infinite;
}

@keyframes candySpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(5deg) scale(1.1); }
  50% { transform: rotate(0deg) scale(1); }
  75% { transform: rotate(-5deg) scale(1.1); }
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.sidebar-item {
  position: relative;
}

.sidebar-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.sidebar-item a svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 2;
  transition: all 0.3s var(--ease-smooth);
}

.sidebar-item a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: var(--grad-sweet);
  opacity: 0;
  transition: opacity 0.3s var(--ease-smooth);
}

.sidebar-item a:hover {
  color: var(--text-primary);
  transform: scale(1.08);
}

.sidebar-item a:hover::before {
  opacity: 0.15;
}

.sidebar-item a:hover svg {
  filter: drop-shadow(0 0 6px var(--candy-pink));
}

.sidebar-item.active a {
  color: var(--text-primary);
  background: rgba(255, 77, 166, 0.12);
}

.sidebar-item.active a::after {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 22px;
  background: var(--grad-sweet);
  border-radius: 0 3px 3px 0;
}

/* Tooltip */
.sidebar-item[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(-5px);
  background: var(--bg-card);
  border: 1px solid var(--candy-glass-border);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s var(--ease-smooth);
  z-index: 100;
  backdrop-filter: blur(10px);
}

.sidebar-item[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.sidebar-bottom {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--candy-glass-border);
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.mobile-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(12, 12, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--candy-glass-border);
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1001;
}

.mobile-brand {
  font-size: 18px;
  font-weight: 700;
  background: var(--grad-sweet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-smooth);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  gap: 8px;
}

.mobile-nav-list li a {
  display: block;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-smooth);
  color: var(--text-secondary);
}

.mobile-nav-list li a:hover {
  background: rgba(255, 77, 166, 0.1);
  color: var(--text-primary);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* Gradient Orbs */
.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--candy-pink);
  top: -10%;
  right: -5%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--candy-purple);
  bottom: -10%;
  left: -5%;
  animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--candy-mint);
  top: 40%;
  left: 40%;
  animation: orbFloat3 10s ease-in-out infinite;
  opacity: 0.15;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.1); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.15); }
}

/* Candy Particles */
.candy-particle {
  position: absolute;
  font-size: 24px;
  opacity: 0.35;
  animation: candyFloat 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.candy-particle-1 { top: 10%; left: 15%; animation-delay: 0s; animation-duration: 9s; }
.candy-particle-2 { top: 20%; right: 10%; animation-delay: 1s; animation-duration: 11s; }
.candy-particle-3 { top: 60%; left: 8%; animation-delay: 2s; animation-duration: 8s; }
.candy-particle-4 { top: 75%; right: 20%; animation-delay: 0.5s; animation-duration: 10s; }
.candy-particle-5 { top: 40%; right: 30%; animation-delay: 3s; animation-duration: 12s; }
.candy-particle-6 { bottom: 15%; left: 25%; animation-delay: 1.5s; animation-duration: 9s; }
.candy-particle-7 { top: 15%; left: 55%; animation-delay: 2.5s; animation-duration: 10s; }
.candy-particle-8 { bottom: 30%; right: 40%; animation-delay: 4s; animation-duration: 11s; }
.candy-particle-9 { top: 50%; left: 35%; animation-delay: 0.8s; animation-duration: 13s; font-size: 18px; }
.candy-particle-10 { top: 30%; right: 50%; animation-delay: 3.5s; animation-duration: 9s; font-size: 20px; }
.candy-particle-11 { bottom: 10%; right: 15%; animation-delay: 1.2s; animation-duration: 10s; }
.candy-particle-12 { top: 85%; left: 50%; animation-delay: 2.2s; animation-duration: 8s; }

@keyframes candyFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-25px) rotate(10deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-30px) rotate(8deg);
  }
}

/* Candy Shapes */
.candy-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.candy-shape-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 77, 166, 0.15);
  top: 25%;
  right: 15%;
  animation: shapeRotate 20s linear infinite;
}

.candy-shape-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(168, 85, 247, 0.1);
  bottom: 20%;
  left: 20%;
  animation: shapeRotate 25s linear infinite reverse;
}

.candy-shape-diamond {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(0, 245, 212, 0.1);
  top: 50%;
  left: 60%;
  transform: rotate(45deg);
  animation: shapeFloat 8s ease-in-out infinite;
}

@keyframes shapeRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shapeFloat {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-20px); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--candy-glass);
  border: 1px solid var(--candy-glass-border);
  border-radius: var(--radius-round);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--candy-mint);
  animation: dotPulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

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

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

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

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 620px;
}

.hero-legal {
  margin-bottom: 36px;
}

.legal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255, 77, 166, 0.08);
  border: 1px solid rgba(255, 77, 166, 0.15);
  border-radius: var(--radius-round);
  font-size: 13px;
  font-weight: 500;
  color: var(--candy-pink);
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn-primary {
  color: #fff;
}

.btn-candy {
  background: var(--grad-sweet);
  box-shadow:
    0 4px 15px rgba(255, 77, 166, 0.3),
    0 0 30px rgba(255, 77, 166, 0.1);
}

.btn-candy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff6bb5, #c084fc);
  opacity: 0;
  transition: opacity 0.35s var(--ease-smooth);
  border-radius: inherit;
}

.btn-candy:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 30px rgba(255, 77, 166, 0.4),
    0 0 50px rgba(255, 77, 166, 0.2);
}

.btn-candy:hover::before {
  opacity: 1;
}

.btn-candy:active {
  transform: translateY(-1px) scale(0.99);
}

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

.btn-glass:hover {
  background: var(--candy-glass-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--candy-glass);
  border: 1px solid var(--candy-glass-border);
  border-radius: var(--radius-round);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   GAME SECTION
   ============================================ */
.game-section {
  padding: 100px 0;
  background: var(--bg-soft);
  position: relative;
}

.game-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08), transparent 70%);
  pointer-events: none;
}

.game-wrapper {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
}

.game-frame-glow {
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-xl) + 3px);
  background: var(--grad-sweet);
  opacity: 0.4;
  filter: blur(2px);
  animation: gameGlow 3s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes gameGlow {
  0% { opacity: 0.3; filter: blur(2px); }
  100% { opacity: 0.6; filter: blur(4px); }
}

.game-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.2);
  z-index: 1;
}

.game-iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
  background: #000;
}

.game-disclaimer {
  text-align: center;
  margin-top: 24px;
  padding: 16px 24px;
  background: rgba(255, 77, 166, 0.06);
  border: 1px solid rgba(255, 77, 166, 0.12);
  border-radius: var(--radius-md);
}

.game-disclaimer p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

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

.feature-card {
  background: var(--candy-glass);
  border: 1px solid var(--candy-glass-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-sweet);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 77, 166, 0.2);
  box-shadow: 0 20px 60px rgba(255, 77, 166, 0.08);
}

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

.feature-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  transition: all 0.4s var(--ease-smooth);
}

.candy-pink-glow {
  background: rgba(255, 77, 166, 0.1);
  border: 1px solid rgba(255, 77, 166, 0.15);
}

.candy-purple-glow {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.15);
}

.candy-mint-glow {
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid rgba(0, 245, 212, 0.15);
}

.candy-orange-glow {
  background: rgba(255, 122, 24, 0.1);
  border: 1px solid rgba(255, 122, 24, 0.15);
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1);
}

.feature-card:hover .candy-pink-glow {
  box-shadow: 0 0 25px rgba(255, 77, 166, 0.3);
}
.feature-card:hover .candy-purple-glow {
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.3);
}
.feature-card:hover .candy-mint-glow {
  box-shadow: 0 0 25px rgba(0, 245, 212, 0.3);
}
.feature-card:hover .candy-orange-glow {
  box-shadow: 0 0 25px rgba(255, 122, 24, 0.3);
}

.feature-icon {
  font-size: 30px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section {
  padding: 100px 0;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.experience-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  background: var(--candy-glass);
  border: 1px solid var(--candy-glass-border);
  border-radius: var(--radius-xl);
  padding: 60px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.experience-visual {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-glow-orb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 166, 0.3), rgba(168, 85, 247, 0.15), transparent 70%);
  filter: blur(30px);
  animation: expGlow 4s ease-in-out infinite alternate;
}

@keyframes expGlow {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0.9; }
}

.exp-candy-float {
  position: absolute;
  font-size: 40px;
  animation: candyFloat 6s ease-in-out infinite;
}

.exp-c1 { top: 15%; left: 20%; animation-delay: 0s; }
.exp-c2 { top: 10%; right: 20%; animation-delay: 1.5s; }
.exp-c3 { bottom: 15%; left: 15%; animation-delay: 3s; }
.exp-c4 { bottom: 20%; right: 25%; animation-delay: 0.8s; font-size: 35px; }

.experience-content .section-tag {
  margin-bottom: 14px;
}

.experience-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

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

.experience-stats {
  display: flex;
  gap: 36px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  background: var(--grad-sweet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 100px 0;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input {
  padding: 14px 18px;
  background: var(--candy-glass);
  border: 1px solid var(--candy-glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  outline: none;
  transition: all 0.3s var(--ease-smooth);
  backdrop-filter: blur(5px);
}

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

.form-input:focus {
  border-color: var(--candy-pink);
  box-shadow: 0 0 0 3px rgba(255, 77, 166, 0.1), 0 0 20px rgba(255, 77, 166, 0.05);
}

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

.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(0, 245, 212, 0.08);
  border: 1px solid rgba(0, 245, 212, 0.2);
  border-radius: var(--radius-md);
  color: var(--candy-mint);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.form-success.visible {
  display: block;
  animation: fadeInUp 0.5s var(--ease-smooth);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--candy-glass-border);
  padding: 60px 0 30px;
}

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

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 360px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-smooth);
}

.footer-col ul li a:hover {
  color: var(--candy-pink);
  padding-left: 4px;
}

.footer-disclaimer {
  padding: 20px 24px;
  background: rgba(255, 77, 166, 0.04);
  border: 1px solid rgba(255, 77, 166, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}

.footer-disclaimer p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

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

.footer-legal-badges {
  display: flex;
  gap: 16px;
}

.footer-legal-badges span {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 10px;
  background: var(--candy-glass);
  border-radius: var(--radius-sm);
}

/* ============================================
   PAGE HERO (Subpages)
   ============================================ */
.page-hero {
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--candy-glass-border);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 77, 166, 0.06), transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.content-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--candy-glass);
  border: 1px solid var(--candy-glass-border);
  border-radius: var(--radius-xl);
  padding: 50px;
  backdrop-filter: blur(10px);
}

.content-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 14px;
  color: var(--text-primary);
}

.content-card h2:first-of-type {
  margin-top: 16px;
}

.content-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.content-card a {
  color: var(--candy-pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-card a:hover {
  color: var(--candy-purple);
}

.content-cta {
  margin-top: 36px;
  text-align: center;
}

.responsible-list {
  padding-left: 20px;
  margin: 12px 0;
}

.responsible-list li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2;
  position: relative;
  padding-left: 20px;
}

.responsible-list li::before {
  content: '🍬';
  position: absolute;
  left: 0;
  font-size: 12px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.anim-reveal {
  opacity: 0;
  transform: translateY(40px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Candy Shine Animation (for cards) */
@keyframes candyShine {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
}

.feature-card:hover::after {
  animation: candyShine 0.8s ease-in-out;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .experience-visual {
    height: 220px;
  }

  .experience-content .section-title {
    text-align: center;
  }

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

  .experience-stats {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .game-iframe {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .mobile-topbar {
    display: flex;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .main-content {
    margin-left: 0;
    padding-top: 60px;
  }

  .hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-content {
    padding: 0 20px;
  }

  .section-container {
    padding: 0 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .game-iframe {
    height: 400px;
  }

  .game-section,
  .features-section,
  .experience-section,
  .contact-section {
    padding: 60px 0;
  }

  .page-hero {
    padding: 100px 0 40px;
  }

  .content-card {
    padding: 30px 24px;
  }

  .legal-badges {
    gap: 6px;
  }

  .legal-badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .experience-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    text-align: center;
  }

  .experience-card {
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-description {
    font-size: 15px;
  }

  .game-iframe {
    height: 320px;
  }

  .stat-number {
    font-size: 26px;
  }
}