/* Custom CSS for RoyalCoala Casino */

/* Base Styles */
* {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

/* Floating Elements */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-emoji {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  opacity: 0.7;
}

.floating-emoji:nth-child(odd) {
  animation-delay: -2s;
}

.floating-emoji:nth-child(even) {
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Navigation */
.nav-link {
  position: relative;
  color: #ffffff;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #07f9b8;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #07f9b8, #00d4aa);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Glow Text Effect */
.glow-text {
  text-shadow: 0 0 10px #07f9b8, 0 0 20px #07f9b8, 0 0 30px #07f9b8;
  animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from {
    text-shadow: 0 0 10px #07f9b8, 0 0 20px #07f9b8, 0 0 30px #07f9b8;
  }
  to {
    text-shadow: 0 0 20px #07f9b8, 0 0 30px #07f9b8, 0 0 40px #07f9b8;
  }
}

/* Hero Title */
.hero-title {
  background: linear-gradient(135deg, #07f9b8 0%, #ffffff 50%, #07f9b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  animation: hero-shine 3s ease-in-out infinite;
}

@keyframes hero-shine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Bonus Box */
.bonus-box {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 2px solid #07f9b8;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  animation: bonus-glow 2s ease-in-out infinite alternate;
}

.bonus-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #07f9b8, transparent, #07f9b8);
  border-radius: 16px;
  z-index: -1;
  animation: border-rotate 3s linear infinite;
}

@keyframes bonus-glow {
  from {
    box-shadow: 0 0 20px rgba(7, 249, 184, 0.3);
  }
  to {
    box-shadow: 0 0 40px rgba(7, 249, 184, 0.6);
  }
}

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

/* CTA Buttons */
.cta-button,
.cta-button-secondary,
.cta-button-small {
  position: relative;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transform: perspective(1000px) rotateX(0deg);
}

.cta-button {
  background: linear-gradient(135deg, #07f9b8 0%, #00d4aa 100%);
  color: #000000;
  box-shadow: 0 8px 25px rgba(7, 249, 184, 0.4);
}

.cta-button:hover {
  transform: perspective(1000px) rotateX(-10deg) translateY(-5px);
  box-shadow: 0 15px 35px rgba(7, 249, 184, 0.6);
}

.cta-button-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: #ffffff;
  border: 2px solid #07f9b8;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button-secondary:hover {
  background: linear-gradient(135deg, #07f9b8 0%, #00d4aa 100%);
  color: #000000;
  transform: perspective(1000px) rotateX(-10deg) translateY(-5px);
}

.cta-button-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background: linear-gradient(135deg, #07f9b8 0%, #00d4aa 100%);
  color: #000000;
}

/* Hero Image */
.hero-image-container {
  position: relative;
  animation: hero-float 4s ease-in-out infinite;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(7, 249, 184, 0.3);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.05);
}

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

/* Spotlight Effects */
.spotlight {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 249, 184, 0.1) 0%, transparent 70%);
  animation: spotlight-move 8s ease-in-out infinite;
}

.spotlight-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.spotlight-2 {
  bottom: 10%;
  right: 10%;
  animation-delay: -4s;
}

@keyframes spotlight-move {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(50px, -30px) scale(1.2);
    opacity: 0.6;
  }
}

/* Section Titles */
.section-title {
  background: linear-gradient(135deg, #07f9b8 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #07f9b8, #00d4aa);
  border-radius: 2px;
}

/* Step Cards */
.step-card {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(7, 249, 184, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: card-entrance 0.6s ease-out;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: #07f9b8;
  box-shadow: 0 20px 40px rgba(7, 249, 184, 0.2);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #07f9b8 0%, #00d4aa 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: #000000;
  animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes card-entrance {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Game Cards */
.game-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 2 / 3;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(7, 249, 184, 0.3);
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.play-btn {
  background: linear-gradient(135deg, #07f9b8 0%, #00d4aa 100%);
  color: #000000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-btn:hover {
  transform: scale(1.1);
}

/* Provider Cards */
.provider-card {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(7, 249, 184, 0.3);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.provider-card:hover {
  border-color: #07f9b8;
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
  transform: translateY(-5px);
}

/* Payment Tables */
.payment-table {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(7, 249, 184, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
}

.payment-table table {
  border-collapse: collapse;
}

.payment-table th {
  color: #07f9b8;
  font-weight: 600;
}

/* VIP Levels */
.vip-level {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.5) 100%);
  border-radius: 8px;
  border-left: 4px solid #07f9b8;
}

.vip-tier {
  font-weight: 600;
  color: #07f9b8;
}

.vip-benefit {
  color: #ffffff;
}

/* Bonus Details */
.bonus-details {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(7, 249, 184, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
}

.bonus-table {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(7, 249, 184, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

/* Promo Cards */
.promo-card {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(7, 249, 184, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-10px);
  border-color: #07f9b8;
  box-shadow: 0 20px 40px rgba(7, 249, 184, 0.2);
}

.promo-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #07f9b8 0%, #00d4aa 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: #000000;
}

.promo-btn {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.2) 0%, rgba(7, 249, 184, 0.1) 100%);
  border: 1px solid #07f9b8;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  background: linear-gradient(135deg, #07f9b8 0%, #00d4aa 100%);
  color: #000000;
  transform: scale(1.05);
}

/* Feature Cards */
.feature-card {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(7, 249, 184, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: #07f9b8;
  box-shadow: 0 20px 40px rgba(7, 249, 184, 0.2);
}

/* Trust Badges */
.trust-badge {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(7, 249, 184, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  min-width: 150px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  border-color: #07f9b8;
  transform: translateY(-5px);
}

/* Support Cards */
.support-card {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(7, 249, 184, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-10px);
  border-color: #07f9b8;
  box-shadow: 0 20px 40px rgba(7, 249, 184, 0.2);
}

/* FAQ */
.faq-item {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(7, 249, 184, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(7, 249, 184, 0.1);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #07f9b8;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: #cccccc;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .floating-emoji {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .bonus-box {
    padding: 1.5rem;
  }

  .step-card,
  .promo-card,
  .feature-card,
  .support-card {
    padding: 1.5rem;
  }

  .step-icon,
  .promo-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .game-card {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 480px) {
  .floating-emoji {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .cta-button,
  .cta-button-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .bonus-box {
    padding: 1rem;
  }

  .step-card,
  .promo-card,
  .feature-card,
  .support-card {
    padding: 1rem;
  }
}

/* Animation Delays for Staggered Effects */
.step-card:nth-child(1) {
  animation-delay: 0.1s;
}
.step-card:nth-child(2) {
  animation-delay: 0.2s;
}
.step-card:nth-child(3) {
  animation-delay: 0.3s;
}
.step-card:nth-child(4) {
  animation-delay: 0.4s;
}

.game-card:nth-child(1) {
  animation-delay: 0.1s;
}
.game-card:nth-child(2) {
  animation-delay: 0.2s;
}
.game-card:nth-child(3) {
  animation-delay: 0.3s;
}
.game-card:nth-child(4) {
  animation-delay: 0.4s;
}
.game-card:nth-child(5) {
  animation-delay: 0.5s;
}
.game-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #07f9b8 0%, #00d4aa 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00d4aa 0%, #07f9b8 100%);
}

/* Loading Animation */
@keyframes loading-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Print Styles */
@media print {
  .floating-elements,
  .spotlight,
  nav {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .glow-text,
  .section-title {
    color: black !important;
    text-shadow: none !important;
  }
}

/* Bonus Cards */
.bonus-card {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 1px solid rgba(7, 249, 184, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: card-entrance 0.6s ease-out forwards;
}

.bonus-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: #07f9b8;
  box-shadow: 0 25px 50px rgba(7, 249, 184, 0.3);
}

.bonus-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.bonus-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.bonus-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.bonus-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #07f9b8 0%, #00d4aa 100%);
  color: #000000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  animation: badge-pulse 2s ease-in-out infinite;
}

.live-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.reload-badge {
  background: linear-gradient(135deg, #4834d4 0%, #686de0 100%);
}

.crypto-badge {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.cashback-badge {
  background: linear-gradient(135deg, #00d2d3 0%, #54a0ff 100%);
}

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

.bonus-content {
  padding: 2rem;
}

.bonus-amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.bonus-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: #cccccc;
  font-size: 0.875rem;
}

.bonus-claim-btn {
  width: 100%;
  background: linear-gradient(135deg, #07f9b8 0%, #00d4aa 100%);
  color: #000000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-claim-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(7, 249, 184, 0.4);
}

/* Comparison Card */
.comparison-card {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 2px solid #07f9b8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.comparison-content {
  text-align: center;
  padding: 2rem;
}

.comparison-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #07f9b8 0%, #00d4aa 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #000000;
}

.comparison-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #07f9b8;
}

.stat-label {
  font-size: 0.875rem;
  color: #cccccc;
}

.comparison-btn {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.2) 0%, rgba(7, 249, 184, 0.1) 100%);
  border: 1px solid #07f9b8;
  color: #ffffff;
}

.comparison-btn:hover {
  background: linear-gradient(135deg, #07f9b8 0%, #00d4aa 100%);
  color: #000000;
}

/* Comparison Table */
.comparison-table {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.9) 100%);
  border: 1px solid rgba(7, 249, 184, 0.2);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-table th {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.2) 0%, rgba(7, 249, 184, 0.1) 100%);
  color: #07f9b8;
  font-weight: 600;
  padding: 1rem;
  border-bottom: 1px solid rgba(7, 249, 184, 0.3);
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table tr:hover {
  background: rgba(7, 249, 184, 0.05);
}

.table-btn {
  background: linear-gradient(135deg, #07f9b8 0%, #00d4aa 100%);
  color: #000000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.table-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(7, 249, 184, 0.4);
}

/* Wagering Article */
.wagering-article {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.02) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(7, 249, 184, 0.1);
  border-radius: 20px;
  padding: 3rem;
}

.article-section {
  margin-bottom: 3rem;
}

.wagering-examples {
  display: grid;
  md: grid-cols-2;
  gap: 2rem;
  margin-top: 2rem;
}

.example-card {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(7, 249, 184, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
}

.example-calculation {
  margin-bottom: 1rem;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
}

.calc-row.total {
  border-top: 1px solid rgba(7, 249, 184, 0.3);
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 1.1rem;
}

.contribution-table {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 1px solid rgba(7, 249, 184, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.contribution-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.game-type {
  font-weight: 500;
}

.contribution-rate {
  font-weight: bold;
  color: #07f9b8;
}

.terms-grid {
  display: grid;
  md: grid-cols-2;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.term-item {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.5) 100%);
  border: 1px solid rgba(7, 249, 184, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.tips-list {
  margin-top: 1.5rem;
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.05) 0%, rgba(0, 0, 0, 0.5) 100%);
  border-radius: 12px;
  border-left: 4px solid #07f9b8;
}

.conclusion-box {
  background: linear-gradient(135deg, rgba(7, 249, 184, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
  border: 2px solid rgba(7, 249, 184, 0.3);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

/* Responsive adjustments for bonus cards */
@media (max-width: 768px) {
  .wagering-examples {
    grid-template-columns: 1fr;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }

  .comparison-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .wagering-article {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .bonus-content {
    padding: 1.5rem;
  }

  .bonus-amount {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .wagering-article {
    padding: 1.5rem;
  }
}

/* Animation delays for bonus cards */
.bonus-card:nth-child(1) {
  animation-delay: 0.1s;
}
.bonus-card:nth-child(2) {
  animation-delay: 0.2s;
}
.bonus-card:nth-child(3) {
  animation-delay: 0.3s;
}
.bonus-card:nth-child(4) {
  animation-delay: 0.4s;
}
.bonus-card:nth-child(5) {
  animation-delay: 0.5s;
}
.bonus-card:nth-child(6) {
  animation-delay: 0.6s;
}
