/* ============================================
   LYRASPARKDRFT - Electric Sky Energy Interface
   Social Casino - FREE TO PLAY ONLY
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --bg-primary: #f0f9ff;
  --bg-secondary: #e0f2fe;
  --sky-blue: #0ea5e9;
  --deep-sky: #0369a1;
  --bright-yellow: #facc15;
  --soft-yellow: #fef9c3;
  --glass-layer: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(14, 165, 233, 0.2);
  --text-dark: #0c4a6e;
  --text-medium: #0369a1;
  --text-light: #7dd3fc;
  --white: #ffffff;
  --sidebar-collapsed: 80px;
  --sidebar-expanded: 240px;
  --shadow-sky: 0 8px 32px rgba(14, 165, 233, 0.15);
  --shadow-yellow: 0 4px 20px rgba(250, 204, 21, 0.3);
  --glow-sky: 0 0 20px rgba(14, 165, 233, 0.3);
  --glow-yellow: 0 0 20px rgba(250, 204, 21, 0.4);
  --blur: blur(14px);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: var(--deep-sky);
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.sky-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 25%, #bae6fd 50%, #e0f2fe 75%, #f0f9ff 100%);
  background-size: 400% 400%;
  animation: skyFlow 15s ease infinite;
}

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

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

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0.4;
}

.particle:nth-child(odd) {
  background: radial-gradient(circle, var(--sky-blue), transparent);
}

.particle:nth-child(even) {
  background: radial-gradient(circle, var(--bright-yellow), transparent);
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

/* ============================================
   LEFT SIDEBAR
   ============================================ */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: var(--sidebar-collapsed);
  background: var(--glass-layer);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-right: 1px solid var(--glass-border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sky);
  overflow: hidden;
}

.sidebar:hover,
.sidebar.expanded {
  width: var(--sidebar-expanded);
}

.sidebar-header {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--glass-border);
  min-height: 80px;
  flex-shrink: 0;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--deep-sky);
  white-space: nowrap;
  overflow: hidden;
}

.sidebar-logo-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--sky-blue), var(--deep-sky));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  box-shadow: var(--glow-sky);
}

.sidebar-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
  letter-spacing: 1px;
}

.sidebar:hover .sidebar-logo-text,
.sidebar.expanded .sidebar-logo-text {
  opacity: 1;
}

.sidebar-nav {
  flex: 1;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  padding-left: 27px;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
  border-radius: 0 24px 24px 0;
  margin-right: 12px;
  font-weight: 500;
  font-size: 14px;
}

.sidebar-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--bright-yellow);
  border-radius: 0 4px 4px 0;
  transition: height 0.3s ease;
}

.sidebar-nav-item:hover {
  background: rgba(14, 165, 233, 0.08);
  color: var(--sky-blue);
}

.sidebar-nav-item:hover::before {
  height: 24px;
}

.sidebar-nav-item.active {
  background: rgba(14, 165, 233, 0.12);
  color: var(--sky-blue);
  box-shadow: inset 0 0 20px rgba(14, 165, 233, 0.05);
}

.sidebar-nav-item.active::before {
  height: 28px;
  background: var(--bright-yellow);
  box-shadow: var(--glow-yellow);
}

.sidebar-nav-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.sidebar-nav-label {
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
}

.sidebar:hover .sidebar-nav-label,
.sidebar.expanded .sidebar-nav-label {
  opacity: 1;
}

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sidebar-social {
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
}

.sidebar:hover .sidebar-social,
.sidebar.expanded .sidebar-social {
  opacity: 1;
}

.sidebar-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--sky-blue);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

.sidebar-social a:hover {
  background: var(--sky-blue);
  color: white;
  box-shadow: var(--glow-sky);
}

.sidebar-age-badge {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1001;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--glass-layer);
  backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--sky-blue);
  box-shadow: var(--shadow-sky);
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: var(--sky-blue);
  color: white;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 999;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
  margin-left: var(--sidebar-collapsed);
  min-height: 100vh;
  transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 60px);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.9) 0%, rgba(186, 230, 253, 0.7) 50%, rgba(224, 242, 254, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--glass-layer);
  backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: clamp(12px, 1.5vw, 14px);
  color: var(--sky-blue);
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--deep-sky), var(--sky-blue), var(--bright-yellow));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-medium);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--bright-yellow), #f59e0b);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-family: 'Poppins', sans-serif;
  box-shadow: var(--shadow-yellow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(250, 204, 21, 0.5);
}

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

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

/* Floating Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15), transparent 70%);
  top: 10%;
  right: 10%;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.15), transparent 70%);
  bottom: 15%;
  left: 10%;
  animation: orbFloat 6s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -20px); }
  50% { transform: translate(-20px, 30px); }
  75% { transform: translate(20px, 20px); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title span {
  color: var(--sky-blue);
}

.section-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   GLASS CARD
   ============================================ */
.glass-card {
  background: var(--glass-layer);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sky);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.2);
  border-color: rgba(14, 165, 233, 0.35);
}

/* ============================================
   FEATURED GAME SECTION
   ============================================ */
.featured-game {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.featured-game-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-game-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sky);
  position: relative;
}

.featured-game-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-game-image:hover img {
  transform: scale(1.05);
}

.featured-game-image .game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 105, 161, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.featured-game-image .game-tag {
  padding: 6px 16px;
  background: var(--bright-yellow);
  color: var(--text-dark);
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}

.featured-game-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--deep-sky);
  margin-bottom: 16px;
}

.featured-game-info p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.featured-game-info .features-list {
  list-style: none;
  margin-bottom: 28px;
  display: grid;
  gap: 10px;
}

.featured-game-info .features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 14px;
}

.featured-game-info .features-list li .check-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-blue);
  font-size: 13px;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: clamp(30px, 4vw, 40px) clamp(20px, 3vw, 30px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--sky-blue), var(--deep-sky));
  box-shadow: var(--glow-sky);
  transform: scale(1.1);
}

.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.step-card {
  text-align: center;
  padding: clamp(30px, 4vw, 40px) clamp(20px, 3vw, 30px);
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bright-yellow), #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  box-shadow: var(--shadow-yellow);
}

.step-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 30px);
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  padding: clamp(28px, 3vw, 36px);
  position: relative;
}

.testimonial-card .quote-icon {
  font-size: 32px;
  color: var(--bright-yellow);
  margin-bottom: 16px;
  display: block;
}

.testimonial-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sky-blue), var(--deep-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--sky-blue);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 60px);
}

.cta-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--bright-yellow), #f59e0b, var(--bright-yellow));
  background-size: 200% auto;
  animation: gradientShift 4s ease infinite;
  border-radius: 24px;
  padding: clamp(40px, 5vw, 60px);
  text-align: center;
  box-shadow: var(--shadow-yellow);
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  animation: ctaGlow 5s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20%, 20%); }
}

.cta-banner-inner h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner-inner p {
  color: rgba(12, 74, 110, 0.8);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.cta-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--deep-sky);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 20px rgba(3, 105, 161, 0.4);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-btn-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-btn-dark:hover::before {
  left: 100%;
}

.cta-btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(3, 105, 161, 0.5);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  padding: clamp(100px, 12vw, 140px) clamp(20px, 5vw, 60px) clamp(40px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(250, 204, 21, 0.05));
}

.page-header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--deep-sky);
  margin-bottom: 12px;
  position: relative;
}

.page-header p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ============================================
   GAME PAGE
   ============================================ */
.game-page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
}

.game-iframe-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(14, 165, 233, 0.2);
  border: 2px solid var(--glass-border);
  background: var(--glass-layer);
  margin-bottom: 40px;
}

.game-iframe-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--sky-blue), var(--bright-yellow), var(--sky-blue));
  background-size: 200% auto;
  animation: gradientShift 4s ease infinite;
  z-index: -1;
}

.game-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.game-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-info-panel {
  margin-top: 32px;
}

.game-info-panel h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--deep-sky);
  margin-bottom: 16px;
}

.game-info-panel p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 24px;
}

.game-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.game-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
}

.game-features-list li span {
  font-size: 18px;
}

/* ============================================
   GAMES PAGE (Single Card)
   ============================================ */
.games-showcase {
  display: flex;
  justify-content: center;
  padding: 0 clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
}

.game-showcase-card {
  max-width: 500px;
  width: 100%;
}

.game-showcase-card .game-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.game-showcase-card .game-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.game-showcase-card:hover .game-image img {
  transform: scale(1.05);
}

.game-showcase-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: var(--deep-sky);
  margin-bottom: 12px;
}

.game-showcase-card p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--bright-yellow), #f59e0b);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  box-shadow: var(--shadow-yellow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-play::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn-play:hover::before {
  left: 100%;
}

.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(250, 204, 21, 0.5);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
}

.about-section {
  margin-bottom: 48px;
}

.about-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--deep-sky);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(14, 165, 233, 0.1);
}

.about-section p {
  color: var(--text-medium);
  line-height: 1.8;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin-bottom: 16px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
}

.contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info p {
  color: var(--text-medium);
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-info a {
  color: var(--sky-blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

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

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

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid rgba(14, 165, 233, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

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

.form-submit {
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--sky-blue), var(--deep-sky));
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sky);
  align-self: flex-start;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
}

.faq-item {
  margin-bottom: 16px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: var(--glass-layer);
  backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question:hover {
  border-color: var(--sky-blue);
  box-shadow: var(--shadow-sky);
}

.faq-question.active {
  border-color: var(--sky-blue);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: rgba(14, 165, 233, 0.08);
}

.faq-arrow {
  transition: transform 0.3s ease;
  font-size: 18px;
  min-width: 18px;
  color: var(--sky-blue);
}

.faq-question.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-top: none;
  border-radius: 0 0 16px 16px;
}

.faq-answer.open {
  max-height: 300px;
  padding: 20px 24px;
}

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

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
}

.legal-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--deep-sky);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

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

.legal-content p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: clamp(0.88rem, 1.3vw, 0.95rem);
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 6px;
  font-size: clamp(0.88rem, 1.3vw, 0.95rem);
}

/* ============================================
   DISCLAIMER BAR
   ============================================ */
.disclaimer-bar {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(250, 204, 21, 0.05));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: clamp(16px, 2vw, 24px) clamp(20px, 5vw, 60px);
  text-align: center;
}

.disclaimer-bar p {
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-bar .badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.badge-age {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-responsible {
  background: rgba(14, 165, 233, 0.1);
  color: var(--sky-blue);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--bg-secondary), #cfe8fc);
  border-top: 1px solid var(--glass-border);
  padding: clamp(40px, 6vw, 70px) clamp(20px, 5vw, 60px) clamp(24px, 3vw, 32px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(30px, 4vw, 50px);
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-sky);
  margin-bottom: 16px;
}

.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--deep-sky);
  margin-bottom: 12px;
}

.footer-col p {
  color: var(--text-medium);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li a {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a:hover {
  color: var(--sky-blue);
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--sky-blue);
  text-decoration: none;
  transition: var(--transition);
  font-size: 18px;
}

.footer-social a:hover {
  background: var(--sky-blue);
  color: white;
  box-shadow: var(--glow-sky);
  transform: translateY(-3px);
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(14, 165, 233, 0.15);
  text-align: center;
}

.footer-disclaimer p {
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-disclaimer-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(14, 165, 233, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

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

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .sidebar {
    width: var(--sidebar-collapsed);
  }

  .sidebar:hover {
    width: var(--sidebar-collapsed);
  }

  .sidebar:hover .sidebar-logo-text,
  .sidebar:hover .sidebar-nav-label,
  .sidebar:hover .sidebar-social {
    opacity: 0;
  }

  .sidebar.expanded {
    width: var(--sidebar-expanded);
  }

  .sidebar.expanded .sidebar-logo-text,
  .sidebar.expanded .sidebar-nav-label,
  .sidebar.expanded .sidebar-social {
    opacity: 1;
  }

  .featured-game-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .sidebar {
    width: var(--sidebar-expanded);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .sidebar.expanded {
    transform: translateX(0);
  }

  .sidebar .sidebar-logo-text,
  .sidebar .sidebar-nav-label,
  .sidebar .sidebar-social {
    opacity: 1;
  }

  .sidebar-overlay.active {
    display: block;
  }

  .main-content {
    margin-left: 0;
  }

  .hero {
    min-height: 90vh;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    padding: 14px 32px;
  }

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

  .game-features-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* Yellow pulse animation for CTAs */
@keyframes yellowPulse {
  0% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(250, 204, 21, 0); }
  100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

.pulse-yellow {
  animation: yellowPulse 2s infinite;
}