/* Custom CSS for TurboWins Casino */

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Neon Effects */
.neon-text {
  color: #c721c9;
  text-shadow: 0 0 5px #c721c9, 0 0 10px #c721c9, 0 0 15px #c721c9, 0 0 20px #c721c9;
  animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  from {
    text-shadow: 0 0 5px #c721c9, 0 0 10px #c721c9, 0 0 15px #c721c9, 0 0 20px #c721c9;
  }
  to {
    text-shadow: 0 0 2px #c721c9, 0 0 5px #c721c9, 0 0 8px #c721c9, 0 0 12px #c721c9;
  }
}

/* Floating Elements */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-card,
.floating-chip,
.floating-dice,
.floating-bolt,
.floating-heart,
.floating-diamond {
  position: absolute;
  color: #c721c9;
  font-size: 24px;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.floating-card {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-chip {
  top: 20%;
  right: 15%;
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #c721c9, #8a2be2);
  border-radius: 50%;
  animation-delay: 1s;
}

.floating-dice {
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}

.floating-bolt {
  top: 30%;
  right: 5%;
  animation-delay: 3s;
}

.floating-heart {
  top: 70%;
  right: 20%;
  animation-delay: 4s;
}

.floating-diamond {
  top: 80%;
  left: 20%;
  animation-delay: 5s;
}

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

/* Spotlight Effects */
.spotlight {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 33, 201, 0.1) 0%, transparent 70%);
  animation: spotlightMove 8s ease-in-out infinite;
}

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

.spotlight-2 {
  bottom: 20%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes spotlightMove {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -30px) scale(1.2);
  }
}

/* Navigation */
nav.scrolled {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(20px);
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #c721c9;
  background: rgba(199, 33, 201, 0.1);
  transform: translateY(-2px);
}

/* Buttons */
.cta-button {
  background: linear-gradient(45deg, #c721c9, #8a2be2);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(199, 33, 201, 0.3), 0 8px 16px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(199, 33, 201, 0.5), 0 12px 24px rgba(0, 0, 0, 0.4);
}

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

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

.cta-button-secondary {
  background: transparent;
  color: #c721c9;
  padding: 16px 32px;
  border: 2px solid #c721c9;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(199, 33, 201, 0.2);
}

.cta-button-secondary:hover {
  background: #c721c9;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(199, 33, 201, 0.4);
}

.cta-button-small {
  background: linear-gradient(45deg, #c721c9, #8a2be2);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(199, 33, 201, 0.4);
}

/* Hero Section */
.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(45deg, #ffffff, #c721c9, #8a2be2);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(199, 33, 201, 0.5);
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.bonus-box {
  background: linear-gradient(135deg, #1a0f46, #2a1a5e);
  border: 2px solid #c721c9;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 0 30px rgba(199, 33, 201, 0.3), inset 0 0 20px rgba(199, 33, 201, 0.1);
  animation: bonusPulse 3s ease-in-out infinite;
}

@keyframes bonusPulse {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(199, 33, 201, 0.3), inset 0 0 20px rgba(199, 33, 201, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(199, 33, 201, 0.5), inset 0 0 30px rgba(199, 33, 201, 0.2);
  }
}

.bonus-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #c721c9;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.bonus-main {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 20px rgba(199, 33, 201, 0.5);
  margin-bottom: 8px;
}

.bonus-extra {
  font-size: 1.5rem;
  color: #c721c9;
  font-weight: bold;
  margin-bottom: 8px;
}

.bonus-cashback {
  font-size: 1.2rem;
  color: #8a2be2;
  font-weight: bold;
}

.hero-image-container {
  position: relative;
  animation: heroFloat 4s ease-in-out infinite;
}

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

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.section-title {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(45deg, #ffffff, #c721c9);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  margin-bottom: 2rem;
}

/* Step Cards */
.step-card {
  background: linear-gradient(135deg, #1a0f46, #2a1a5e);
  border: 1px solid #c721c9;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  animation: cardEntrance 0.6s ease-out;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(199, 33, 201, 0.3);
  border-color: #8a2be2;
}

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

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #c721c9, #8a2be2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  color: white;
  animation: iconPulse 2s ease-in-out infinite;
}

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

.step-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c721c9;
  margin-bottom: 12px;
}

.step-description {
  color: #cccccc;
  line-height: 1.6;
}

/* Game Cards */
.game-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: gameCardEntrance 0.8s ease-out;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(199, 33, 201, 0.4);
}

@keyframes gameCardEntrance {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.game-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.game-title {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.game-play-btn {
  background: linear-gradient(45deg, #c721c9, #8a2be2);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.game-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(199, 33, 201, 0.4);
}

/* Content Cards */
.content-card {
  background: linear-gradient(135deg, #1a0f46, #2a1a5e);
  border: 1px solid #c721c9;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Provider Cards */
.provider-card {
  background: linear-gradient(135deg, #1a0f46, #2a1a5e);
  border: 1px solid #c721c9;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease;
}

.provider-card:hover {
  background: linear-gradient(135deg, #c721c9, #8a2be2);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(199, 33, 201, 0.3);
}

/* Payment Tables */
.payment-table {
  background: linear-gradient(135deg, #1a0f46, #2a1a5e);
  border: 1px solid #c721c9;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.payment-table table {
  width: 100%;
  border-collapse: collapse;
}

.payment-table th,
.payment-table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid rgba(199, 33, 201, 0.2);
}

.payment-table th {
  color: #c721c9;
  font-weight: bold;
}

/* Security Badges */
.badge-item {
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, #1a0f46, #2a1a5e);
  border: 1px solid #c721c9;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.badge-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(199, 33, 201, 0.3);
}

/* VIP Levels */
.vip-level {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #1a0f46, #2a1a5e);
  border: 1px solid #c721c9;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.vip-level:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 20px rgba(199, 33, 201, 0.3);
}

.vip-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  min-width: 80px;
  text-align: center;
}

.vip-badge.bronze {
  background: linear-gradient(45deg, #cd7f32, #b8860b);
  color: white;
}

.vip-badge.silver {
  background: linear-gradient(45deg, #c0c0c0, #a8a8a8);
  color: black;
}

.vip-badge.gold {
  background: linear-gradient(45deg, #ffd700, #ffb347);
  color: black;
}

.vip-badge.platinum {
  background: linear-gradient(45deg, #e5e4e2, #d3d3d3);
  color: black;
}

.vip-badge.diamond {
  background: linear-gradient(45deg, #b9f2ff, #00bfff);
  color: black;
}

/* Support Cards */
.support-card {
  background: linear-gradient(135deg, #1a0f46, #2a1a5e);
  border: 1px solid #c721c9;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  animation: cardEntrance 0.6s ease-out;
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(199, 33, 201, 0.3);
}

.support-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #c721c9, #8a2be2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  color: white;
  animation: iconPulse 2s ease-in-out infinite;
}

.support-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c721c9;
  margin-bottom: 12px;
}

.support-description {
  color: #cccccc;
  margin-bottom: 12px;
}

.support-availability {
  background: linear-gradient(45deg, #c721c9, #8a2be2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
}

/* Promo Cards */
.promo-card {
  background: linear-gradient(135deg, #1a0f46, #2a1a5e);
  border: 1px solid #c721c9;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  animation: cardEntrance 0.6s ease-out;
}

.promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(199, 33, 201, 0.3);
}

.promo-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #c721c9, #8a2be2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  color: white;
  animation: iconPulse 2s ease-in-out infinite;
}

.promo-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c721c9;
  margin-bottom: 16px;
}

.promo-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.promo-button {
  background: linear-gradient(45deg, #c721c9, #8a2be2);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(199, 33, 201, 0.4);
}

/* Feature Sections */
.feature-content {
  animation: fadeInLeft 1s ease-out;
}

.feature-image {
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Trust Badges */
.trust-badge {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #1a0f46, #2a1a5e);
  border: 1px solid #c721c9;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(199, 33, 201, 0.3);
}

.trust-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
}

.trust-description {
  color: #cccccc;
  font-size: 14px;
}

/* FAQ */
.faq-item {
  background: linear-gradient(135deg, #1a0f46, #2a1a5e);
  border: 1px solid #c721c9;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 20px rgba(199, 33, 201, 0.3);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(199, 33, 201, 0.1);
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  margin: 0;
}

.faq-question i {
  color: #c721c9;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
}

.faq-answer p {
  padding: 20px 24px;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.footer-link {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #c721c9;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #c721c9, #8a2be2);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(199, 33, 201, 0.4);
}

.responsible-gaming {
  text-align: center;
}

/* Bonus Breakdown */
.bonus-breakdown ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(199, 33, 201, 0.2);
}

.bonus-breakdown ul li:last-child {
  border-bottom: none;
}

.bonus-terms table {
  background: rgba(26, 15, 70, 0.5);
  border: 1px solid #c721c9;
  border-radius: 8px;
  overflow: hidden;
}

.bonus-terms th {
  background: rgba(199, 33, 201, 0.3);
  color: white;
  font-weight: bold;
}

.bonus-terms td {
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .bonus-main {
    font-size: 2rem;
  }

  .bonus-extra {
    font-size: 1.2rem;
  }

  .cta-button,
  .cta-button-secondary {
    padding: 14px 24px;
    font-size: 16px;
  }

  .step-card,
  .support-card,
  .promo-card {
    padding: 24px 16px;
  }

  .content-card {
    padding: 24px;
  }

  .floating-elements {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .bonus-box {
    padding: 16px;
  }

  .bonus-main {
    font-size: 1.5rem;
  }

  .step-icon,
  .support-icon,
  .promo-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .payment-table {
    overflow-x: auto;
  }

  .payment-table table {
    min-width: 300px;
  }
}

/* Animation Delays for Staggered Effects */
.step-card:nth-child(1) {
  animation-delay: 0.1s;
}
.step-card:nth-child(2) {
  animation-delay: 0.2s;
}
.step-card:nth-child(3) {
  animation-delay: 0.3s;
}
.step-card:nth-child(4) {
  animation-delay: 0.4s;
}

.game-card:nth-child(1) {
  animation-delay: 0.1s;
}
.game-card:nth-child(2) {
  animation-delay: 0.2s;
}
.game-card:nth-child(3) {
  animation-delay: 0.3s;
}
.game-card:nth-child(4) {
  animation-delay: 0.4s;
}
.game-card:nth-child(5) {
  animation-delay: 0.5s;
}
.game-card:nth-child(6) {
  animation-delay: 0.6s;
}

.provider-card:nth-child(odd) {
  animation: slideInLeft 0.6s ease-out;
}

.provider-card:nth-child(even) {
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Loading Animation */
@keyframes loading {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
