@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes particle-float {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--particle-x), var(--particle-y)) rotate(360deg);
    opacity: 0;
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    filter: brightness(1) drop-shadow(0 0 8px rgba(244, 180, 180, 0.4));
  }
  50% {
    filter: brightness(1.15) drop-shadow(0 0 16px rgba(244, 180, 180, 0.6));
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

.animate-particle {
  animation: particle-float 6s ease-in-out infinite;
}

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

.animate-shimmer {
  animation: shimmer 3s linear infinite;
  background: linear-gradient(90deg, transparent, rgba(244, 180, 180, 0.3), transparent);
  background-size: 1000px 100%;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
}

.particle:nth-child(1) {
  --particle-x: 100px;
  --particle-y: -200px;
  left: 10%;
  animation-delay: 0s;
  background: radial-gradient(circle, rgba(244, 180, 180, 0.9), transparent);
}

.particle:nth-child(2) {
  --particle-x: -80px;
  --particle-y: -180px;
  left: 25%;
  animation-delay: 1.5s;
  background: radial-gradient(circle, rgba(255, 215, 195, 0.8), transparent);
}

.particle:nth-child(3) {
  --particle-x: 120px;
  --particle-y: -220px;
  left: 40%;
  animation-delay: 3s;
  background: radial-gradient(circle, rgba(244, 180, 180, 0.85), transparent);
}

.particle:nth-child(4) {
  --particle-x: -90px;
  --particle-y: -190px;
  left: 55%;
  animation-delay: 4.5s;
  background: radial-gradient(circle, rgba(255, 215, 195, 0.9), transparent);
}

.particle:nth-child(5) {
  --particle-x: 110px;
  --particle-y: -210px;
  left: 70%;
  animation-delay: 2s;
  background: radial-gradient(circle, rgba(244, 180, 180, 0.8), transparent);
}

.particle:nth-child(6) {
  --particle-x: -100px;
  --particle-y: -200px;
  left: 85%;
  animation-delay: 3.5s;
  background: radial-gradient(circle, rgba(255, 215, 195, 0.85), transparent);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.table-responsive table {
  min-width: 600px;
  width: 100%;
}

.prose {
  max-width: 100%;
  color: #f5f0ec;
  line-height: 1.75;
}

.prose p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  color: #f5f0ec;
  line-height: 1.7;
}

.prose h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #f4b4b4;
  line-height: 1.3;
}

.prose h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.875rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffd7c3;
  line-height: 1.4;
}

.prose ul,
.prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.75rem;
}

.prose li {
  margin-bottom: 0.5rem;
  color: #f5f0ec;
  line-height: 1.7;
}

.prose strong {
  font-weight: 600;
  color: #f4b4b4;
}

.prose a {
  color: #f4b4b4;
  text-decoration: underline;
  transition: color 0.2s;
}

.prose a:hover {
  color: #ffd7c3;
}

.prose table {
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-collapse: collapse;
}

.prose table th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  color: #f4b4b4;
  background: rgba(244, 180, 180, 0.1);
  border-bottom: 2px solid rgba(244, 180, 180, 0.3);
}

.prose table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(244, 180, 180, 0.15);
  color: #f5f0ec;
}

.prose table tr:hover {
  background: rgba(244, 180, 180, 0.05);
}

.bonus-badge {
  background: linear-gradient(135deg, rgba(244, 180, 180, 0.2), rgba(255, 215, 195, 0.15));
  border: 2px solid rgba(244, 180, 180, 0.4);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(244, 180, 180, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-card {
  background: linear-gradient(135deg, rgba(244, 180, 180, 0.1), rgba(255, 215, 195, 0.08));
  border: 1px solid rgba(244, 180, 180, 0.25);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(244, 180, 180, 0.25);
  border-color: rgba(244, 180, 180, 0.4);
}

.game-card {
  background: linear-gradient(135deg, rgba(244, 180, 180, 0.12), rgba(255, 215, 195, 0.08));
  border: 1px solid rgba(244, 180, 180, 0.3);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

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

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

.game-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(244, 180, 180, 0.3);
  border-color: rgba(244, 180, 180, 0.5);
}

.cta-primary {
  background: linear-gradient(135deg, #f4b4b4, #e89d9d);
  box-shadow: 0 4px 16px rgba(244, 180, 180, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-primary::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.4s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 180, 180, 0.6);
  background: linear-gradient(135deg, #ffd7c3, #f4b4b4);
}

.cta-secondary {
  background: transparent;
  border: 2px solid rgba(244, 180, 180, 0.5);
  color: #f4b4b4;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(244, 180, 180, 0.15);
  border-color: #f4b4b4;
  color: #ffd7c3;
  box-shadow: 0 4px 16px rgba(244, 180, 180, 0.3);
}

.review-block {
  background: linear-gradient(135deg, rgba(244, 180, 180, 0.08), rgba(255, 215, 195, 0.05));
  border-left: 4px solid rgba(244, 180, 180, 0.4);
  backdrop-filter: blur(8px);
}

.promo-card {
  background: linear-gradient(135deg, rgba(244, 180, 180, 0.1), rgba(255, 215, 195, 0.08));
  border: 1px solid rgba(244, 180, 180, 0.25);
  transition: all 0.3s ease;
}

.promo-card:hover {
  border-color: rgba(244, 180, 180, 0.4);
  box-shadow: 0 8px 24px rgba(244, 180, 180, 0.2);
}

.faq-item {
  border-bottom: 1px solid rgba(244, 180, 180, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(244, 180, 180, 0.05);
}

.provider-tag {
  background: rgba(244, 180, 180, 0.15);
  border: 1px solid rgba(244, 180, 180, 0.3);
  color: #ffd7c3;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.provider-tag:hover {
  background: rgba(244, 180, 180, 0.25);
  border-color: rgba(244, 180, 180, 0.5);
  transform: scale(1.05);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overflow-y: auto;
}

body {
  overflow-x: clip;
}
