@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #C50102;
  --secondary-color: #000000;
  --third-color: #1a0000;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --accent-primary: #FF0000;
  --accent-gold: #FFD700;
  --accent-red: #FF1744;
  --accent-red-dark: #8B0000;
  --accent-red-light: #FF4444;
  --accent-glow: rgba(197, 1, 2, 0.8);
  --neon-red: #FF1744;
  --neon-red-bright: #FF0000;
  --neon-gold: #FFD700;
  --neon-orange: #FF6B00;
  --gradient-primary: linear-gradient(135deg, #C50102 0%, #8B0000 50%, #000000 100%);
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FF6B00 100%);
  --gradient-red: linear-gradient(135deg, #FF1744 0%, #C50102 50%, #8B0000 100%);
  --gradient-red-gold: linear-gradient(135deg, #FF1744 0%, #FFD700 50%, #FF6B00 100%);
  --shadow-glow: 0 0 30px rgba(255, 23, 68, 0.8), 0 0 60px rgba(197, 1, 2, 0.6);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 23, 68, 0.3);
  --shadow-hover: 0 15px 50px rgba(255, 23, 68, 0.6), 0 0 40px rgba(197, 1, 2, 0.4);
  --shadow-neon: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 23, 68, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(197, 1, 2, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(26, 0, 0, 0.85)), 
    url(images/background.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 23, 68, 0.03) 2px,
      rgba(255, 23, 68, 0.03) 4px
    );
  pointer-events: none;
  z-index: 0;
}

a {
  text-decoration: none;
  color: var(--accent-primary);
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.btn {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(197, 1, 2, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.navbar {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 0, 0, 0.98) 100%);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(255, 23, 68, 0.3);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--neon-red), var(--neon-gold), var(--neon-orange)) 1;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
  filter: drop-shadow(0 0 10px var(--accent-glow));
  transition: transform 0.3s ease;
}

.navbar .logo img:hover {
  transform: scale(1.05);
}

.navbar-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-menu li a:hover {
  color: var(--neon-red);
  text-shadow: 0 0 10px var(--neon-red);
}

.navbar-menu li a:hover::after {
  width: 80%;
}

.navbar .auth-buttons {
  display: flex;
  gap: 15px;
}

.btn-login {
  background: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-login:hover {
  background: transparent;
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-register {
  background: var(--gradient-red-gold);
  color: var(--secondary-color);
  border: 2px solid transparent;
  box-shadow: 
    0 0 20px rgba(255, 23, 68, 0.6),
    0 0 40px rgba(197, 1, 2, 0.4);
  font-weight: 900;
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 0 30px rgba(255, 23, 68, 0.9),
    0 0 60px rgba(197, 1, 2, 0.6),
    0 0 90px rgba(255, 215, 0, 0.4);
  background: var(--gradient-red);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  position: relative;
  background: var(--gradient-red);
  padding: 80px 60px;
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  animation: fadeInUp 1s ease-out;
  border: 3px solid transparent;
  background-clip: padding-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
    radial-gradient(circle, rgba(255, 23, 68, 0.2) 0%, transparent 50%),
    radial-gradient(circle, rgba(197, 1, 2, 0.15) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 3px;
  background: var(--gradient-red-gold);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-red-gold);
  color: var(--secondary-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 20px;
  box-shadow: 
    0 0 20px rgba(255, 23, 68, 0.6),
    0 0 40px rgba(197, 1, 2, 0.4),
    inset 0 0 20px rgba(255, 215, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.1s both, badgeGlow 2s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

@keyframes badgeGlow {
  0%, 100% { 
    box-shadow: 
      0 0 20px rgba(255, 23, 68, 0.6),
      0 0 40px rgba(197, 1, 2, 0.4);
  }
  50% { 
    box-shadow: 
      0 0 30px rgba(255, 23, 68, 0.9),
      0 0 60px rgba(197, 1, 2, 0.6),
      0 0 90px rgba(255, 215, 0, 0.4);
  }
}

.hero-content h1 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content > p {
  margin-bottom: 40px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.countdown-container {
  margin: 50px 0;
  animation: fadeInUp 1s ease-out 0.6s both;
  position: relative;
}

.countdown-container h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--accent-gold);
  text-shadow: 
    0 0 10px var(--neon-gold),
    0 0 20px var(--neon-gold),
    0 0 30px var(--neon-gold),
    0 0 40px rgba(255, 23, 68, 0.5);
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: textFlicker 3s infinite;
}

@keyframes textFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.countdown-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.fireworks-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}

.firework {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
}

.firework-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  pointer-events: none;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.countdown-item {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 0, 0, 0.9) 100%);
  backdrop-filter: blur(10px);
  border: 3px solid;
  border-image: linear-gradient(135deg, var(--neon-red), var(--neon-gold), var(--neon-orange)) 1;
  border-radius: 15px;
  padding: 25px 30px;
  min-width: 120px;
  box-shadow: 
    0 0 20px rgba(255, 23, 68, 0.6),
    0 0 40px rgba(197, 1, 2, 0.4),
    inset 0 0 20px rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.countdown-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 23, 68, 0.15) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
  z-index: 0;
}

.countdown-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 0 30px rgba(255, 23, 68, 0.9),
    0 0 60px rgba(197, 1, 2, 0.6),
    inset 0 0 30px rgba(255, 215, 0, 0.2);
  border-image: linear-gradient(135deg, var(--neon-gold), var(--neon-red), var(--neon-orange)) 1;
}

.countdown-item.firework-active {
  animation: fireworkPulse 0.6s ease;
}

@keyframes fireworkPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 
      0 0 20px rgba(255, 23, 68, 0.6),
      0 0 40px rgba(197, 1, 2, 0.4);
  }
  50% { 
    transform: scale(1.15);
    box-shadow: 
      0 0 50px rgba(255, 23, 68, 1),
      0 0 100px rgba(197, 1, 2, 0.8),
      0 0 150px rgba(255, 215, 0, 0.6);
  }
}

.countdown-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  background: var(--gradient-red-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 
    0 0 20px rgba(255, 23, 68, 0.8),
    0 0 40px rgba(197, 1, 2, 0.6);
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
  0%, 100% { 
    filter: brightness(1);
    text-shadow: 
      0 0 20px rgba(255, 23, 68, 0.8),
      0 0 40px rgba(197, 1, 2, 0.6);
  }
  50% { 
    filter: brightness(1.3);
    text-shadow: 
      0 0 30px rgba(255, 23, 68, 1),
      0 0 60px rgba(197, 1, 2, 0.8),
      0 0 90px rgba(255, 215, 0, 0.6);
  }
}

.countdown-label {
  font-size: 0.85rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px var(--neon-gold), 0 0 20px rgba(255, 23, 68, 0.5);
  position: relative;
  z-index: 1;
}

.countdown-separator {
  font-size: 3rem;
  color: var(--accent-gold);
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 
    0 0 10px var(--neon-gold),
    0 0 20px var(--neon-gold),
    0 0 30px var(--neon-gold);
  animation: separatorPulse 1s ease-in-out infinite;
}

@keyframes separatorPulse {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.btn-hero {
  margin-top: 30px;
  font-size: 1.3rem;
  padding: 20px 50px;
  background: var(--gradient-red-gold);
  color: var(--secondary-color);
  border: 3px solid transparent;
  box-shadow: 
    0 0 30px rgba(255, 23, 68, 0.6),
    0 0 60px rgba(197, 1, 2, 0.4),
    inset 0 0 30px rgba(255, 215, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.8s both, buttonPulse 2s ease-in-out infinite;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: rotate 3s linear infinite;
}

.btn-hero:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 
    0 0 50px rgba(255, 23, 68, 0.9),
    0 0 100px rgba(197, 1, 2, 0.7),
    0 0 150px rgba(255, 215, 0, 0.5),
    inset 0 0 40px rgba(255, 215, 0, 0.3);
}

@keyframes buttonPulse {
  0%, 100% { 
    box-shadow: 
      0 0 30px rgba(255, 23, 68, 0.6),
      0 0 60px rgba(197, 1, 2, 0.4);
  }
  50% { 
    box-shadow: 
      0 0 40px rgba(255, 23, 68, 0.9),
      0 0 80px rgba(197, 1, 2, 0.6),
      0 0 120px rgba(255, 215, 0, 0.4);
  }
}

.stats {
  margin-top: 50px;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(197, 1, 2, 0.3);
  box-shadow: var(--shadow-card);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.features {
  margin-top: 50px;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(197, 1, 2, 0.3);
  box-shadow: var(--shadow-card);
}

.features-header {
  text-align: center;
  margin-bottom: 50px;
}

.features-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(197, 1, 2, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(197, 1, 2, 0.5);
}

.feature-icon i {
  font-size: 2.5rem;
  color: var(--text-primary);
}

.feature-card h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.testimonials {
  margin-top: 50px;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(197, 1, 2, 0.3);
  box-shadow: var(--shadow-card);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid rgba(197, 1, 2, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-hover);
}

.testimonial-rating {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  color: var(--text-primary);
  font-size: 1.1rem;
}

.testimonial-author span {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.about-us {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 50px;
  gap: 20px;
  animation: fadeInUp 1s ease-out;
}

.about-us-banner {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.about-us-banner:hover {
  transform: scale(1.02);
}

.about-us-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.about-us-intro {
  flex: 1;
  max-width: 50%;
  padding: 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 0, 0, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--neon-red), var(--neon-gold)) 1;
  box-shadow: 
    var(--shadow-card),
    0 0 30px rgba(255, 23, 68, 0.2);
}

.about-us-intro h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  background: var(--gradient-red-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.about-us-intro p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-us-intro p:last-child {
  margin-bottom: 0;
}

.about-features-list {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.about-features-list li {
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-features-list li i {
  color: var(--neon-red);
  font-size: 1.2rem;
  text-shadow: 0 0 10px var(--neon-red);
}

.bonus {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.bonus-carousel {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  box-shadow: var(--shadow-card);
}

.bonus-carousel a {
  flex-shrink: 0;
  width: 100%;
}

.bonus-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.bonus-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.bonus-banner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 15px;
  max-width: 600px;
  margin-top: 30px;
  height: auto;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.bonus-banner:hover {
  transform: scale(1.02);
}

.bonus-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.bonus-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.9) 100%);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(197, 1, 2, 0.3);
  box-shadow: var(--shadow-card);
}

.bonus-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-intro p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.bonus-card {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 0, 0, 0.95) 100%);
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  transition: all 0.3s ease;
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--neon-red), var(--neon-gold)) 1;
  box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 23, 68, 0.2);
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 23, 68, 0.1) 0%, transparent 70%);
  animation: rotate 15s linear infinite;
  z-index: 0;
}

.bonus-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-image: linear-gradient(135deg, var(--neon-gold), var(--neon-red), var(--neon-orange)) 1;
  box-shadow: 
    var(--shadow-hover),
    0 0 40px rgba(255, 23, 68, 0.6),
    0 0 80px rgba(197, 1, 2, 0.4);
}

.bonus-card h4 {
  font-size: 1.2rem;
  color: var(--neon-gold);
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 0 0 10px var(--neon-gold);
  position: relative;
  z-index: 1;
  font-family: 'Orbitron', sans-serif;
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.bonus-card i {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--neon-red);
  filter: drop-shadow(0 0 10px var(--neon-red));
  text-shadow: 
    0 0 10px var(--neon-red),
    0 0 20px var(--neon-red);
  position: relative;
  z-index: 1;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { 
    filter: drop-shadow(0 0 10px var(--neon-red));
    transform: scale(1);
  }
  50% { 
    filter: drop-shadow(0 0 20px var(--neon-red));
    transform: scale(1.1);
  }
}

.games {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 0, 0, 0.95) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--neon-red), var(--neon-gold), var(--neon-orange)) 1;
  box-shadow: 
    var(--shadow-card),
    0 0 40px rgba(255, 23, 68, 0.3);
}

.games-intro {
  text-align: center;
}

.games-intro h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  background: var(--gradient-red-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.games-intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.game-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 0, 0, 0.95) 100%);
  border-radius: 15px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--neon-red), var(--neon-gold)) 1;
  box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 23, 68, 0.2);
  position: relative;
}

.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 23, 68, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.game-card:hover::before {
  opacity: 1;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-image: linear-gradient(135deg, var(--neon-gold), var(--neon-red), var(--neon-orange)) 1;
  box-shadow: 
    var(--shadow-hover),
    0 0 40px rgba(255, 23, 68, 0.6),
    0 0 80px rgba(197, 1, 2, 0.4);
}

.game-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.game-card:hover img {
  transform: scale(1.05);
}

.game-card h4 {
  font-size: 1.3rem;
  color: var(--neon-gold);
  margin: 0 0 10px 0;
  font-weight: 700;
  text-shadow: 0 0 10px var(--neon-gold);
  font-family: 'Orbitron', sans-serif;
}

.game-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.game-stats {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.game-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--neon-gold);
  text-shadow: 0 0 5px var(--neon-gold);
}

.game-stats i {
  color: var(--neon-red);
  text-shadow: 0 0 5px var(--neon-red);
}

.game-providers {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 0, 0, 0.7) 100%);
  border-radius: 15px;
  border: 1px solid rgba(255, 23, 68, 0.3);
  text-align: center;
}

.game-providers h4 {
  font-size: 1.5rem;
  color: var(--neon-gold);
  margin-bottom: 15px;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px var(--neon-gold);
}

.game-providers > p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
}

.providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.providers-list span {
  padding: 8px 20px;
  background: rgba(255, 23, 68, 0.1);
  border: 1px solid rgba(255, 23, 68, 0.3);
  border-radius: 20px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.providers-list span:hover {
  background: rgba(255, 23, 68, 0.2);
  border-color: var(--neon-red);
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(255, 23, 68, 0.3);
}

.faq {
  margin-top: 50px;
  padding: 40px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 0, 0, 0.95) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--neon-red), var(--neon-gold)) 1;
  box-shadow: 
    var(--shadow-card),
    0 0 40px rgba(255, 23, 68, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
  background: var(--gradient-red-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.faq-item {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 0, 0, 0.95) 100%);
  border-radius: 12px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--neon-red), var(--neon-gold)) 1;
  box-shadow: 
    0 3px 10px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(255, 23, 68, 0.2);
}

.faq-item:hover {
  border-image: linear-gradient(135deg, var(--neon-gold), var(--neon-red)) 1;
  box-shadow: 
    0 5px 20px rgba(255, 23, 68, 0.4),
    0 0 30px rgba(197, 1, 2, 0.3);
  transform: translateX(5px);
}

.faq-item.active {
  border-image: linear-gradient(135deg, var(--neon-gold), var(--neon-red), var(--neon-orange)) 1;
  box-shadow: 
    0 5px 25px rgba(255, 23, 68, 0.6),
    0 0 40px rgba(197, 1, 2, 0.4);
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.1) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.faq-item h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
  padding-right: 30px;
  font-weight: 600;
}

.faq-item h4::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--neon-red);
  text-shadow: 0 0 10px var(--neon-red);
  transition: transform 0.3s ease;
  font-weight: 900;
}

.faq-item.active h4::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  opacity: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
}

.faq-table-container {
  margin: 30px 0;
  overflow-x: auto;
  border-radius: 15px;
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--neon-red), var(--neon-gold)) 1;
  box-shadow: 
    0 5px 20px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 23, 68, 0.2);
}

.faq-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 0, 0, 0.95) 100%);
  font-size: 0.95rem;
}

.faq-table thead {
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.2) 0%, rgba(197, 1, 2, 0.2) 100%);
}

.faq-table th {
  padding: 20px;
  text-align: left;
  color: var(--neon-gold);
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px var(--neon-gold);
  border-bottom: 2px solid rgba(255, 23, 68, 0.5);
}

.faq-table td {
  padding: 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  border-bottom: 1px solid rgba(255, 23, 68, 0.1);
  vertical-align: top;
}

.faq-table td:first-child {
  color: var(--neon-red);
  font-weight: 600;
  min-width: 250px;
  width: 30%;
  text-shadow: 0 0 5px rgba(255, 23, 68, 0.5);
}

.faq-table tbody tr {
  transition: all 0.3s ease;
}

.faq-table tbody tr:hover {
  background: rgba(255, 23, 68, 0.05);
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.1);
}

.faq-table tbody tr:last-child td {
  border-bottom: none;
}

.faq-accordion {
  margin-top: 50px;
}

.faq-accordion h4 {
  font-size: 1.5rem;
  color: var(--neon-gold);
  margin-bottom: 25px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px var(--neon-gold);
}

.payment-methods {
  margin-top: 50px;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 0, 0, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--neon-red), var(--neon-gold)) 1;
  box-shadow: 
    var(--shadow-card),
    0 0 40px rgba(255, 23, 68, 0.3);
}

.payment-header {
  text-align: center;
  margin-bottom: 40px;
}

.payment-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: var(--gradient-red-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.payment-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.payment-item {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 0, 0, 0.95) 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--neon-red), var(--neon-gold)) 1;
  box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 23, 68, 0.2);
  transition: all 0.3s ease;
}

.payment-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(255, 23, 68, 0.4);
}

.payment-item i {
  font-size: 3rem;
  color: var(--neon-red);
  margin-bottom: 15px;
  text-shadow: 0 0 15px var(--neon-red);
  display: block;
}

.payment-item h4 {
  font-size: 1.3rem;
  color: var(--neon-gold);
  margin-bottom: 10px;
  font-weight: 600;
  text-shadow: 0 0 10px var(--neon-gold);
}

.payment-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.responsible-gaming {
  margin-top: 50px;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 0, 0, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--neon-red), var(--neon-gold)) 1;
  box-shadow: 
    var(--shadow-card),
    0 0 40px rgba(255, 23, 68, 0.3);
}

.responsible-content {
  text-align: center;
}

.responsible-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--gradient-red-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.responsible-content > p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.responsible-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.responsible-item {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 0, 0, 0.7) 100%);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 23, 68, 0.3);
  transition: all 0.3s ease;
}

.responsible-item:hover {
  border-color: var(--neon-red);
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.3);
}

.responsible-item i {
  font-size: 2.5rem;
  color: var(--neon-red);
  margin-bottom: 15px;
  display: block;
  text-shadow: 0 0 10px var(--neon-red);
}

.responsible-item h4 {
  font-size: 1.2rem;
  color: var(--neon-gold);
  margin-bottom: 10px;
  font-weight: 600;
  text-shadow: 0 0 10px var(--neon-gold);
}

.responsible-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.responsible-disclaimer {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 23, 68, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 23, 68, 0.3);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 0, 0, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 50px 20px;
  margin-top: 60px;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--neon-red), var(--neon-gold), var(--neon-orange)) 1;
  box-shadow: 
    0 -4px 20px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(255, 23, 68, 0.2);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  height: 50px;
  filter: drop-shadow(0 0 10px var(--accent-glow));
  margin-bottom: 10px;
}

.footer-logo p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1000px;
}

.footer-section h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 1, 2, 0.2);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(197, 1, 2, 0.5);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
}

.footer-links a:hover {
  color: var(--primary-color);
  background: rgba(197, 1, 2, 0.1);
  transform: translateY(-2px);
}

.footer-copy {
  text-align: center;
  width: 100%;
}

.footer-copy p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.footer-copy p:last-child {
  margin-bottom: 0;
}

.footer-disclaimer {
  font-size: 0.85rem !important;
  color: var(--text-secondary) !important;
  opacity: 0.8;
}

.footer-copy a {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.footer-copy a:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .hero {
    padding: 60px 40px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .about-us {
    flex-direction: column;
  }

  .about-us-banner,
  .about-us-intro {
    max-width: 100%;
    border-radius: 15px;
  }

  .about-us-intro {
    padding: 30px;
  }

  .bonus {
    flex-direction: column;
  }

  .bonus-banner,
  .bonus-details {
    max-width: 100%;
  }

  .games {
    padding: 30px;
  }

  .faq {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 15px;
    width: 100%;
    gap: 15px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    padding: 40px 30px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .countdown-container h2 {
    font-size: 1.2rem;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-item {
    padding: 15px 20px;
    min-width: 80px;
  }

  .countdown-number {
    font-size: 1.8rem;
  }

  .countdown-separator {
    font-size: 1.8rem;
  }

  .about-us-intro h2 {
    font-size: 1.5rem;
  }

  .games-intro h3,
  .faq h3,
  .features-header h2,
  .testimonials-header h2 {
    font-size: 1.6rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .features-grid,
  .testimonials-grid,
  .payment-grid,
  .responsible-features {
    grid-template-columns: 1fr;
  }

  .faq-table-container {
    overflow-x: scroll;
  }

  .faq-table {
    font-size: 0.85rem;
  }

  .faq-table th,
  .faq-table td {
    padding: 15px 10px;
  }

  .faq-table td:first-child {
    min-width: 200px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-container {
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }

  .hero {
    padding: 30px 20px;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }

  .countdown-container h2 {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .countdown {
    gap: 8px;
  }

  .countdown-item {
    padding: 12px 15px;
    min-width: 70px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .countdown-label {
    font-size: 0.75rem;
  }

  .countdown-separator {
    font-size: 1.5rem;
  }

  .btn-hero {
    font-size: 1rem;
    padding: 15px 35px;
  }

  .about-us-intro {
    padding: 25px;
  }

  .about-us-intro h2 {
    font-size: 1.3rem;
  }

  .bonus-details {
    padding: 25px;
  }

  .games {
    padding: 25px;
  }

  .faq {
    padding: 25px;
  }

  .footer {
    padding: 40px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .stats {
    padding: 40px 20px;
  }

  .features,
  .testimonials {
    padding: 40px 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .features-header h2,
  .testimonials-header h2 {
    font-size: 1.4rem;
  }

  .faq-table {
    font-size: 0.75rem;
  }

  .faq-table th,
  .faq-table td {
    padding: 12px 8px;
  }

  .faq-table td:first-child {
    min-width: 150px;
    font-size: 0.8rem;
  }
}
