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

img {
    max-width: 100%;
}

:root {
  /* Elegant Casino Darkmode - Manifest Colors */
  --primary: #ff6666;
  --primary-light: #ff6666;
  --primary-dark: #ff6666;
  --accent: #ffffff;
  --gradient-primary: linear-gradient(135deg, #fbbf24 0%, #ffffff 50%, #fbbf24 100%);
  --gradient-secondary: linear-gradient(135deg, #000000 0%, #1f1f1f 50%, #000000 100%);
  --gradient-hero: linear-gradient(135deg, #000000 0%, #0f0f0f 50%, #000000 100%);
  --gradient-elegant: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, transparent 50%, rgba(251, 191, 36, 0.05) 100%);
  
  --background: #000000;
  --background-secondary: #0a0a0a;
  --background-tertiary: #1a1a1a;
  --background-card: rgba(251, 191, 36, 0.05);
  
  --text-primary: #ffffff;
  --text-secondary: #e5e5e5;
  --text-muted: #a0a0a0;
  
  --card-bg: rgba(251, 191, 36, 0.06);
  --card-border: rgba(251, 191, 36, 0.2);
  --shadow: rgba(0, 0, 0, 0.5);
  --shadow-gold: rgba(251, 191, 36, 0.3);
  --shadow-elegant: rgba(251, 191, 36, 0.15);
  
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ff6666;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

/* Section spacing consistency - Reduced */
section {
  margin: 0;
}

section + section {
  margin-top: 0;
}

/* Elegant animated background - Casino Style */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(251, 191, 36, 0.01) 50%, transparent 70%);
  z-index: -1;
  animation: elegantFloat 30s ease-in-out infinite;
}

@keyframes elegantFloat {
  0%, 100% { 
    transform: translateX(0) translateY(0) rotate(0deg); 
    opacity: 0.4;
  }
  33% { 
    transform: translateX(-10px) translateY(-15px) rotate(1deg); 
    opacity: 0.6;
  }
  66% { 
    transform: translateX(10px) translateY(-10px) rotate(-1deg); 
    opacity: 0.5;
  }
}

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

/* Elegant Header - Pure Darkmode */
.main-header {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.main-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.4;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  min-height: 75px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: -1px;
  width: 100%;
  max-width: 160px;
  position: relative;
}

.brand-logo::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.brand-logo:hover::after {
  width: 100%;
}

.brand-logo:hover {
  color: var(--primary-dark);
  transform: scale(1.02);
}

.header-buttons {
  display: flex;
  gap: 0;
}

/* Elegant Premium Buttons */
.btn-primary,
a.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #ffffff 50%, var(--primary) 100%);
  color: #000000;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px var(--shadow-elegant);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover::before,
a.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover,
a.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px var(--shadow-gold);
  background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 50%, var(--primary) 100%);
}

.btn-secondary,
a.btn-secondary {
  display: none; /* Verstecke zweiten Button */
}

.btn-large {
  padding: 18px 45px;
  font-size: 18px;
  border-radius: 35px;
  min-height: 58px;
  box-shadow: 0 10px 30px var(--shadow-gold);
}

.btn-large:hover {
  box-shadow: 0 15px 40px var(--shadow-gold);
}

/* Hero Section - Elegant Casino Style */
.hero-section {
  padding: 120px 0 40px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Elegant subtle pattern overlay */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 45%, rgba(251, 191, 36, 0.02) 50%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(255, 255, 255, 0.01) 50%, transparent 55%);
  animation: elegantShift 25s linear infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: subtleFloat 18s ease-in-out infinite;
  filter: blur(30px);
}

@keyframes elegantShift {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-100px) translateY(-50px); }
}

@keyframes subtleFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
    opacity: 0.3;
  }
  50% { 
    transform: translate(-30px, -40px) scale(1.1); 
    opacity: 0.5;
  }
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12) 0%, rgba(0, 0, 0, 0.8) 100%);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 35px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  backdrop-filter: blur(15px);
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
  animation: elegantShine 4s ease-in-out infinite;
}

@keyframes elegantShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.hero-badge:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.3);
  border-color: var(--primary);
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title .primary-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #ffffff 30%, var(--primary) 60%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s ease-in-out infinite;
}

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

.hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Content Section - Reduced Spacing */
.content-section {
  padding: 40px 0;
  background: var(--background-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

/* Feature Cards - Elegant Dark Casino Style */
.feature-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(251, 191, 36, 0.1) 100%);
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Elegant corner accent */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), transparent);
  clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
  opacity: 0.15;
  transition: var(--transition);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #ffffff, var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(251, 191, 36, 0.08) 100%);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px var(--shadow-elegant);
  border-color: var(--primary);
}

.feature-card:hover::before {
  opacity: 0.3;
  width: 80px;
  height: 80px;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 52px;
  margin-bottom: 25px;
  display: block;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.5));
  color: var(--primary);
}

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

.feature-text {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 20px;
}

.feature-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat-pill {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(0, 0, 0, 0.8) 100%);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(251, 191, 36, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
  transition: left 0.3s ease;
}

.stat-pill:hover {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(0, 0, 0, 0.9) 100%);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-elegant);
  border-color: var(--primary);
}

.stat-pill:hover::before {
  left: 100%;
}

/* Elegant Card Variations - Subtle Neon Effects */
.game-card:hover {
  border-color: #ffffff;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 255, 255, 0.1);
}

.game-card:hover .feature-icon {
  filter: drop-shadow(0 0 15px #ffffff);
}

.sports-card:hover {
  border-color: var(--primary);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 20px var(--shadow-elegant);
}

.sports-card:hover .feature-icon {
  filter: drop-shadow(0 0 15px var(--primary));
}

.slot-card:hover {
  border-color: #ffffff;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 255, 255, 0.1);
}

.slot-card:hover .feature-icon {
  filter: drop-shadow(0 0 15px #ffffff);
}

.payment-card:hover {
  border-color: var(--primary);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 20px var(--shadow-elegant);
}

.payment-card:hover .feature-icon {
  filter: drop-shadow(0 0 15px var(--primary));
}

/* Bonus Section - Reduced Spacing */
.bonus-section {
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.03) 0%, var(--background) 50%, rgba(0, 0, 0, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.bonus-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23fbbf24" opacity="0.2"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="0.5" fill="%23fbbf24" opacity="0.3"/><circle cx="70" cy="30" r="1" fill="%23ffffff" opacity="0.15"/></svg>') repeat;
  animation: elegantSparkle 25s linear infinite;
}

@keyframes elegantSparkle {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-100px) translateY(-100px); }
}

.bonus-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, #ffffff 50%, var(--primary) 100%);
  color: #000000;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px var(--shadow-elegant);
  animation: elegantPulse 3s ease-in-out infinite;
}

@keyframes elegantPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 5px 15px var(--shadow-elegant); }
  50% { transform: scale(1.02); box-shadow: 0 8px 20px var(--shadow-gold); }
}

.bonus-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.bonus-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.bonus-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.bonus-item:hover {
  transform: translateY(-3px);
  background: rgba(228, 208, 152, 0.15);
  border-color: var(--primary);
}

.bonus-icon {
  font-size: 18px;
}

.bonus-text {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.bonus-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #ffffff 50%, var(--primary) 100%);
  color: #000000 !important;
  box-shadow: 0 10px 25px var(--shadow-elegant);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.bonus-btn:hover {
  box-shadow: 0 12px 30px var(--shadow-gold);
  transform: translateY(-2px);
  border-color: var(--primary);
}

/* Stats Section - Reduced Spacing */
.stats-section {
  padding: 40px 0;
  background: rgba(26, 26, 26, 0.4);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-item {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  padding: 40px 25px;
  border-radius: 25px;
  transition: var(--transition);
  position: relative;
}

.stat-item:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  background: rgba(228, 208, 152, 0.15);
  box-shadow: 0 15px 40px var(--shadow);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1rem;
}

/* FAQ Section - Reduced Spacing */
.faq-section {
  padding: 40px 0;
  background: var(--background-secondary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(15px);
}

.faq-item.active {
  border-color: var(--primary);
  background: rgba(228, 208, 152, 0.12);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  min-height: 60px;
}

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

.faq-question span {
  font-size: 24px;
  font-weight: 300;
  color: var(--primary);
  transition: var(--transition);
  min-width: 30px;
  text-align: center;
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 15px;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 200px;
}

/* Footer - Reduced Spacing */
.main-footer {
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid var(--card-border);
  padding: 40px 0 25px;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-brand {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.footer-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 15px;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 13px;
  border-top: 1px solid var(--card-border);
  padding-top: 25px;
  margin-top: 25px;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .header-content {
    padding: 12px 0;
  }
  
  .brand-logo {
    font-size: 24px;
  }
  
  .hero-section {
    padding: 80px 0 30px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .stat-item {
    padding: 25px 15px;
  }
  
  .faq-question {
    padding: 20px;
    font-size: 16px;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    font-size: 20px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-large {
    padding: 14px 30px;
    font-size: 16px;
  }
}

/* Smooth Animations with Unique Effects */
@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(50px) rotateX(10deg); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) rotateX(0); 
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Staggered animation delays */
.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Parallax-like effect for scroll */
@media (prefers-reduced-motion: no-preference) {
  .section-grid {
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .section-grid.in-view {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Tablet Styles */
@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
  
  .header-content {
    padding: 16px 0;
  }
  
  .brand-logo {
    font-size: 24px;
    gap: 12px;
  }
  
  .header-buttons {
    gap: 12px;
  }
  
  .btn-primary,
  .btn-secondary,
  a.btn-primary,
  a.btn-secondary {
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-buttons {
    flex-direction: row;
    gap: 16px;
  }
  
  .section-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .feature-title {
    font-size: 20px;
  }
  
  .feature-text {
    font-size: 15px;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .hero-content {
    max-width: 800px;
  }
  
  .hero-title {
    font-size: 56px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .section-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .content-section,
  .stats-section,
  .faq-section,
  .bonus-section {
    padding: 40px 0;
  }
  
  .feature-card {
    padding: 32px;
  }
  
  .feature-icon {
    font-size: 48px;
  }
  
  .feature-title {
    font-size: 24px;
  }
  
  .feature-text {
    font-size: 16px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 14px;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .section-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Touch Improvements for iOS/Android */
@media (hover: none) and (pointer: coarse) {
  .btn-primary:hover,
  .btn-secondary:hover,
  a.btn-primary:hover,
  a.btn-secondary:hover {
    transform: none;
  }
  
  .feature-card:hover {
    transform: none;
  }
  
  .stat-item:hover {
    transform: none;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-badge {
    animation: none;
  }
}