@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://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #C50102;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #FF0000;
}

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

body {
  font-family: 'Ubuntu', sans-serif;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 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;
}


a {
  text-decoration: none;
  color: var(--accent-primary);
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.navbar {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
}

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--primary-color);
}

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
}

.auth-image-link {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
}

.auth-button-img {
  height: auto;
  max-height: 45px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.auth-image-link:hover .auth-button-img {
  transform: scale(1.05);
  opacity: 0.9;
  filter: brightness(1.1);
}

.auth-image-link:active .auth-button-img {
  transform: scale(0.98);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(197, 1, 2, 0.15) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(197, 1, 2, 0.15) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 80px 50px;
  margin: 20px 0 40px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.bonus-hero {
  background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.15), transparent 70%),
              radial-gradient(ellipse at bottom, rgba(197, 1, 2, 0.2), transparent 70%),
              linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(17, 17, 17, 0.9) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(255, 215, 0, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.casino-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.casino-particles .particle {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: float-particle 15s infinite ease-in-out;
}

.casino-particles .particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.casino-particles .particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 1s; }
.casino-particles .particle:nth-child(3) { top: 60%; left: 15%; animation-delay: 2s; }
.casino-particles .particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.casino-particles .particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 4s; }
.casino-particles .particle:nth-child(6) { top: 70%; left: 90%; animation-delay: 5s; }
.casino-particles .particle:nth-child(7) { top: 15%; left: 30%; animation-delay: 6s; }
.casino-particles .particle:nth-child(8) { top: 50%; left: 60%; animation-delay: 7s; }
.casino-particles .particle:nth-child(9) { top: 85%; left: 25%; animation-delay: 8s; }
.casino-particles .particle:nth-child(10) { top: 40%; left: 85%; animation-delay: 9s; }
.casino-particles .particle:nth-child(11) { top: 65%; left: 5%; animation-delay: 10s; }
.casino-particles .particle:nth-child(12) { top: 25%; left: 75%; animation-delay: 11s; }

@keyframes float-particle {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translate(20px, -30px) rotate(90deg);
    opacity: 0.5;
  }
  50% {
    transform: translate(-15px, -50px) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translate(30px, -20px) rotate(270deg);
    opacity: 0.6;
  }
}

.casino-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
  animation: shine-rotate 8s infinite linear;
  z-index: 1;
  pointer-events: none;
}

@keyframes shine-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.hero-badge-wrapper {
  margin-bottom: 8px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 50px;
  color: #FFD700;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
              inset 0 0 10px rgba(255, 215, 0, 0.1);
}

.pulse-glow {
  animation: pulse-glow-animation 2s infinite ease-in-out;
}

@keyframes pulse-glow-animation {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
                inset 0 0 10px rgba(255, 215, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5),
                inset 0 0 15px rgba(255, 215, 0, 0.2);
  }
}

.sparkle {
  font-size: 1.2rem;
  animation: sparkle-twinkle 1.5s infinite ease-in-out;
}

@keyframes sparkle-twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.casino-title {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

.title-glow {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
  display: block;
}

.casino-tagline {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.bonus-tagline {
  font-size: 1.3rem;
}

.tagline-animate {
  display: inline-block;
  animation: tagline-pulse 2s infinite ease-in-out;
}

.tagline-animate:nth-child(2) {
  animation-delay: 0.3s;
}

.tagline-animate:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes tagline-pulse {
  0%, 100% {
    opacity: 0.9;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-description {
  font-size: 1.3rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.6;
}

.hero-subdescription {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 16px;
}

.hero-highlight {
  font-weight: 600;
  color: #FFD700;
  font-size: 1.15rem;
  margin-top: 8px;
}

.hero-cta-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-jackpot {
  position: relative;
  padding: 18px 40px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 50px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4),
              0 0 20px rgba(255, 215, 0, 0.2);
}

.btn-jackpot:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6),
              0 0 30px rgba(255, 215, 0, 0.4);
}

.btn-sparkle {
  margin-right: 8px;
  font-size: 1.3rem;
}

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

.btn-jackpot:hover .btn-shine {
  left: 100%;
}

.btn-gold {
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 215, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-gold:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-icon {
  margin-right: 8px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 900px;
}

.bonus-features {
  margin-top: 32px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2),
              0 0 20px rgba(255, 215, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-text strong {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 700;
  display: block;
}

.feature-text span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.final-thoughts {
  margin-top: 40px;
}

/* Welcome Bonus Section - New Design */
.welcome-bonus-section {
  width: 100%;
  padding: 0;
  background: transparent;
  border-radius: 20px;
}

.welcome-bonus-inner {
  background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.1), transparent 70%),
              linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(17, 17, 17, 0.9) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(255, 215, 0, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  max-width: 1100px;
  margin: 0 auto;
}

.welcome-bonus-header {
  text-align: center;
  margin-bottom: 40px;
}

.welcome-bonus-image-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 24px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
              0 0 30px rgba(255, 215, 0, 0.2);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.welcome-bonus-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.5);
}

.welcome-bonus-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.welcome-bonus-image-wrapper:hover .welcome-bonus-image {
  transform: scale(1.05);
}

.welcome-bonus-title {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.welcome-bonus-tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin-bottom: 16px;
  font-style: italic;
}

.welcome-bonus-intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 0;
}

.welcome-offer-example {
  margin-bottom: 40px;
}

.welcome-offer-header {
  margin-bottom: 16px;
}

.offer-label {
  font-size: 1.1rem;
  color: rgba(255, 215, 0, 0.9);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.welcome-offer-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.1));
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2),
              0 0 20px rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.welcome-offer-card:hover {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3),
              0 0 30px rgba(255, 215, 0, 0.2);
  transform: translateY(-4px);
}

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

.offer-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  animation: bounce-emoji 2s infinite ease-in-out;
}

@keyframes bounce-emoji {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.offer-content {
  flex: 1;
}

.offer-main {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.offer-title {
  font-size: 1.4rem;
  color: #FFD700;
  font-weight: 800;
  display: inline-block;
}

.offer-plus {
  font-size: 1.8rem;
  color: rgba(255, 215, 0, 0.8);
  font-weight: 900;
}

.offer-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin: 0;
}

.how-it-works {
  margin-bottom: 40px;
}

.how-it-works-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.how-it-works-icon {
  font-size: 2rem;
}

.how-it-works-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.steps-container {
  display: grid;
  gap: 20px;
}

.welcome-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.welcome-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.welcome-step:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.welcome-step:hover::before {
  transform: scaleY(1);
}

.step-number {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  font-weight: 900;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4),
              0 0 10px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.welcome-step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6),
              0 0 15px rgba(255, 215, 0, 0.4);
}

.step-content {
  flex: 1;
  padding-top: 4px;
}

.step-title {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.pro-tip-box {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 140, 0, 0.08));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-left: 5px solid #FFD700;
  border-radius: 16px;
  padding: 28px;
  position: relative;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pro-tip-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pro-tip-icon {
  font-size: 1.8rem;
}

.pro-tip-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFD700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pro-tip-content {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.why-choose {
  display: block;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

/* Bonus Differences Section - New Design */
.bonus-differences {
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
}

.bonus-differences-inner {
  background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.1), transparent 70%),
              linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(17, 17, 17, 0.8) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(255, 215, 0, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.bonus-differences-header {
  text-align: center;
  margin-bottom: 48px;
}

.bonus-differences-title {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.bonus-differences-intro {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-differences-subtitle {
  font-size: 1.15rem;
  color: #FFD700;
  font-weight: 600;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.bonus-differences-content {
  max-width: 1100px;
  margin: 0 auto;
}

.bonus-differences-subheading {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.bonus-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.bonus-feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.bonus-feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.bonus-feature-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(255, 215, 0, 0.25),
              0 0 30px rgba(255, 215, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bonus-feature-item:hover::before {
  transform: scaleX(1);
}

.bonus-feature-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.bonus-feature-emoji {
  font-size: 2.5rem;
  display: inline-block;
  animation: emoji-bounce 2s infinite ease-in-out;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.bonus-feature-item:nth-child(1) .bonus-feature-emoji {
  animation-delay: 0s;
}

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

.bonus-feature-item:nth-child(3) .bonus-feature-emoji {
  animation-delay: 0.4s;
}

.bonus-feature-item:nth-child(4) .bonus-feature-emoji {
  animation-delay: 0.6s;
}

.bonus-feature-item:nth-child(5) .bonus-feature-emoji {
  animation-delay: 0.8s;
}

@keyframes emoji-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.1);
  }
}

.bonus-feature-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonus-feature-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}

.bonus-differences-closing {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.bonus-closing-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFD700;
  line-height: 1.6;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  max-width: 800px;
  margin: 0 auto;
}

.why-choose-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
}

.why-choose-intro h2 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-choose-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-choose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.why-choose-card {
  flex: 1;
  min-width: 200px;
  background-color: var(--third-color);
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
}

.why-choose-card h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-choose-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-choose-card i {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent-primary);
}

.games {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--secondary-color);
}

.games-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.games-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.game-card {
  background-color: var(--third-color);
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.game-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.btn-play {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 20px;
  background-color: var(--accent-primary);
  color: var(--text-primary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-play:hover {
  background-color: var(--primary-color);
}

/* Bonus Games Section - New Design */
.bonus-games-section {
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
}

.bonus-games-inner {
  background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.08), transparent 70%),
              linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(17, 17, 17, 0.85) 100%);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(255, 215, 0, 0.06),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.bonus-games-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-games-title {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.bonus-games-lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500;
}

.bonus-games-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 0;
}

.bonus-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

/* Bonus Games Table Format */
.bonus-games-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.bonus-games-table thead {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.1));
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.bonus-games-table th {
  padding: 20px;
  text-align: left;
  font-weight: 800;
  font-size: 1.1rem;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-right: 1px solid rgba(255, 215, 0, 0.2);
}

.bonus-games-table th:last-child {
  border-right: none;
}

.table-header-image {
  width: 180px;
  min-width: 180px;
}

.table-header-title {
  width: 200px;
  min-width: 200px;
}

.table-header-desc {
  width: auto;
  min-width: 300px;
}

.table-header-features {
  width: 200px;
  min-width: 200px;
}

.table-header-action {
  width: 150px;
  min-width: 150px;
  text-align: center;
}

.bonus-game-row {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.bonus-game-row:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
  transform: scale(1.01);
}

.bonus-game-row:last-child {
  border-bottom: none;
}

.bonus-games-table td {
  padding: 24px 20px;
  vertical-align: middle;
  border-right: 1px solid rgba(255, 215, 0, 0.1);
}

.bonus-games-table td:last-child {
  border-right: none;
}

.table-cell-image {
  width: 180px;
  padding: 20px;
}

.table-cell-image .bonus-game-image-wrapper {
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.table-cell-title {
  width: 200px;
  vertical-align: middle;
}

.table-cell-title .bonus-game-title {
  margin: 0;
  font-size: 1.3rem;
}

.table-cell-desc {
  width: auto;
  vertical-align: middle;
}

.table-cell-desc .bonus-game-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.table-cell-features {
  width: 200px;
  vertical-align: middle;
}

.table-cell-features .bonus-game-meta {
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.table-cell-action {
  width: 150px;
  text-align: center;
  vertical-align: middle;
}

.table-cell-action .bonus-game-btn {
  width: auto;
  padding: 12px 28px;
  font-size: 0.95rem;
  margin: 0;
}

.bonus-game-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  position: relative;
}

.bonus-game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 2;
}

.bonus-game-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3),
              0 0 40px rgba(255, 215, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.bonus-game-card:hover::before {
  transform: scaleX(1);
}

.bonus-game-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.bonus-game-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bonus-game-card:hover .bonus-game-image {
  transform: scale(1.1);
}

.bonus-game-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
}

.bonus-game-badge {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 140, 0, 0.9));
  color: #000;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4),
              0 0 10px rgba(255, 215, 0, 0.3);
  animation: badge-pulse 2s infinite ease-in-out;
}

@keyframes badge-pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4),
                0 0 10px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6),
                0 0 15px rgba(255, 215, 0, 0.5);
  }
}

.bonus-game-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.bonus-game-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonus-game-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.bonus-game-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.bonus-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.meta-icon {
  font-size: 1.1rem;
}

.bonus-game-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4),
              0 0 15px rgba(255, 215, 0, 0.2);
  margin-top: 8px;
  width: 100%;
  text-align: center;
}

.bonus-game-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.6),
              0 0 25px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.bonus-games-footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 215, 0, 0.15);
}

.bonus-games-note {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  font-style: italic;
}

/* Bonus Info Sections - New Design */
.bonus-info-sections {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bonus-info-card {
  background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.08), transparent 70%),
              linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.85) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(255, 215, 0, 0.06),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.bonus-info-card:hover {
  border-color: rgba(255, 215, 0, 0.35);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6),
              0 0 50px rgba(255, 215, 0, 0.1);
  transform: translateY(-4px);
}

.bonus-info-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.info-emoji {
  font-size: 3rem;
  flex-shrink: 0;
  animation: emoji-float 3s infinite ease-in-out;
}

@keyframes emoji-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.bonus-info-title {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  line-height: 1.2;
}

.bonus-info-intro {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 20px;
}

.bonus-info-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 20px;
}

.bonus-info-conclusion {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-weight: 500;
  margin-top: 24px;
}

.info-highlights {
  background: rgba(255, 215, 0, 0.08);
  border-left: 4px solid #FFD700;
  border-radius: 12px;
  padding: 24px;
  margin: 28px 0;
}

.info-highlights-title {
  font-size: 1.3rem;
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 16px;
}

.info-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-highlights-list li {
  padding: 12px 0 12px 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
}

.info-highlights-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: 900;
  font-size: 1.3rem;
}

.info-example-box {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.1));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.example-label {
  display: block;
  color: #FFD700;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.example-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

/* Tips Container */
.tips-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.tip-item {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.tip-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.tip-number {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.tip-content {
  flex: 1;
}

.tip-title {
  font-size: 1.4rem;
  color: #FFD700;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.tip-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 12px;
}

.tip-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.tip-list li {
  padding: 8px 0 8px 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
}

.tip-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: 900;
  font-size: 1.5rem;
}

.tip-note {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-top: 12px;
}

/* Promotions Grid */
.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.promotion-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.promotion-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2);
}

.promotion-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.promotion-title {
  font-size: 1.5rem;
  color: #FFD700;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promotion-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  text-align: left;
}

.promotion-list li {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

.promotion-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: 900;
}

.promotion-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 16px;
}

.promotion-note {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-top: 16px;
}

/* Banking Methods */
.banking-methods {
  margin: 32px 0;
}

.banking-title {
  font-size: 1.4rem;
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 20px;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.method-item {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 140, 0, 0.08));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.method-item:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.15));
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

/* Responsible Features */
.responsible-features {
  background: rgba(255, 215, 0, 0.08);
  border-left: 4px solid #FFD700;
  border-radius: 12px;
  padding: 28px;
  margin: 28px 0;
}

.responsible-title {
  font-size: 1.3rem;
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 20px;
}

.responsible-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.responsible-list li {
  padding: 14px 0 14px 36px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
}

.responsible-list li::before {
  content: "🛡️";
  position: absolute;
  left: 0;
  font-size: 1.3rem;
}

.responsible-note {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-weight: 500;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* Bonus Engagement Section */
.bonus-engagement-section {
  position: relative;
  padding: 80px 20px;
  background: radial-gradient(ellipse at center, rgba(197, 1, 2, 0.2) 0%, rgba(0, 0, 0, 0.95) 70%),
              radial-gradient(ellipse at top, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  overflow: hidden;
}

.bonus-engagement-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(197, 1, 2, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.bonus-engagement-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.bonus-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 140, 0, 0.2));
  border: 1px solid rgba(255, 0, 0, 0.5);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFD700;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  animation: pulse-glow 2s ease-in-out infinite;
}

.bonus-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff0000;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff0000;
  animation: bonus-pulse-red 1.5s ease-in-out infinite;
}

@keyframes bonus-pulse-red {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.bonus-engagement-title {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 50%, #FFD700 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  animation: shimmer-text 3s linear infinite;
}

@keyframes shimmer-text {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.bonus-engagement-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 50px;
  font-weight: 300;
}

.bonus-notifications {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 350px;
  pointer-events: none;
}

.bonus-notification {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(30, 0, 0, 0.95));
  border: 2px solid rgba(255, 215, 0, 0.6);
  border-left: 4px solid #FFD700;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
  animation: bonus-notification-slide 0.5s ease-out, bonus-notification-fade 4.5s ease-out 0.5s forwards;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

@keyframes bonus-notification-slide {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bonus-notification-fade {
  0%, 90% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(400px);
  }
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notification-icon {
  font-size: 1.8rem;
  color: #FFD700;
  animation: bonus-bounce-celebration 0.6s ease-out;
}

@keyframes bonus-bounce-celebration {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.2) rotate(-10deg);
  }
  75% {
    transform: scale(1.2) rotate(10deg);
  }
}

.notification-text {
  flex: 1;
}

.notification-name {
  font-weight: 700;
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.notification-bonus {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.notification-amount {
  font-weight: 900;
  font-size: 1.3rem;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.bonus-live-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.bonus-stat-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
}

.bonus-stat-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bonus-stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.bonus-stat-card:hover::before {
  opacity: 1;
}

.bonus-stat-icon {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.bonus-stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  line-height: 1;
}

.bonus-stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-weight: 500;
}

.bonus-stat-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #00ff88;
  font-weight: 700;
  text-transform: uppercase;
}

.bonus-pulse-dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: bonus-pulse-dot-live 1.5s ease-in-out infinite;
}

@keyframes bonus-pulse-dot-live {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.bonus-stat-card.updated {
  animation: bonus-stat-flash 0.6s ease-out;
}

@keyframes bonus-stat-flash {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
  }
  100% {
    transform: scale(1);
  }
}

.recent-bonus-claims {
  margin-bottom: 60px;
}

.bonus-claims-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.bonus-claims-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 215, 0, 0.5) transparent;
}

.bonus-claims-carousel::-webkit-scrollbar {
  height: 6px;
}

.bonus-claims-carousel::-webkit-scrollbar-track {
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
}

.bonus-claims-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.5);
  border-radius: 10px;
}

.bonus-claim-item {
  flex: 0 0 280px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(30, 0, 0, 0.8));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  scroll-snap-align: start;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.bonus-claim-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.claim-avatar {
  font-size: 2.5rem;
  color: #FFD700;
  flex-shrink: 0;
}

.claim-info {
  flex: 1;
}

.claim-name {
  font-weight: 700;
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 5px;
}

.claim-bonus {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.claim-amount {
  font-weight: 900;
  font-size: 1.4rem;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
  flex-shrink: 0;
}

.active-promotions-showcase {
  margin-bottom: 60px;
}

.promotions-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.promotions-grid-bonus {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.promo-highlight-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.promo-highlight-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.promo-highlight-card:hover::before {
  opacity: 1;
  animation: bonus-shimmer 0.8s ease;
}

@keyframes bonus-shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.promo-highlight-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.promo-icon {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.promo-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 10px;
}

.promo-value {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.promo-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.bonus-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.bonus-badge-item {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(30, 0, 0, 0.6));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.bonus-badge-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.bonus-badge-icon {
  font-size: 2.5rem;
  color: #FFD700;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.bonus-badge-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bonus-badge-text strong {
  font-size: 1.1rem;
  color: #FFD700;
  font-weight: 700;
}

.bonus-badge-text span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.bonus-engagement-cta {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.1));
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.bonus-cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  animation: bonus-rotate-glow 8s linear infinite;
  pointer-events: none;
}

@keyframes bonus-rotate-glow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.bonus-cta-content {
  position: relative;
  z-index: 1;
}

.bonus-cta-content h3 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonus-cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.btn-bonus-engagement {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

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

.btn-bonus-engagement:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.btn-bonus-engagement:active {
  transform: translateY(-1px) scale(1.02);
}

.btn-sparkle {
  font-size: 1.2rem;
  animation: bonus-bounce-celebration 2s ease-in-out infinite;
}

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

.btn-bonus-engagement:hover .btn-shine {
  left: 100%;
}

/* Responsive styles for bonus engagement section */
@media (max-width: 1024px) {
  .bonus-live-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .promotions-grid-bonus {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-trust-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bonus-engagement-section {
    padding: 60px 15px;
  }

  .bonus-engagement-title {
    font-size: 2rem;
  }

  .bonus-engagement-subtitle {
    font-size: 1rem;
  }

  .bonus-live-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .promotions-grid-bonus {
    grid-template-columns: 1fr;
  }

  .bonus-stat-card,
  .promo-highlight-card {
    padding: 25px 15px;
  }

  .bonus-stat-value {
    font-size: 2rem;
  }

  .bonus-claims-title,
  .promotions-title {
    font-size: 1.5rem;
  }

  .bonus-engagement-cta {
    padding: 40px 25px;
  }

  .bonus-cta-content h3 {
    font-size: 1.8rem;
  }

  .bonus-notifications {
    right: 10px;
    max-width: 280px;
  }
}

/* Bonus FAQ Section - New Design */
.bonus-faq-section {
  margin-top: 60px;
  margin-bottom: 40px;
}

.faq-inner {
  background: radial-gradient(ellipse at top, rgba(255, 215, 0, 0.08), transparent 70%),
              linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(17, 17, 17, 0.85) 100%);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(255, 215, 0, 0.06),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-title {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  line-height: 1.2;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin: 0;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 215, 0, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.faq-item:hover::before {
  transform: scaleX(1);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-item.active::before {
  transform: scaleX(1);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  position: relative;
}

.faq-number {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4),
              0 0 10px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.faq-item:hover .faq-number,
.faq-item.active .faq-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6),
              0 0 15px rgba(255, 215, 0, 0.4);
}

.faq-question-text {
  flex: 1;
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.4;
}

.faq-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(255, 215, 0, 0.15);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  font-size: 1.5rem;
  font-weight: 900;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 215, 0, 0.25);
  border-color: rgba(255, 215, 0, 0.5);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease,
              padding 0.4s ease;
  opacity: 0;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 28px 28px 84px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

/* Legacy FAQ styles for compatibility */
.faq {
  margin-top: 20px;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.footer {
  background-color: var(--secondary-color);
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 1px solid var(--);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  height: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .welcome-bonus-section {
    width: 100%;
  }

  .welcome-bonus-inner {
    border-radius: 20px;
    padding: 40px 30px;
  }

  .welcome-bonus-title {
    font-size: 2rem;
  }

  .welcome-bonus-tagline {
    font-size: 1.2rem;
  }

  .welcome-bonus-intro {
    font-size: 1rem;
  }

  .welcome-bonus-image-wrapper {
    max-width: 100%;
    margin: 20px auto;
  }

  .welcome-offer-card {
    flex-direction: column;
    text-align: center;
  }

  .offer-main {
    justify-content: center;
  }

  .steps-container {
    gap: 16px;
  }

  .welcome-step {
    padding: 20px;
  }

  .why-choose-grid {
    flex-direction: column;
  }

  .bonus-differences-inner {
    padding: 40px 30px;
  }

  .bonus-differences-title {
    font-size: 2.2rem;
  }

  .bonus-differences-intro {
    font-size: 1.1rem;
  }

  .bonus-differences-subtitle {
    font-size: 1.05rem;
  }

  .bonus-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bonus-feature-item {
    padding: 28px 24px;
  }

  .bonus-closing-text {
    font-size: 1.15rem;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-games-inner {
    padding: 40px 30px;
  }

  .bonus-games-title {
    font-size: 2rem;
  }

  .bonus-games-lead {
    font-size: 1.1rem;
  }

  .bonus-games-description {
    font-size: 1rem;
  }

  .bonus-games-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bonus-game-card {
    max-width: 100%;
  }

  .bonus-games-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bonus-games-table thead,
  .bonus-games-table tbody,
  .bonus-games-table tr,
  .bonus-games-table th,
  .bonus-games-table td {
    display: block;
  }

  .bonus-games-table thead {
    display: none;
  }

  .bonus-game-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
  }

  .bonus-game-row::before {
    content: attr(data-label);
    font-weight: 800;
    color: #FFD700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
  }

  .table-cell-image,
  .table-cell-title,
  .table-cell-desc,
  .table-cell-features,
  .table-cell-action {
    width: 100%;
    border-right: none;
    padding: 0;
  }

  .table-cell-image .bonus-game-image-wrapper {
    max-width: 100%;
  }

  .table-cell-action .bonus-game-btn {
    width: 100%;
  }

  .games {
    padding: 20px;
  }

  .faq {
    padding: 20px;
  }

  .bonus-info-card {
    padding: 35px 25px;
  }

  .bonus-info-title {
    font-size: 1.6rem;
  }

  .tip-item {
    flex-direction: column;
    text-align: center;
  }

  .tip-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 50px 30px;
    min-height: auto;
  }

  .hero-content h1,
  .casino-title {
    font-size: 2.2rem;
  }

  .casino-tagline {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-subdescription {
    font-size: 1rem;
  }

  .hero-cta-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-thoughts-intro h3,
  .why-choose-intro h2,
  .games-intro h3,
  .faq h3 {
    font-size: 1.3rem;
  }

  .faq-inner {
    padding: 40px 30px;
  }

  .faq-title {
    font-size: 2.2rem;
  }

  .faq-question-text {
    font-size: 1.15rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 28px 28px 72px;
  }

  .footer-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
  }

  .navbar .auth-buttons {
    justify-content: center;
    width: 100%;
  }

  .hero {
    padding: 40px 20px;
    min-height: auto;
  }

  .hero-content h1,
  .casino-title {
    font-size: 1.8rem;
  }

  .casino-tagline,
  .bonus-tagline {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-subdescription {
    font-size: 0.95rem;
  }

  .btn-jackpot,
  .btn-gold {
    padding: 14px 28px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 20px;
  }

  .final-thoughts-intro {
    padding: 15px;
  }

  .welcome-bonus-inner {
    padding: 30px 20px;
  }

  .welcome-bonus-title {
    font-size: 1.6rem;
  }

  .welcome-bonus-tagline {
    font-size: 1.1rem;
  }

  .welcome-bonus-intro {
    font-size: 0.95rem;
  }

  .welcome-bonus-image-wrapper {
    margin: 16px auto;
    border-radius: 12px;
  }

  .how-it-works-title {
    font-size: 1.5rem;
  }

  .welcome-step {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .step-title {
    font-size: 1.05rem;
  }

  .offer-title {
    font-size: 1.2rem;
  }

  .pro-tip-box {
    padding: 24px 20px;
  }

  .pro-tip-title {
    font-size: 1.1rem;
  }

  .pro-tip-content {
    font-size: 1rem;
  }

  .why-choose-details {
    padding: 20px;
  }

  .bonus-differences-inner {
    padding: 30px 20px;
  }

  .bonus-differences-title {
    font-size: 1.8rem;
  }

  .bonus-differences-intro {
    font-size: 1rem;
  }

  .bonus-differences-subtitle {
    font-size: 1rem;
  }

  .bonus-differences-subheading {
    font-size: 1.2rem;
  }

  .bonus-feature-title {
    font-size: 1.2rem;
  }

  .bonus-feature-desc {
    font-size: 0.95rem;
  }

  .bonus-closing-text {
    font-size: 1.05rem;
  }

  .games {
    padding: 15px;
  }

  .bonus-games-inner {
    padding: 30px 20px;
  }

  .bonus-games-title {
    font-size: 1.6rem;
  }

  .bonus-games-lead {
    font-size: 1rem;
  }

  .bonus-games-description {
    font-size: 0.95rem;
  }

  .bonus-game-title {
    font-size: 1.3rem;
  }

  .bonus-game-desc {
    font-size: 0.95rem;
  }

  .bonus-game-content {
    padding: 24px 20px;
  }

  .bonus-games-note {
    font-size: 0.95rem;
  }

  .bonus-games-table {
    font-size: 0.9rem;
  }

  .table-cell-title .bonus-game-title {
    font-size: 1.1rem;
  }

  .table-cell-desc .bonus-game-desc {
    font-size: 0.9rem;
  }

  .table-cell-image {
    width: 140px;
  }

  .table-header-image {
    width: 140px;
  }

  .bonus-info-sections {
    gap: 32px;
  }

  .bonus-info-card {
    padding: 40px 30px;
  }

  .bonus-info-title {
    font-size: 1.8rem;
  }

  .bonus-info-intro {
    font-size: 1.1rem;
  }

  .bonus-info-text {
    font-size: 1rem;
  }

  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq {
    padding: 15px;
  }

  .faq-inner {
    padding: 30px 20px;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .faq-subtitle {
    font-size: 1.05rem;
  }

  .faq-question {
    padding: 24px 20px;
    gap: 16px;
  }

  .faq-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .faq-question-text {
    font-size: 1.1rem;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 24px 64px;
  }

  .faq-answer p {
    font-size: 1rem;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
