/* Custom CSS for London Eye 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;
}

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

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

.floating-card {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.floating-chip {
  top: 20%;
  right: 15%;
  animation-delay: -3s;
}
.floating-london {
  top: 60%;
  left: 5%;
  animation-delay: -6s;
}
.floating-crown {
  top: 30%;
  right: 25%;
  animation-delay: -9s;
}
.floating-card-2 {
  top: 70%;
  right: 10%;
  animation-delay: -12s;
}
.floating-chip-2 {
  top: 40%;
  left: 20%;
  animation-delay: -15s;
}
.floating-ghost {
  top: 80%;
  left: 30%;
  animation-delay: -18s;
}
.floating-london-2 {
  top: 15%;
  left: 60%;
  animation-delay: -21s;
}

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

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

.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.6;
  }
}

/* Navigation */
nav.scrolled {
  background: rgba(26, 26, 26, 0.98) !important;
  backdrop-filter: blur(10px);
}

.logo-3d {
  text-shadow: 2px 2px 0px #ff1b1a, 4px 4px 0px rgba(255, 27, 26, 0.5), 6px 6px 10px rgba(0, 0, 0, 0.8);
}

.nav-link {
  position: relative;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ff1b1a;
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff1b1a, #ffd700);
  transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-title {
  animation: heroEntrance 1.5s ease-out;
}

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

.text-3d-red {
  background: linear-gradient(45deg, #ff1b1a, #ff6b6a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow:
    2px 2px 0px rgba(255, 27, 26, 0.8),
    4px 4px 0px rgba(255, 27, 26, 0.6),
    6px 6px 0px rgba(255, 27, 26, 0.4),
    8px 8px 20px rgba(0, 0, 0, 0.8);
}

.text-3d-gold {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow:
    2px 2px 0px rgba(255, 215, 0, 0.8),
    4px 4px 0px rgba(255, 215, 0, 0.6),
    6px 6px 0px rgba(255, 215, 0, 0.4),
    8px 8px 20px rgba(0, 0, 0, 0.8);
}

/* Bonus Box */
.bonus-box {
  background: linear-gradient(135deg, rgba(255, 27, 26, 0.2), rgba(255, 215, 0, 0.2));
  border: 2px solid #ff1b1a;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: bonusGlow 3s infinite ease-in-out;
}

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

@keyframes bonusGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 27, 26, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 27, 26, 0.8), 0 0 60px rgba(255, 215, 0, 0.3);
  }
}

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

.bonus-header {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.bonus-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.5rem;
}

.bonus-extra {
  font-size: 1.1rem;
  color: #ff1b1a;
  font-weight: semibold;
}

/* Buttons */
.cta-button-primary,
.cta-button-secondary,
.cta-button-small {
  position: relative;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-button-primary {
  background: linear-gradient(135deg, #ff1b1a, #ff6b6a);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 27, 26, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 27, 26, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-button-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: white;
  border: 2px solid #ff1b1a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-button-secondary:hover {
  background: linear-gradient(135deg, #ff1b1a, #ff6b6a);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 27, 26, 0.4);
}

.cta-button-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #ff1b1a, #ff6b6a);
  color: white;
}

/* Hero Image */
.hero-image-container {
  position: relative;
  animation: imageFloat 6s infinite ease-in-out;
}

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

.image-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #ff1b1a, #ffd700, #ff1b1a);
  border-radius: 25px;
  z-index: -1;
  opacity: 0.3;
  animation: imageGlow 4s infinite ease-in-out;
}

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

@keyframes imageGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

/* Section Titles */
.section-title {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ff1b1a, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

/* Step Cards */
.step-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 27, 26, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: cardEntrance 0.8s ease-out;
  animation-fill-mode: both;
}

.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;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 27, 26, 0.3);
  border-color: #ff1b1a;
}

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

.step-icon {
  font-size: 3rem;
  color: #ff1b1a;
  margin-bottom: 1rem;
  animation: iconPulse 2s infinite ease-in-out;
}

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

.step-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 1rem;
}

.step-description {
  color: #ccc;
}

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

.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;
}

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

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

.game-image-container {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 27, 26, 0.8), rgba(255, 215, 0, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.game-card:hover .game-image {
  transform: scale(1.1);
}

.play-button {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: white;
  color: #ff1b1a;
  transform: scale(1.1);
}

.game-title {
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  color: white;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.7));
}

/* Content Cards */
.content-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 27, 26, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Provider Cards */
.provider-card {
  background: linear-gradient(135deg, rgba(255, 27, 26, 0.1), rgba(255, 215, 0, 0.1));
  border: 1px solid rgba(255, 27, 26, 0.3);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease;
}

.provider-card:hover {
  background: linear-gradient(135deg, rgba(255, 27, 26, 0.2), rgba(255, 215, 0, 0.2));
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 27, 26, 0.3);
}

/* VIP Levels */
.vip-level {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 27, 26, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.vip-level:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 27, 26, 0.2));
  transform: translateX(10px);
}

.vip-name {
  font-weight: bold;
  color: #ffd700;
}

.vip-requirement {
  color: #ccc;
  font-size: 0.9rem;
}

/* Bonus Cards */
.bonus-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 2px solid rgba(255, 27, 26, 0.3);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.bonus-card:hover {
  transform: translateY(-10px);
  border-color: #ff1b1a;
  box-shadow: 0 20px 40px rgba(255, 27, 26, 0.4);
}

.bonus-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
  font-size: 1.2rem;
}

.bonus-card-header i {
  font-size: 1.5rem;
  animation: iconBounce 2s infinite ease-in-out;
}

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

.bonus-card-amount {
  font-size: 2rem;
  font-weight: bold;
  color: #ff1b1a;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-card-description {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.bonus-card-button {
  background: linear-gradient(135deg, #ff1b1a, #ff6b6a);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.bonus-card-button:hover {
  background: linear-gradient(135deg, #ff6b6a, #ff1b1a);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 27, 26, 0.4);
}

/* Feature Cards */
.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 27, 26, 0.3);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 27, 26, 0.3);
  border-color: #ff1b1a;
}

.feature-image {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
}

.feature-content h3 {
  margin-bottom: 1rem;
}

/* Support Cards */
.support-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 27, 26, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.support-card:hover {
  transform: translateY(-10px);
  border-color: #ff1b1a;
  box-shadow: 0 15px 30px rgba(255, 27, 26, 0.3);
}

.support-icon {
  font-size: 3rem;
  color: #ff1b1a;
  margin-bottom: 1rem;
  animation: iconPulse 3s infinite ease-in-out;
}

.support-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 1rem;
}

.support-description {
  color: #ccc;
  margin-bottom: 1rem;
}

.support-availability {
  background: linear-gradient(135deg, #ff1b1a, #ff6b6a);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  display: inline-block;
}

/* Trust Badges */
.trust-badge {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-5px);
  border-color: #ffd700;
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* FAQ Section */
.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 27, 26, 0.3);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #ff1b1a;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease;
}

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

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

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

.faq-answer p {
  padding: 1.5rem;
  color: #ccc;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

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

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

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

  .bonus-card-amount {
    font-size: 1.5rem;
  }

  .floating-elements > div {
    font-size: 1.5rem;
  }

  .step-card,
  .game-card,
  .bonus-card {
    margin-bottom: 1rem;
  }
}

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

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

  .bonus-box {
    padding: 1rem;
  }

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

  .cta-button-primary,
  .cta-button-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Additional Animations */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gradient-animate {
  background: linear-gradient(-45deg, #ff1b1a, #ff6b6a, #ffd700, #ff1b1a);
  background-size: 400% 400%;
  animation: gradientShift 4s ease infinite;
}

/* Glow Effects */
.glow-red {
  box-shadow: 0 0 20px rgba(255, 27, 26, 0.5);
  animation: glowPulse 2s infinite ease-in-out;
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 27, 26, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 27, 26, 0.8);
  }
}

/* Parallax Elements */
.parallax {
  transform: translateZ(0);
  will-change: transform;
}
