/* ===========================
   ANIMATIONS & KEYFRAMES
   =========================== */

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

@keyframes pulse-slow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

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

@keyframes tilt {
  0%, 100% {
    transform: rotate(-1deg);
  }
  50% {
    transform: rotate(1deg);
  }
}

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

/* ===========================
   UTILITY CLASSES
   =========================== */

.floating-hero {
  animation: float 6s ease-in-out infinite;
}

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

.animate-progress {
  animation: progress 3s ease-out forwards;
}

.animate-tilt {
  animation: tilt 4s ease-in-out infinite;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* ===========================
   COMPONENT STYLES
   =========================== */

.category-btn {
  background: linear-gradient(135deg, #1a4d2e 0%, #16a34a 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.category-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #16a34a 0%, #1a4d2e 100%);
}

.game-card {
  transition: transform 0.3s ease;
}

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

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.75rem;
}

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

.play-btn-overlay {
  background: linear-gradient(135deg, #1a4d2e 0%, #16a34a 100%);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(26, 77, 46, 0.6);
}

.play-btn-overlay:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(26, 77, 46, 0.8);
}

.badge-high-rtp {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.badge-jackpot {
  background: linear-gradient(135deg, #d4af37 0%, #f59e0b 100%);
  color: #1e293b;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.badge-bonus-buy {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.2) 0%, rgba(15, 23, 42, 0.3) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 30px rgba(26, 77, 46, 0.3);
}

.promo-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(26, 77, 46, 0.2) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.provider-badge {
  background: rgba(15, 23, 42, 0.6);
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.provider-badge:hover {
  background: rgba(26, 77, 46, 0.4);
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
}

.payment-method {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(26, 77, 46, 0.2) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

.payment-method:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 5px 15px rgba(26, 77, 46, 0.3);
}

.review-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(26, 77, 46, 0.2) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 5px 20px rgba(26, 77, 46, 0.2);
}

.faq-item {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.faq-question {
  padding: 1.5rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #d4af37;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #d1d5db;
  line-height: 1.6;
}

.vip-tier {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(26, 77, 46, 0.2) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.vip-tier:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 10px 30px rgba(26, 77, 46, 0.3);
}

.vip-tier-diamond {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(26, 77, 46, 0.2) 100%);
  border-color: rgba(6, 182, 212, 0.4);
}

.vip-tier-diamond:hover {
  border-color: rgba(6, 182, 212, 0.8);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

/* ===========================
   PROSE STYLING
   =========================== */

.prose-custom {
  color: #d1d5db;
  line-height: 1.75;
}

.prose-custom h2 {
  color: #d4af37;
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose-custom h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose-custom h4 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.prose-custom p {
  margin-bottom: 1.25rem;
}

.prose-custom ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.prose-custom li {
  margin-bottom: 0.5rem;
}

.prose-custom a {
  color: #16a34a;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.prose-custom a:hover {
  color: #d4af37;
}

.prose-custom strong {
  color: white;
  font-weight: 700;
}

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

.prose-custom th {
  background: rgba(26, 77, 46, 0.3);
  color: #d4af37;
  padding: 0.75rem;
  text-align: left;
  font-weight: 700;
}

.prose-custom td {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(100, 116, 139, 0.3);
}

/* ===========================
   PROMOTIONS SLIDER
   =========================== */

.promotions-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.promotions-slider-wrapper {
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.promotions-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-slide {
  min-width: 100%;
  padding: 0.5rem;
}

.promo-slide-inner {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.4) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(26, 77, 46, 0.3) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.promo-slide-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.promo-slide-inner:hover {
  border-color: rgba(212, 175, 55, 0.6);
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f59e0b 100%);
  color: #1e293b;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.promo-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.promo-amount {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #d4af37 0%, #fbbf24 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
}

.promo-subtitle {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  font-style: italic;
}

.promo-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 400px;
  text-align: left;
}

.promo-features li {
  display: flex;
  align-items: center;
  color: #e5e7eb;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 0.5rem;
  border-left: 3px solid #16a34a;
}

.feature-icon {
  font-size: 1.25rem;
  margin-right: 0.75rem;
  min-width: 1.5rem;
}

.promo-cta {
  display: inline-block;
  background: linear-gradient(135deg, #1a4d2e 0%, #16a34a 100%);
  color: white;
  padding: 1rem 3rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 20px rgba(26, 77, 46, 0.4);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.promo-cta:hover {
  background: linear-gradient(135deg, #16a34a 0%, #1a4d2e 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 30px rgba(26, 77, 46, 0.6);
  border-color: #d4af37;
}

.promo-terms {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-top: 1.5rem;
  line-height: 1.4;
}

/* Navigation Buttons */
.promo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 77, 46, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.4);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.promo-nav:hover {
  background: rgba(22, 163, 74, 0.9);
  border-color: #d4af37;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(26, 77, 46, 0.5);
}

.promo-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.promo-nav-prev {
  left: 0;
}

.promo-nav-next {
  right: 0;
}

/* Dots Navigation */
.promo-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.promo-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(100, 116, 139, 0.5);
  border: 2px solid rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.promo-dot:hover {
  background: rgba(212, 175, 55, 0.5);
  border-color: #d4af37;
  transform: scale(1.2);
}

.promo-dot.active {
  background: linear-gradient(135deg, #d4af37 0%, #16a34a 100%);
  border-color: #d4af37;
  width: 2rem;
  border-radius: 9999px;
}

/* ===========================
   RESPONSIVE TWEAKS
   =========================== */

@media (max-width: 768px) {
  .category-btn {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
  
  .feature-card,
  .promo-card {
    padding: 1.5rem;
  }
  
  .vip-tier {
    padding: 1.5rem;
  }
  
  .promotions-slider-container {
    padding: 0 2.5rem;
  }
  
  .promo-slide-inner {
    padding: 2rem 1.5rem;
  }
  
  .promo-title {
    font-size: 1.875rem;
  }
  
  .promo-amount {
    font-size: 2.25rem;
  }
  
  .promo-features li {
    font-size: 0.875rem;
  }
  
  .promo-nav {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* ===========================
   MASONRY GRID LAYOUT
   =========================== */

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 20px;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.masonry-item {
  grid-row-end: span var(--row-span, 20);
  animation: fadeInUp 0.6s ease-out;
}

.masonry-item.featured-promo {
  grid-column: span 1;
  --row-span: 30;
}

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

.promo-card-masonry {
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.promo-card-masonry::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s ease;
}

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

.promo-card-masonry:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.promo-card-masonry.highlight-gold {
  border-color: rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.promo-card-masonry.highlight-green {
  border-color: rgba(22, 163, 74, 0.6);
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.2) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.promo-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #d4af37 0%, #f59e0b 100%);
  color: #1e293b;
  padding: 0.5rem 3rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

.promo-badge-small {
  display: inline-block;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.4);
}

.promo-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
  text-align: center;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.promo-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.promo-card-amount {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #d4af37 0%, #fbbf24 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.promo-card-subtitle {
  font-size: 1rem;
  color: #d1d5db;
  text-align: center;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.promo-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.promo-card-features li {
  display: flex;
  align-items: flex-start;
  color: #e5e7eb;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
  padding-left: 0.25rem;
}

.promo-card-features .icon {
  color: #16a34a;
  font-weight: bold;
  margin-right: 0.5rem;
  font-size: 1rem;
  min-width: 1rem;
}

.promo-card-cta {
  display: block;
  background: linear-gradient(135deg, #1a4d2e 0%, #16a34a 100%);
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(26, 77, 46, 0.4);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-top: auto;
}

.promo-card-cta:hover {
  background: linear-gradient(135deg, #16a34a 0%, #1a4d2e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 77, 46, 0.6);
  border-color: #d4af37;
}

.promo-card-terms {
  font-size: 0.65rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.3;
}

/* Masonry Responsive Adjustments */
@media (min-width: 768px) {
  .masonry-item.featured-promo {
    grid-column: span 2;
    --row-span: 25;
  }
  
  .masonry-item.featured-promo .promo-card-masonry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  
  .masonry-item.featured-promo .promo-icon {
    grid-column: 1;
    grid-row: 1 / 6;
    font-size: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .masonry-item.featured-promo .promo-card-title,
  .masonry-item.featured-promo .promo-card-amount,
  .masonry-item.featured-promo .promo-card-subtitle {
    grid-column: 2;
    text-align: left;
  }
  
  .masonry-item.featured-promo .promo-card-features {
    grid-column: 1 / -1;
  }
  
  .masonry-item.featured-promo .promo-card-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  
  .masonry-item {
    grid-row-end: auto !important;
  }
  
  .promo-card-masonry {
    padding: 1.5rem;
  }
  
  .promo-card-title {
    font-size: 1.25rem;
  }
  
  .promo-card-amount {
    font-size: 1.75rem;
  }
}

/* ===========================
   SPORTSBOOK CAROUSEL
   =========================== */

.sports-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.sports-carousel-wrapper {
  overflow: hidden;
  border-radius: 0;
}

.sports-carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sports-event-card {
  min-width: 100%;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(26, 77, 46, 0.3) 100%);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.sports-event-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(26, 77, 46, 0.4);
}

.event-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #f59e0b 100%);
  color: #1e293b;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.event-time {
  color: #16a34a;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.event-stadium {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.betting-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.betting-options.vertical {
  grid-template-columns: 1fr;
}

.bet-option {
  background: rgba(26, 77, 46, 0.3);
  border: 2px solid rgba(22, 163, 74, 0.5);
  border-radius: 1rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bet-option.full {
  flex-direction: row;
  justify-content: space-between;
}

.bet-option:hover {
  background: rgba(22, 163, 74, 0.4);
  border-color: #16a34a;
  transform: translateY(-2px);
}

.bet-option.draw {
  border-color: rgba(212, 175, 55, 0.5);
}

.bet-option.draw:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}

.team-name {
  color: #e5e7eb;
  font-size: 0.875rem;
  font-weight: 600;
}

.odds {
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
}

.horses-list {
  margin-bottom: 2rem;
}

.horse-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.horse-odds {
  background: rgba(22, 163, 74, 0.4);
  border: 2px solid #16a34a;
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.horse-odds:hover {
  background: rgba(22, 163, 74, 0.6);
  transform: scale(1.05);
}

.event-cta {
  display: block;
  background: linear-gradient(135deg, #1a4d2e 0%, #16a34a 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.event-cta:hover {
  background: linear-gradient(135deg, #16a34a 0%, #1a4d2e 100%);
  border-color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 77, 46, 0.6);
}

/* Sports Navigation */
.sports-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 77, 46, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 175, 55, 0.4);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.sports-nav:hover {
  background: rgba(22, 163, 74, 0.9);
  border-color: #d4af37;
  transform: translateY(-50%) scale(1.1);
}

.sports-nav-prev {
  left: 0;
}

.sports-nav-next {
  right: 0;
}

/* Sports Dots */
.sports-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.sports-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(100, 116, 139, 0.5);
  border: 2px solid rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.sports-dot:hover {
  background: rgba(212, 175, 55, 0.5);
  border-color: #d4af37;
  transform: scale(1.2);
}

.sports-dot.active {
  background: linear-gradient(135deg, #d4af37 0%, #16a34a 100%);
  border-color: #d4af37;
  width: 2rem;
  border-radius: 9999px;
}

/* Sports Carousel Responsive */
@media (max-width: 768px) {
  .sports-carousel-container {
    padding: 0 2.5rem;
  }
  
  .sports-event-card {
    padding: 1.5rem;
  }
  
  .event-title {
    font-size: 1.5rem;
  }
  
  .betting-options {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .sports-nav {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* ===========================
   BACKGROUND PATTERNS
   =========================== */

body {
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(26, 77, 46, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
}
