@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);
}

.bonus-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;
}

.bonus-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%);
  animation: rotate 20s linear infinite;
  z-index: 1;
}

.bonus-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);
  }
}

.bonus-highlights {
  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), var(--neon-orange)) 1;
  box-shadow: var(--shadow-card);
}

.bonus-highlights-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 0, 0, 0.95) 100%);
  padding: 40px 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;
  position: relative;
  overflow: hidden;
}

.highlight-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;
}

.highlight-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);
}

.highlight-card.featured {
  border-image: linear-gradient(135deg, var(--neon-gold), var(--neon-red), var(--neon-gold)) 1;
  box-shadow: 
    0 0 30px rgba(255, 215, 0, 0.5),
    0 0 60px rgba(255, 23, 68, 0.3);
}

.highlight-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-red-gold);
  color: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}

.highlight-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.highlight-card h3 {
  font-size: 1.5rem;
  color: var(--neon-gold);
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 0 10px var(--neon-gold);
  font-family: 'Orbitron', sans-serif;
  position: relative;
  z-index: 1;
}

.highlight-amount {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-red-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  font-family: 'Orbitron', sans-serif;
  position: relative;
  z-index: 1;
}

.highlight-card > p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.highlight-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.highlight-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.highlight-features li::marker {
  color: var(--neon-red);
}

.bonus-details-section {
  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);
}

.bonus-details-header {
  text-align: center;
  margin-bottom: 50px;
}

.bonus-details-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;
}

.bonus-details-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.bonus-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.bonus-detail-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 0, 0, 0.95) 100%);
  padding: 35px;
  border-radius: 15px;
  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;
  position: relative;
  overflow: hidden;
}

.bonus-detail-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-detail-card:hover {
  transform: translateY(-5px);
  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);
}

.bonus-detail-card i {
  font-size: 3rem;
  color: var(--neon-red);
  margin-bottom: 20px;
  display: block;
  text-shadow: 0 0 15px var(--neon-red);
  position: relative;
  z-index: 1;
}

.bonus-detail-card h4 {
  font-size: 1.4rem;
  color: var(--neon-gold);
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 0 10px var(--neon-gold);
  font-family: 'Orbitron', sans-serif;
  position: relative;
  z-index: 1;
}

.bonus-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-red);
  margin-bottom: 15px;
  text-shadow: 0 0 10px var(--neon-red);
  position: relative;
  z-index: 1;
}

.bonus-detail-card > p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.bonus-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
  padding: 15px;
  background: rgba(255, 23, 68, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 23, 68, 0.3);
  position: relative;
  z-index: 1;
}

.bonus-terms span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.bonus-terms strong {
  color: var(--neon-gold);
}

.bonus-terms-section {
  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);
}

.bonus-terms-content {
  text-align: center;
}

.bonus-terms-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;
}

.bonus-terms-content > p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.term-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);
  text-align: left;
  transition: all 0.3s ease;
}

.term-item:hover {
  border-color: var(--neon-red);
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.3);
  transform: translateY(-3px);
}

.term-item h4 {
  font-size: 1.2rem;
  color: var(--neon-gold);
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 0 10px var(--neon-gold);
}

.term-item h4 i {
  color: var(--neon-red);
  text-shadow: 0 0 10px var(--neon-red);
}

.term-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.terms-note {
  margin-top: 40px;
  padding: 25px;
  background: rgba(255, 23, 68, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 23, 68, 0.3);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.terms-note p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.terms-note strong {
  color: var(--neon-gold);
}

.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(180px, 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.1rem;
  color: var(--neon-gold);
  margin: 0 0 8px 0;
  font-weight: 600;
  text-shadow: 0 0 10px var(--neon-gold);
  font-family: 'Orbitron', sans-serif;
}

.game-card > p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.btn-play {
  display: inline-block;
  padding: 10px 25px;
  background: var(--gradient-red-gold);
  color: var(--secondary-color);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 
    0 0 20px rgba(255, 23, 68, 0.6),
    0 0 40px rgba(197, 1, 2, 0.4);
  position: relative;
  z-index: 1;
}

.btn-play:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 
    0 0 30px rgba(255, 23, 68, 0.9),
    0 0 60px rgba(197, 1, 2, 0.6);
}

.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;
}

@media (max-width: 1024px) {
  .bonus-highlights-container,
  .bonus-details-grid,
  .terms-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .bonus-hero {
    padding: 40px 30px;
  }

  .bonus-highlights,
  .bonus-details-section,
  .bonus-terms-section {
    padding: 40px 20px;
  }

  .bonus-highlights-container,
  .bonus-details-grid,
  .terms-grid {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-amount {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .bonus-hero {
    padding: 30px 20px;
  }

  .bonus-highlights,
  .bonus-details-section,
  .bonus-terms-section {
    padding: 30px 15px;
  }

  .games {
    padding: 25px 15px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .highlight-amount {
    font-size: 1.8rem;
  }

  .bonus-details-header h2,
  .bonus-terms-content h2 {
    font-size: 1.8rem;
  }
}
