/* Custom Animations and Styles */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Orbitron", monospace;
  scroll-behavior: smooth;
}

/* Make casino red darker */
:root {
  --casino-red: #b71c1c;
}

/* Override Tailwind custom color for casino-red */
.bg-casino-red {
  background-color: var(--casino-red) !important;
}
.text-casino-red {
  color: var(--casino-red) !important;
}
.border-casino-red {
  border-color: var(--casino-red) !important;
}

/* Rounded corners for all main sections */
section,
.bonus-box,
.step-card,
.game-card,
.stat-card,
.provider-name,
.payment-table,
.security-item,
.vip-level,
.bonus-list li,
.bonus-table,
.support-card,
.promo-card,
.trust-badge,
.faq-item,
.calendar-day {
  border-radius: 1.25rem;
}

/* 3D Text Effects */
.text-3d {
  text-shadow: 2px 2px 0px #fff201, 4px 4px 0px #0a0a0a, 6px 6px 10px rgba(0, 0, 0, 0.5);
  transform: perspective(500px) rotateX(15deg);
}

.text-3d-main {
  text-shadow: 3px 3px 0px #fff201, 6px 6px 0px #0a0a0a, 9px 9px 15px rgba(0, 0, 0, 0.7);
  transform: perspective(800px) rotateX(20deg);
  animation: textFloat 3s ease-in-out infinite;
}

@keyframes textFloat {
  0%,
  100% {
    transform: perspective(800px) rotateX(20deg) translateY(0px);
  }
  50% {
    transform: perspective(800px) rotateX(20deg) translateY(-10px);
  }
}

/* Floating Elements */
.floating-element {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.floating-element:nth-child(2) {
  animation-delay: -2s;
}
.floating-element:nth-child(3) {
  animation-delay: -4s;
}
.floating-element:nth-child(4) {
  animation-delay: -1s;
}

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

/* Spotlight Effects */
.spotlight {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 242, 1, 0.3) 0%, transparent 70%);
  animation: spotlight 8s linear infinite;
  pointer-events: none;
}

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

.spotlight-2 {
  top: 60%;
  right: 30%;
  animation-delay: -3s;
}

.spotlight-3 {
  bottom: 20%;
  left: 40%;
  animation-delay: -6s;
}

@keyframes spotlight {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(50px, -30px) scale(1.2);
    opacity: 0.6;
  }
  50% {
    transform: translate(-30px, 40px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translate(-50px, -20px) scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
}

/* Buttons */
.cta-button {
  background: #fff201;
  color: #0a0a0a;
  border: 3px solid #0a0a0a;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #0a0a0a;
  color: #fff201;
  border-color: #fff201;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 242, 1, 0.4);
}

.cta-button-large {
  background: #fff201;
  color: #0a0a0a;
  border: 4px solid #0a0a0a;
  padding: 20px 40px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: pulse 2s infinite;
}

.cta-button-large:hover {
  background: #0a0a0a;
  color: #fff201;
  border-color: #fff201;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 242, 1, 0.6);
}

.cta-button-secondary {
  background: transparent;
  color: #fff201;
  border: 4px solid #fff201;
  padding: 20px 40px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-button-secondary:hover {
  background: #fff201;
  color: #0a0a0a;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 242, 1, 0.4);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 242, 1, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 242, 1, 0);
  }
}

/* Bonus Box */
.bonus-box {
  background: #0a0a0a;
  border: 4px solid #fff201;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 242, 1, 0.1), transparent);
  animation: shine 3s infinite;
}

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

/* Hero Image */
.hero-image {
  max-width: 100%;
  height: auto;
  border: 4px solid #fff201;
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px) rotateY(0deg);
  }
  50% {
    transform: translateY(-15px) rotateY(5deg);
  }
}

/* Step Cards */
.step-card {
  background: #0a0a0a;
  border: 3px solid #fff201;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 242, 1, 0.3);
}

.step-icon {
  background: #fff201;
  color: #0a0a0a;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  border: 3px solid #0a0a0a;
  animation: iconBounce 2s infinite;
}

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

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

.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 242, 1, 0.5);
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.play-btn {
  background: #fff201;
  color: #0a0a0a;
  border: 2px solid #0a0a0a;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: #0a0a0a;
  color: #fff201;
  border-color: #fff201;
}

/* Stat Cards */
.stat-card {
  background: #0a0a0a;
  border: 3px solid #fff201;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 242, 1, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff201;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: numberGlow 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
  0% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  100% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 242, 1, 0.6);
  }
}

.stat-label {
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

/* Provider Names */
.provider-name {
  background: #fe2a18;
  border: 2px solid #fff201;
  padding: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.provider-name:hover {
  background: #fff201;
  color: #0a0a0a;
  transform: scale(1.05);
}

/* Payment Table */
.payment-table {
  background: #fe2a18;
  border: 3px solid #fff201;
  padding: 20px;
}

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

.payment-table th {
  color: #fff201;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Security Features */
.security-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fe2a18;
  border: 2px solid #fff201;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.security-item:hover {
  transform: translateX(10px);
  box-shadow: -5px 5px 15px rgba(255, 242, 1, 0.3);
}

/* VIP Levels */
.vip-level {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: #fe2a18;
  border: 2px solid #fff201;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.vip-level:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(255, 242, 1, 0.3);
}

.vip-badge {
  padding: 8px 16px;
  font-weight: bold;
  font-size: 0.9rem;
  border: 2px solid #0a0a0a;
  text-align: center;
  min-width: 100px;
}

.vip-badge.bronze {
  background: #cd7f32;
  color: #fff;
}

.vip-badge.silver {
  background: #c0c0c0;
  color: #0a0a0a;
}

.vip-badge.gold {
  background: #ffd700;
  color: #0a0a0a;
}

.vip-badge.diamond {
  background: #b9f2ff;
  color: #0a0a0a;
}

/* Bonus List */
.bonus-list {
  list-style: none;
  padding: 0;
}

.bonus-list li {
  padding: 15px;
  background: #fe2a18;
  border: 2px solid #fff201;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.bonus-list li:hover {
  transform: translateX(10px);
  box-shadow: -5px 5px 15px rgba(255, 242, 1, 0.3);
}

/* Bonus Table */
.bonus-table {
  background: #fe2a18;
  border: 3px solid #fff201;
  padding: 20px;
}

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

.bonus-table th {
  color: #fff201;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Support Cards */
.support-card {
  background: #0a0a0a;
  border: 3px solid #fff201;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 242, 1, 0.4);
}

.support-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 242, 1, 0.05), transparent);
  animation: cardShine 4s infinite;
}

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

/* Promo Cards */
.promo-card {
  background: #0a0a0a;
  border: 3px solid #fff201;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.promo-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 242, 1, 0.4);
}

/* Calendar Grid */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.calendar-day {
  background: #0a0a0a;
  border: 2px solid #fff201;
  padding: 15px 10px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.calendar-day:hover {
  background: #fff201;
  color: #0a0a0a;
  transform: scale(1.05);
  z-index: 10;
}

.day-number {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.day-promo {
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

/* Trust Badges */
.trust-badge {
  background: #0a0a0a;
  border: 3px solid #fff201;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  min-width: 150px;
}

.trust-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 242, 1, 0.4);
}

/* FAQ */
.faq-item {
  background: #0a0a0a;
  border: 3px solid #fff201;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 25px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 242, 1, 0.1);
}

.faq-answer {
  padding: 0 25px 25px;
  line-height: 1.6;
  border-top: 1px solid #fff201;
  margin-top: 10px;
  padding-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .text-3d-main {
    font-size: 2.5rem;
  }

  .bonus-box {
    padding: 20px;
  }

  .cta-button-large,
  .cta-button-secondary {
    padding: 15px 25px;
    font-size: 16px;
  }

  .calendar-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .step-card,
  .support-card,
  .promo-card {
    padding: 25px 20px;
  }

  .floating-element {
    display: none;
  }

  .spotlight {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .text-3d-main {
    font-size: 2rem;
  }

  .calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-number {
    font-size: 2rem;
  }
}

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

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Parallax Effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
