/* Custom CSS for Caspero Casino */

/* Base Styles */
* {
  scroll-behavior: smooth;
}

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

/* 3D Text Effects */
.text-3d-emerald {
  color: #10b981;
  text-shadow: 0 1px 0 #0d9488, 0 2px 0 #0f766e, 0 3px 0 #115e59, 0 4px 0 #134e4a, 0 5px 10px rgba(0, 0, 0, 0.3);
}

.text-3d-white {
  color: #ffffff;
  text-shadow: 0 1px 0 #e5e7eb, 0 2px 0 #d1d5db, 0 3px 0 #9ca3af, 0 4px 0 #6b7280, 0 5px 10px rgba(0, 0, 0, 0.3);
}

.text-3d-pink {
  color: #ea00f0;
  text-shadow: 0 1px 0 #c026d3, 0 2px 0 #a21caf, 0 3px 0 #86198f, 0 4px 0 #701a75, 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* Logo 3D Effect */
.logo-3d {
  text-shadow: 0 1px 0 #0d9488, 0 2px 0 #0f766e, 0 3px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.logo-3d:hover {
  transform: translateY(-2px);
  text-shadow: 0 2px 0 #0d9488, 0 4px 0 #0f766e, 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Title Animation */
.hero-title {
  animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #10b981, #ea00f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 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.6;
  animation: float 6s ease-in-out infinite;
}

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

.floating-emoji:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

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

.floating-emoji:nth-child(4) {
  top: 80%;
  right: 10%;
  animation-delay: 3s;
}

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

.floating-emoji:nth-child(6) {
  top: 70%;
  left: 70%;
  animation-delay: 5s;
}

.floating-emoji:nth-child(7) {
  top: 30%;
  right: 30%;
  animation-delay: 1.5s;
}

.floating-emoji:nth-child(8) {
  top: 90%;
  left: 40%;
  animation-delay: 2.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(16, 185, 129, 0.1) 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.5) rotate(180deg);
    opacity: 0.1;
  }
}

/* Button Styles */
.cta-button-large {
  background: linear-gradient(135deg, #ea00f0, #c026d3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(234, 0, 240, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-button-large::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-large:hover::before {
  left: 100%;
}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 0, 240, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button-secondary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1.1rem;
  border: 2px solid #10b981;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button-small {
  background: linear-gradient(135deg, #ea00f0, #c026d3);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(234, 0, 240, 0.3);
  display: inline-block;
  text-decoration: none;
}

.cta-button-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(234, 0, 240, 0.4);
}

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

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

.nav-link:hover {
  color: #10b981;
}

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

.nav-scrolled {
  background: rgba(19, 55, 77, 0.98) !important;
  backdrop-filter: blur(10px);
}

/* Content Boxes */
.content-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(234, 0, 240, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.2);
  backdrop-filter: blur(10px);
}

.bonus-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(234, 0, 240, 0.1));
  animation: bonusGlow 2s ease-in-out infinite alternate;
}

@keyframes bonusGlow {
  0% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  }
  100% {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
  }
}

.glow-box {
  position: relative;
}

.glow-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #10b981, #ea00f0, #10b981);
  border-radius: inherit;
  z-index: -1;
  animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Step Cards */
.step-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(234, 0, 240, 0.05));
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
  animation: cardSlideIn 0.6s ease-out;
}

.step-card:nth-child(2) {
  animation-delay: 0.2s;
}
.step-card:nth-child(3) {
  animation-delay: 0.4s;
}
.step-card:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes cardSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #ea00f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color:\
