/* WhiskyWin Custom Styles - Gangster Saloon Theme */

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

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

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(218, 165, 32, 0.8);
  }
}

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

/* Parallax Effect */
.parallax-layer {
  transition: transform 0.3s ease-out;
}

/* Marquee Animation */
.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* Gangster Theme Elements */
.gangster-border {
  border: 2px solid #8b7355;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 115, 85, 0.3);
}

.saloon-card {
  background: linear-gradient(135deg, #3a2a2a 0%, #24171f 100%);
  border: 1px solid #8b7355;
  position: relative;
}

.saloon-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(139, 115, 85, 0.1) 2px,
    rgba(139, 115, 85, 0.1) 4px
  );
  pointer-events: none;
}

/* Wood Texture Pattern */
.wood-texture {
  background-image: repeating-linear-gradient(
      90deg,
      rgba(139, 115, 85, 0.1) 0px,
      transparent 1px,
      transparent 40px,
      rgba(139, 115, 85, 0.1) 41px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(101, 67, 33, 0.1) 0px,
      transparent 1px,
      transparent 20px,
      rgba(101, 67, 33, 0.1) 21px
    );
}

/* Bullet Hole Decoration */
.bullet-hole {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #000 30%, #3a2a2a 70%);
  border-radius: 50%;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8);
}

/* Golden Accent */
.gold-accent {
  color: #daa520;
  text-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
}

/* Bonus Badge Glow */
.bonus-badge {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Game Card Hover */
.game-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4);
}

/* CTA Button Styles */
.cta-primary {
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
  transition: all 0.3s ease;
}

.cta-primary:hover {
  background: linear-gradient(135deg, #ffd700 0%, #daa520 100%);
  box-shadow: 0 6px 25px rgba(218, 165, 32, 0.6);
  transform: translateY(-2px);
}

.cta-secondary {
  border: 2px solid #daa520;
  background: transparent;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(218, 165, 32, 0.1);
  border-color: #ffd700;
}

/* Prose Styling for Readability */
.prose {
  color: #e5d4c1;
  line-height: 1.7;
}

.prose h2 {
  color: #daa520;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.prose h3 {
  color: #c9a961;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.prose ul,
.prose ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

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

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

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

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

.prose th {
  background: rgba(218, 165, 32, 0.2);
  color: #daa520;
  padding: 0.75rem;
  text-align: left;
  border: 1px solid #8b7355;
}

.prose td {
  padding: 0.75rem;
  border: 1px solid #8b7355;
}

.prose tr:nth-child(even) {
  background: rgba(58, 42, 42, 0.3);
}

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

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Mobile Menu Animation */
.mobile-menu {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile-menu.hidden {
  transform: translateX(-100%);
  opacity: 0;
}

/* Bottom Menu Island */
.bottom-menu-island {
  backdrop-filter: blur(10px);
  background: rgba(36, 23, 31, 0.95);
  border-top: 2px solid #8b7355;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

/* Trustpilot Star */
.star-gold {
  color: #00b67a;
}

/* Payment Method Icon */
.payment-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease;
}

.payment-icon:hover {
  transform: scale(1.1);
}

/* Calculator Form */
.calculator-island {
  background: linear-gradient(135deg, #3a2a2a 0%, #24171f 100%);
  border: 2px solid #daa520;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.calculator-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #8b7355;
  color: #e5d4c1;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: border-color 0.2s ease;
}

.calculator-input:focus {
  outline: none;
  border-color: #daa520;
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2);
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid #8b7355;
}

.faq-question {
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #daa520;
}

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

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

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Loading Animation */
.loading {
  animation: float 2s ease-in-out infinite;
}
