@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');

:root {
  --treasure-gold: #FFD700;
  --treasure-brown: #8B4513;
  --snake-blue: #2196F3;
  --snake-dark: #1976D2;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
}

/* Bonus Hero Section */
.bonus-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
  margin-top: 20px;
}

.bonus-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 118, 104, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: -1;
}

.treasure-chest-decoration {
  position: absolute;
  width: 80px;
  height: 60px;
  background: linear-gradient(135deg, var(--treasure-brown) 0%, #A0522D 50%, var(--treasure-brown) 100%);
  border-radius: 5px;
  opacity: 0.6;
  animation: treasureFloat 4s ease-in-out infinite;
}

.treasure-chest-decoration::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 15px;
  background: linear-gradient(135deg, #DAA520 0%, var(--treasure-gold) 50%, #DAA520 100%);
  border-radius: 5px 5px 0 0;
}

.treasure-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.treasure-2 {
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

.treasure-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
  animation: treasureGlow 2s ease-in-out infinite;
}

@keyframes treasureGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes treasureFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.bonus-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--treasure-gold);
}

.badge-icon {
  font-size: 1.2rem;
}

.bonus-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
}

.title-highlight {
  color: var(--treasure-gold);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.title-brand {
  color: #3CC66C;
}

.bonus-hero-description {
  font-size: 1.2rem;
  color: #E0E0E0 !important;
  margin-bottom: 40px;
  line-height: 1.8;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.bonus-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-hero {
  background: linear-gradient(135deg, var(--treasure-gold) 0%, #FFA500 100%);
  color: #000000;
  font-size: 1.1rem;
  padding: 16px 32px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.btn-glow {
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.8);
  }
}

.btn-hero-outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: #FFFFFF;
  color: #000000;
}

.bonus-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.bonus-stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--treasure-gold);
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat-label {
  color: #E0E0E0;
  font-size: 0.9rem;
}

/* Bonuses Section */
.bonuses-section {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #D0D0D0 !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.bonus-detail-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-detail-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%);
  animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
  }
}

.bonus-detail-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.bonus-icon-large {
  font-size: 4rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bonus-detail-card h3 {
  font-size: 1.8rem;
  color: #FFFFFF !important;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.bonus-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--treasure-gold);
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.bonus-detail-card p {
  color: #E0E0E0 !important;
  margin-bottom: 20px;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.bonus-features {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
  padding: 0;
}

.bonus-features li {
  color: #E0E0E0 !important;
  margin-bottom: 10px;
  font-size: 0.95rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.bonus-claim-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--treasure-gold);
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.bonus-claim-btn:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Bonus Terms Section */
.bonus-terms {
  padding: 80px 0;
  background: rgba(33, 150, 243, 0.05);
}

.terms-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.terms-item {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.terms-item:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
}

.terms-item h4 {
  font-size: 1.3rem;
  color: #FFFFFF !important;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.terms-item p {
  color: #E0E0E0 !important;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

/* Bonus Games Section */
.bonus-games {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.game-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.game-card::before {
  content: '🐍';
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 1.2rem;
  opacity: 0.3;
  z-index: 1;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.game-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-play {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: var(--treasure-gold);
  color: #000000;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-play:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Bonus FAQ Section */
.bonus-faq {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.3);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item-simple {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.faq-item-simple::before {
  content: '🐍';
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  opacity: 0.3;
}

.faq-item-simple:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.faq-item-simple h4 {
  font-size: 1.3rem;
  color: #FFFFFF !important;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
}

.faq-item-simple p {
  color: #E0E0E0 !important;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

/* Responsive */
@media (max-width: 1024px) {
  .bonus-hero-title {
    font-size: 2.5rem;
  }
  
  .bonuses-grid,
  .terms-content,
  .faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .bonus-hero-title {
    font-size: 2rem;
  }
  
  .bonus-hero-description {
    font-size: 1rem;
  }
  
  .bonus-hero-actions {
    flex-direction: column;
  }
  
  .bonus-stats {
    gap: 30px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .bonus-hero-title {
    font-size: 1.8rem;
  }
  
  .btn-hero,
  .btn-hero-outline {
    width: 100%;
    text-align: center;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  border-top: 2px solid rgba(255, 215, 0, 0.2);
  padding: 60px 0 20px;
  margin-top: 80px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  position: relative;
  z-index: 10;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 15px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.footer-links h4,
.footer-info h4 {
  color: var(--text-primary);
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--treasure-gold);
}

.footer-info {
  position: relative;
  z-index: 10;
}

.footer-info p {
  color: var(--text-secondary);
  margin-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  position: relative;
  z-index: 10;
}

.footer-bottom a {
  color: var(--treasure-gold);
  text-decoration: none;
}

.footer-bottom p {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

/* Footer Snake and Treasure Decorations */
.footer-snake {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: floatSnake 6s ease-in-out infinite;
  z-index: 1;
}

.footer-snake-1 {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.footer-snake-2 {
  bottom: 20%;
  right: 5%;
  animation-delay: 3s;
}

.footer-treasure {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.4;
  animation: treasureBounce 4s ease-in-out infinite;
  z-index: 1;
}

.footer-treasure-1 {
  top: 30%;
  right: 10%;
  animation-delay: 1s;
}

.footer-treasure-2 {
  bottom: 30%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes floatSnake {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes treasureBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.1);
  }
}
