/* Betwest Custom CSS - Keyframes & Prose Readability */

/* ===== ANIMATION 1: SHIMMER ===== */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(236, 72, 153, 0.3) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.shimmer-text {
  background: linear-gradient(
    90deg,
    #f472b6 0%,
    #fb7185 25%,
    #fda4af 50%,
    #fb7185 75%,
    #f472b6 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* ===== ANIMATION 2: FLOAT ===== */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

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

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

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

.float-delayed {
  animation: float-delayed 5s ease-in-out infinite;
  animation-delay: 0.5s;
}

/* ===== GLOW EFFECTS ===== */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4),
                0 0 40px rgba(236, 72, 153, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6),
                0 0 60px rgba(236, 72, 153, 0.3);
  }
}

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

@keyframes border-glow {
  0%, 100% {
    border-color: rgba(236, 72, 153, 0.5);
  }
  50% {
    border-color: rgba(251, 113, 133, 0.8);
  }
}

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

/* ===== PROSE READABILITY ===== */
.prose-casino {
  font-size: 1rem;
  line-height: 1.75;
  color: #d1d5db;
}

.prose-casino h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f9fafb;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.prose-casino h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

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

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

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

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

.prose-casino a {
  color: #f472b6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose-casino a:hover {
  color: #fb7185;
}

/* ===== CARD HOVER EFFECTS ===== */
.card-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.2);
}

/* ===== BUTTON STATES ===== */
.btn-primary {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(236, 72, 153, 0.5);
}

/* ===== TAB STYLES ===== */
.tab-btn {
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  color: white;
}

.tab-btn:not(.active):hover {
  background: rgba(236, 72, 153, 0.2);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ===== SMOOTH SCROLL OFFSET ===== */
html {
  scroll-padding-top: 100px;
}

/* ===== HAMBURGER ANIMATION ===== */
.hamburger-line {
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-nav.open {
  max-height: 500px;
}

/* ===== SLOT CARD BADGE ===== */
.slot-badge {
  font-size: 0.625rem;
  letter-spacing: 0.05em;
}

/* ===== STAR RATING ===== */
.star-filled {
  color: #fbbf24;
}

.star-empty {
  color: #374151;
}

/* ===== WESTERN DECORATIVE ===== */
.western-border {
  border: 2px solid;
  border-image: linear-gradient(135deg, #92400e, #d97706, #92400e) 1;
}

/* ===== FAQ ACCORDION ===== */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #030203;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ec4899, #db2777);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f472b6, #ec4899);
}

/* ===== BENTO CARDS ===== */
.bento-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.bento-card.open .bento-content {
  max-height: 600px;
}

.bento-icon {
  transition: transform 0.3s ease;
}

.bento-card.open .bento-icon {
  transform: rotate(180deg);
}

.bento-toggle {
  cursor: pointer;
}

.bento-toggle:hover .bento-icon {
  color: #ec4899;
}
