/* Custom CSS for Speedy Spins Casino */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.floating-emoji {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: float 20s infinite linear;
}

.floating-emoji:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.floating-emoji:nth-child(2) {
  left: 20%;
  animation-delay: -5s;
}

.floating-emoji:nth-child(3) {
  left: 30%;
  animation-delay: -10s;
}

.floating-emoji:nth-child(4) {
  left: 70%;
  animation-delay: -15s;
}

.floating-emoji:nth-child(5) {
  left: 80%;
  animation-delay: -8s;
}

.floating-emoji:nth-child(6) {
  left: 90%;
  animation-delay: -12s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

/* Navigation */
.nav-link {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #3b82f6;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Buttons */
.cta-button {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.cta-button-primary {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  text-decoration: none;
}

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5);
}

.cta-button-secondary {
  background: transparent;
  color: #3b82f6;
  padding: 16px 32px;
  border: 2px solid #3b82f6;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.cta-button-secondary:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: radial-gradient(ellipse at center, rgba(30, 64, 175, 0.1) 0%, rgba(0, 0, 0, 1) 70%);
}

.spotlight {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  animation: spotlight 8s ease-in-out infinite;
}

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

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

@keyframes spotlight {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.6;
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: slideInUp 1s ease-out;
}

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

/* Bonus Box */
.bonus-box {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(59, 130, 246, 0.1));
  border: 2px solid #3b82f6;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
  }
}

.bonus-badge {
  background: #3b82f6;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
}

.bonus-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #3b82f6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 8px;
}

.bonus-spins {
  font-size: 1.2rem;
  color: #e2e8f0;
  font-weight: 600;
}

/* Section Titles */
.section-title {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

/* Step Cards */
.step-card {
  background: rgba(30, 64, 175, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 12px;
}

.step-description {
  color: #e2e8f0;
  font-weight: 500;
}

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

.game-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

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

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

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

.game-title {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-align: center;
}

.play-button {
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: #1e40af;
  transform: scale(1.1);
}

/* Stat Cards */
.stat-card {
  background: rgba(30, 64, 175, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.stat-icon {
  font-size: 2.5rem;
  color: #3b82f6;
  margin-bottom: 16px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
}

.stat-label {
  color: #e2e8f0;
  font-weight: 600;
}

/* Provider Cards */
.provider-card {
  background: rgba(30, 64, 175, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  color: #e2e8f0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.provider-card:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
  color: white;
  transform: translateY(-3px);
}

/* Payment Table */
.payment-table {
  background: rgba(30, 64, 175, 0.1);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.payment-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 16px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  color: #e2e8f0;
  transition: all 0.3s ease;
}

.payment-row:hover {
  background: rgba(59, 130, 246, 0.1);
}

.payment-row:last-child {
  border-bottom: none;
}

/* VIP Levels */
.vip-level {
  background: rgba(30, 64, 175, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.vip-level:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.vip-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: white;
}

.vip-icon.bronze {
  background: linear-gradient(135deg, #cd7f32, #b8860b);
}

.vip-icon.silver {
  background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
}

.vip-icon.gold {
  background: linear-gradient(135deg, #ffd700, #ffb347);
}

.vip-icon.diamond {
  background: linear-gradient(135deg, #b9f2ff, #00d4ff);
}

.vip-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 8px;
}

.vip-requirement {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.vip-benefits {
  list-style: none;
  padding: 0;
  text-align: left;
}

.vip-benefits li {
  color: #e2e8f0;
  padding: 4px 0;
  font-size: 0.9rem;
}

.vip-benefits li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  margin-right: 8px;
}

/* Bonus Table */
.bonus-table {
  background: rgba(30, 64, 175, 0.1);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

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

.bonus-table th {
  background: rgba(59, 130, 246, 0.2);
  color: white;
  padding: 16px;
  text-align: left;
  font-weight: 700;
}

.bonus-table td {
  padding: 16px;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.bonus-table tr:hover {
  background: rgba(59, 130, 246, 0.1);
}

.bonus-features {
  background: rgba(30, 64, 175, 0.1);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

/* Promo Cards */
.promo-card {
  background: rgba(30, 64, 175, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.promo-card:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.promo-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.promo-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 16px;
}

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

.promo-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.promo-prize {
  color: #3b82f6;
  font-weight: 700;
}

.promo-frequency {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Support Cards */
.support-card {
  background: rgba(30, 64, 175, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.support-card:hover {
  transform: translateY(-5px);
  border-color: #3b82f6;
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.support-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: white;
}

.support-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 8px;
}

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

.support-availability {
  color: #10b981;
  font-size: 0.9rem;
  font-weight: 600;
}

.responsible-gaming-info {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

/* FAQ */
.faq-item {
  background: rgba(30, 64, 175, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

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

.faq-question:hover {
  background: rgba(59, 130, 246, 0.1);
}

.faq-question h3 {
  color: white;
  font-weight: 600;
  margin: 0;
}

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

.faq-answer {
  padding: 0 20px 20px;
  color: #e2e8f0;
  line-height: 1.6;
}

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

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

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

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

  .payment-row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .promo-details {
    flex-direction: column;
    gap: 8px;
  }
}

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

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

  .cta-button-primary,
  .cta-button-secondary {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

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

.animate-slide-in-left {
  animation: slideInLeft 1s ease-out;
}

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

.animate-slide-in-right {
  animation: slideInRight 1s ease-out;
}

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