@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #794B96;
  --primary-dark: #5a3570;
  --primary-light: #9b6bb8;
  --secondary-color: #1a1a2e;
  --third-color: #16213e;
  --accent-color: #E3B2FB;
  --accent-secondary: #ff6b9d;
  --text-primary: #FFFFFF;
  --text-secondary: #B8B8D1;
  --text-muted: #6B7280;
  --success: #10b981;
  --warning: #f59e0b;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a15;
  background-image: 
    radial-gradient(at 0% 0%, rgba(118, 75, 162, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(240, 147, 251, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(102, 126, 234, 0.15) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(118, 75, 162, 0.15) 0px, transparent 50%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Magical Stars Container */
.stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.magical-star {
  position: absolute;
  color: #fff;
  font-size: 2px;
  animation: starFloat linear infinite;
  opacity: 0;
  text-shadow: 0 0 4px rgba(227, 178, 251, 0.8), 0 0 8px rgba(227, 178, 251, 0.6);
}

.magical-star::before {
  content: '✦';
  display: block;
}

.magical-star.sparkle {
  font-size: 3px;
  color: #E3B2FB;
  animation: sparkleFloat linear infinite;
}

.magical-star.glow {
  font-size: 4px;
  color: #fff;
  text-shadow: 
    0 0 6px rgba(227, 178, 251, 1),
    0 0 12px rgba(118, 75, 162, 0.8),
    0 0 18px rgba(227, 178, 251, 0.6);
  animation: glowFloat linear infinite;
}

@keyframes starFloat {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes sparkleFloat {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateY(50vh) translateX(50px) rotate(180deg) scale(1.2);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(-100px) rotate(360deg) scale(0.5);
    opacity: 0;
  }
}

@keyframes glowFloat {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  15% {
    opacity: 0.8;
  }
  85% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100px) translateX(-150px) rotate(360deg);
    opacity: 0;
  }
}

/* Magical Particles */
.magical-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.magical-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #E3B2FB 0%, transparent 70%);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(227, 178, 251, 0.8), 0 0 12px rgba(118, 75, 162, 0.6);
  animation: particleFloat linear infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(50vh) translateX(30px) scale(1);
    opacity: 0.8;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) translateX(-30px) scale(0);
    opacity: 0;
  }
}

/* Magical Sparkles in Hero */
.magical-sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.magical-sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 
    0 0 10px rgba(227, 178, 251, 1),
    0 0 20px rgba(118, 75, 162, 0.8),
    0 0 30px rgba(227, 178, 251, 0.6);
  animation: sparkleTwinkle 3s ease-in-out infinite;
}

@keyframes sparkleTwinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0) translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: scale(1) translate(var(--sparkle-x, 20px), var(--sparkle-y, 20px));
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(118, 75, 162, 0.5), 0 0 20px rgba(227, 178, 251, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-login {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-register {
  background: var(--gradient-1);
  color: var(--text-primary);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(227, 178, 251, 0.5) 25%,
    rgba(118, 75, 162, 0.8) 50%,
    rgba(227, 178, 251, 0.5) 75%,
    transparent 100%
  );
  animation: magicalBorder 3s linear infinite;
}

@keyframes magicalBorder {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo img {
  height: 45px;
  transition: transform 0.3s ease;
}

.navbar .logo:hover img {
  transform: scale(1.05);
}

.navbar-menu {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.navbar-menu li a {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: var(--text-primary);
  background: rgba(118, 75, 162, 0.2);
}

.navbar .auth-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.9;
  animation: magicalPulse 8s ease-in-out infinite;
}

@keyframes magicalPulse {
  0%, 100% {
    opacity: 0.9;
    filter: brightness(1);
  }
  50% {
    opacity: 0.95;
    filter: brightness(1.1);
  }
}

.animated-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-color);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  bottom: -50px;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: var(--accent-secondary);
  top: 50%;
  right: -100px;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(227, 178, 251, 0.3);
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.hero-badge i {
  color: #fbbf24;
  animation: starTwinkle 1.5s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #e3b2fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: magicalGlow 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(227, 178, 251, 0.5);
}

@keyframes magicalGlow {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-weight: 500;
}

.feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Headers */
.section-header,
.bonus-header,
.games-header,
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(118, 75, 162, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2,
.bonus-header h2,
.games-header h2,
.faq-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #e3b2fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* About Us Section */
.about-us {
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

.about-us-banner {
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.about-us-banner:hover {
  transform: scale(1.02);
}

.about-us-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.about-us-content {
  margin-top: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(227, 178, 251, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 
    var(--shadow-lg),
    0 0 30px rgba(118, 75, 162, 0.3),
    0 0 60px rgba(227, 178, 251, 0.2);
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--gradient-1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-primary);
  box-shadow: 
    0 0 20px rgba(118, 75, 162, 0.6),
    0 0 40px rgba(227, 178, 251, 0.4);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 0 20px rgba(118, 75, 162, 0.6),
      0 0 40px rgba(227, 178, 251, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 
      0 0 30px rgba(118, 75, 162, 0.8),
      0 0 60px rgba(227, 178, 251, 0.6);
  }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #e3b2fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

/* Bonus Section */
.bonus {
  padding: 100px 0;
  background: rgba(118, 75, 162, 0.05);
  position: relative;
  z-index: 5;
}

.bonus-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.bonus-intro {
  margin-bottom: 32px;
}

.bonus-intro h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.bonus-intro p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.bonus-grid {
  display: grid;
  gap: 24px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card::after {
  content: '✨';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0) rotate(0deg);
  transition: all 0.3s ease;
}

.bonus-card:hover::after {
  opacity: 1;
  transform: scale(1) rotate(360deg);
}

.bonus-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 
    var(--shadow-lg),
    0 0 30px rgba(118, 75, 162, 0.3),
    0 0 60px rgba(227, 178, 251, 0.2);
}

.bonus-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  box-shadow: 
    0 0 20px rgba(118, 75, 162, 0.6),
    0 0 40px rgba(227, 178, 251, 0.4);
  animation: iconPulse 2s ease-in-out infinite;
  position: relative;
}

.bonus-icon::before {
  content: '✨';
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 1rem;
  animation: sparkleRotate 2s linear infinite;
  opacity: 0.8;
}

@keyframes sparkleRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.bonus-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.bonus-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.bonus-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.bonus-link:hover {
  gap: 12px;
  color: var(--text-primary);
}

.bonus-carousel {
  position: sticky;
  top: 100px;
}

.bonus-carousel-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.carousel-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.carousel-item:hover {
  transform: scale(1.05);
}

.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

.bonus-banner {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.bonus-banner:hover {
  transform: scale(1.02);
}

.bonus-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Games Section */
.games {
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.game-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(227, 178, 251, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
  pointer-events: none;
}

.game-card:hover::before {
  opacity: 1;
}

.game-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    var(--shadow-xl),
    0 0 40px rgba(118, 75, 162, 0.4),
    0 0 80px rgba(227, 178, 251, 0.3);
  border-color: var(--primary-color);
}

.game-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  z-index: 2;
  background: linear-gradient(135deg, rgba(118, 75, 162, 0.2) 0%, rgba(227, 178, 251, 0.2) 100%);
  display: block;
  visibility: visible;
}

.game-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block !important;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(118, 75, 162, 0.3) 0%, rgba(227, 178, 251, 0.3) 100%);
  min-height: 200px;
  visibility: visible !important;
  opacity: 1 !important;
}

.game-card:hover .game-image-wrapper img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-content {
  padding: 32px;
  position: relative;
  z-index: 2;
  background: rgba(26, 26, 46, 0.3);
}

.game-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  box-shadow: 
    0 0 20px rgba(118, 75, 162, 0.6),
    0 0 40px rgba(227, 178, 251, 0.4);
  animation: iconPulse 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.game-content h4 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.game-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.game-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.game-stats span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.game-stats i {
  color: var(--accent-color);
}

/* Features Section */
.features {
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

.features-header {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(227, 178, 251, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 
    var(--shadow-lg),
    0 0 30px rgba(118, 75, 162, 0.3),
    0 0 60px rgba(227, 178, 251, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-primary);
  box-shadow: 
    0 0 20px rgba(118, 75, 162, 0.6),
    0 0 40px rgba(227, 178, 251, 0.4);
  animation: iconPulse 2s ease-in-out infinite;
}

.feature-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: rgba(118, 75, 162, 0.05);
  position: relative;
  z-index: 5;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 
    var(--shadow-lg),
    0 0 30px rgba(118, 75, 162, 0.3);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.2rem;
}

.author-info h5 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.author-info span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Payment Methods Section */
.payment-methods {
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

.payment-header {
  text-align: center;
  margin-bottom: 48px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.payment-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.payment-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 
    var(--shadow-lg),
    0 0 30px rgba(118, 75, 162, 0.3);
}

.payment-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--gradient-1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-primary);
  box-shadow: 
    0 0 20px rgba(118, 75, 162, 0.6),
    0 0 40px rgba(227, 178, 251, 0.4);
}

.payment-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.payment-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.payment-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(118, 75, 162, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
  border: 1px solid rgba(227, 178, 251, 0.3);
}

/* Mobile App Section */
.mobile-app {
  padding: 100px 0;
  background: rgba(118, 75, 162, 0.05);
  position: relative;
  z-index: 5;
}

.mobile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mobile-text {
  max-width: 600px;
}

.mobile-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.mobile-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.mobile-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 500;
}

.mobile-feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.mobile-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-device {
  width: 280px;
  height: 560px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(118, 75, 162, 0.3),
    inset 0 0 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.screen-content {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.app-preview {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 16px;
}

.preview-header {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}

.preview-header i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  font-size: 0.5rem;
}

.preview-games {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-game-item {
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  animation: previewPulse 2s ease-in-out infinite;
}

.preview-game-item:nth-child(2) {
  animation-delay: 0.3s;
}

.preview-game-item:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes previewPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 48px;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 
    var(--shadow-lg),
    0 0 30px rgba(118, 75, 162, 0.3);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 20px auto 24px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-primary);
  box-shadow: 
    0 0 20px rgba(118, 75, 162, 0.6),
    0 0 40px rgba(227, 178, 251, 0.4);
}

.step-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Security & Trust Section */
.security-trust {
  padding: 100px 0;
  background: rgba(118, 75, 162, 0.05);
  position: relative;
  z-index: 5;
}

.security-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.security-text {
  max-width: 600px;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.security-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.security-feature i {
  width: 56px;
  height: 56px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-primary);
  flex-shrink: 0;
  box-shadow: 
    0 0 20px rgba(118, 75, 162, 0.6),
    0 0 40px rgba(227, 178, 251, 0.4);
}

.security-feature h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.security-feature p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.security-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.badge-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.badge-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.badge-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.badge-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.badge-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Latest News Section */
.latest-news {
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

.news-header {
  text-align: center;
  margin-bottom: 48px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.news-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    var(--shadow-lg),
    0 0 30px rgba(118, 75, 162, 0.3);
}

.news-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-primary);
}

.news-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.news-content {
  padding: 24px;
}

.news-date {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
}

.news-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.news-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.news-link:hover {
  gap: 12px;
  color: var(--text-primary);
}

/* Download Section */
.download-section {
  padding: 100px 0;
  background: rgba(118, 75, 162, 0.05);
  position: relative;
  z-index: 5;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.download-text {
  max-width: 600px;
}

.download-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0 40px;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 500;
}

.download-feature i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--text-primary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.download-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.download-btn i {
  font-size: 2rem;
}

.download-btn div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.download-btn span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.download-btn strong {
  font-size: 1rem;
  font-weight: 700;
}

.download-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(118, 75, 162, 0.3);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.app-interface {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.app-header {
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 20px;
}

.app-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.app-card {
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  animation: previewPulse 2s ease-in-out infinite;
}

.app-card:nth-child(2) {
  animation-delay: 0.3s;
}

.app-card:nth-child(3) {
  animation-delay: 0.6s;
}

/* Contact Support Section */
.contact-support {
  padding: 100px 0;
  position: relative;
  z-index: 5;
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 
    var(--shadow-lg),
    0 0 30px rgba(118, 75, 162, 0.3);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-primary);
  box-shadow: 
    0 0 20px rgba(118, 75, 162, 0.6),
    0 0 40px rgba(227, 178, 251, 0.4);
}

.contact-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.contact-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.contact-link:hover {
  gap: 12px;
  color: var(--text-primary);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: rgba(118, 75, 162, 0.05);
  position: relative;
  z-index: 5;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-question {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.faq-question i {
  color: var(--accent-color);
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 32px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 32px 24px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 30px;
  position: relative;
  z-index: 5;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-logo img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-logo p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient-1);
  color: var(--text-primary);
  transform: translateY(-4px);
}

.responsible-gaming {
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--warning);
}

.responsible-gaming p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.responsible-gaming i {
  color: var(--warning);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--accent-color);
}

.footer-bottom a:hover {
  color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .bonus-content {
    grid-template-columns: 1fr;
  }

  .bonus-carousel {
    position: static;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-menu li {
    width: 100%;
  }

  .navbar-menu li a {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .auth-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .auth-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 80vh;
    padding: 60px 20px;
  }

  .hero-features {
    flex-direction: column;
    gap: 16px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .about-us,
  .bonus,
  .games,
  .features,
  .testimonials,
  .payment-methods,
  .mobile-app,
  .how-it-works,
  .security-trust,
  .latest-news,
  .download-section,
  .contact-support,
  .faq {
    padding: 60px 0;
  }

  .security-content,
  .download-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .security-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-features {
    grid-template-columns: 1fr;
  }

  .download-buttons {
    flex-direction: column;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 16px;
  }

  .section-header,
  .bonus-header,
  .games-header,
  .faq-header,
  .features-header,
  .testimonials-header,
  .payment-header,
  .how-it-works-header,
  .news-header,
  .contact-header {
    margin-bottom: 32px;
  }

  .steps-container,
  .news-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .security-badges {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .testimonials-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .mobile-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mobile-features {
    grid-template-columns: 1fr;
  }

  .mobile-image {
    order: -1;
  }

  .bonus-card,
  .game-content,
  .faq-question {
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}