:root {
            --gold: #e7ba24;
            --dark-charcoal: #1a1a1a;
            --mid-gray: #2c2c2c;
            --light-gray: #f4f4f4;
            --glow-red: #ff3b3b;
            --font-main: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
        }



/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  color: #fff;
}

/* Dynamic Header - Marquee Style */
.dynamic-header {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #1a1a1a;
  border-bottom: 2px solid #cebe65;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}


.dynamic-header:hover { animation-play-state: paused; }

.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: scrollLeft 20s linear infinite;
  font-size: 1.4rem;
  font-weight: bold;
  color: #cebe65;
  text-shadow: 0 0 6px #cebe65c2;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.casino-heading {
  font-size: 1.8rem;
  font-weight: bold;
  color: #cebe65;
  text-shadow: 0 0 10px #cebe65;
  z-index: 2;
  position: relative;
}

/* --- 2. Navbar & Header --- */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background: rgba(10, 10, 10, 0.7);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--gold);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: top 0.3s;
        }

        .nav-logo img {
            height: 50px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li a {
            color: white;
            text-decoration: none;
            margin: 0 20px;
            font-weight: 600;
            transition: color 0.3s, text-shadow 0.3s;
        }

        .nav-menu li a:hover {
            color: var(--gold);
            text-shadow: 0 0 8px var(--gold);
        }

        .book-btn {
            background: var(--gold);
            color: #000;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

        .book-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
        }

/* ========== Hero Section ========== */
/* Hero Section */
/* 🎉 Marquee Top Bar */


/* 🖼️ Hero Section */
.hero-section {
  position: relative;
  height: 80vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* 🟣 Overlay on Background */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7); /* darkens bg */
  z-index: 1;
}

/* ✨ Sparkle Layer */
.sparkles::before, .sparkles::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(2px 2px at 20% 30%, #fff, transparent),
                    radial-gradient(1.5px 1.5px at 60% 70%, #cebe65, transparent),
                    radial-gradient(2px 2px at 80% 20%, #ffffffaa, transparent),
                    radial-gradient(1.8px 1.8px at 40% 90%, #cebe65, transparent);
  background-repeat: repeat;
  background-size: 300px 300px;
  animation: sparkleMove 60s linear infinite;
  z-index: 2;
}

@keyframes sparkleMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(200px, 200px); }
}

/* 🌟 Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 20px;
  animation: fadeIn 2s ease-in-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #ffe600;
  text-shadow: 0 0 15px #cebe65;
  animation: neonPulse 3s infinite, slideInDown 1.5s ease-out;
}

.hero-tagline {
  margin-top: 1rem;
  font-size: 1.5rem;
  text-shadow: 0 0 8px #fff;
  animation: fadeInUp 2s ease-out;
}

/* 🎯 Buttons */
.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-play {
  background: #cebe65;
  color: #000;
  box-shadow: 0 0 10px #cebe65;
}

.btn-play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #cebe65;
}

.btn-learn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-learn:hover {
  background-color: #fff;
  color: #000;
  transform: scale(1.05);
}

/* 🔥 Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInDown {
  0% { transform: translateY(-100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow: 0 0 15px #cebe65, 0 0 25px #ff0000;
  }
  50% {
    text-shadow: 0 0 25px #cebe65, 0 0 35px #ff0000;
  }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .btn {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .marquee-bar {
    font-size: 0.9rem;
  }
}


/* 🌌  ABout Section Styling */

.about-section {
  background: linear-gradient(to bottom right, #0f0f0f, #1a1a1a);
  color: #fff;
  padding: 100px 20px 60px;
  overflow: hidden;
  position: relative;
}

/* 💎 Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 🎯 Content Layout */
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

/* 📄 Text Styling */
.about-text {
  flex: 1 1 520px;
  animation: slideInLeft 1.2s ease forwards;
  opacity: 0;
}
.about-title {
  font-size: 3rem;
  color: #ffe600;
  margin-bottom: 20px;
  text-shadow: 0 0 12px #cebe65;
}
.about-title span {
  color: #ff0055;
  text-shadow: 0 0 15px #ff0055;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 15px;
}
.btn-about {
  padding: 12px 30px;
  background: #ffe600;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 0 15px #cebe65;
  transition: transform 0.3s ease;
}
.btn-about:hover {
  transform: scale(1.05);
}

/* 🖼️ Image */
.about-image {
  flex: 1 1 400px;
  animation: slideInRight 1.2s ease forwards;
  opacity: 0;
}
.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 20px #000;
  transition: transform 0.3s ease;
}
.about-image img:hover {
  transform: scale(1.03) rotate(-1deg);
}

/* 🎞️ Animations */
@keyframes slideInLeft {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* 🔢 Counter Styling */
.counter-section {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 30px;
}
.counter-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 0 10px #ff0055;
  width: 220px;
  transition: 0.3s;
}
.counter-box:hover {
  box-shadow: 0 0 20px #ffe600;
  transform: scale(1.05);
}
.counter-box h3 {
  font-size: 2rem;
  color: #ffe600;
}
.counter-box p {
  color: #ccc;
  margin-top: 5px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    animation: none;
    opacity: 1;
  }
  .about-image {
    animation: none;
    opacity: 1;
  }
}

/*About  Section Styling */
.turbo-why-choose {
  /* background-image: url('https://images.unsplash.com/photo-1616458412045-d6d9492a9c3d'); Replace with your casino image */
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 20px;
  z-index: 1;
}

.turbo-overlay {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 80px 20px;
   background-size: cover;
   
}

.turbo-why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.turbo-why-title {
  font-size: 3rem;
  color: #cebe65;
  margin-bottom: 20px;
  animation: fadeInDown 1.5s ease;
}

.turbo-why-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 60px;
  animation: fadeInUp 1.5s ease;
}

/* Cards Wrapper */
.turbo-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Individual Card */
.turbo-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  border-radius: 15px;
  padding: 30px 20px;
  width: 240px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.turbo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.turbo-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}

.turbo-count {
  font-size: 2rem;
  font-weight: bold;
  color: #cebe65;
}

/* Animations */
@keyframes fadeInDown {
  0% { transform: translateY(-40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .turbo-card {
    width: 100%;
  }

  .turbo-why-title {
    font-size: 2.2rem;
  }
}

/* Game Section Base */
.turbo-game-section {
  
  position: relative;
  padding: 100px 30px;
  overflow: hidden;
  color: #fff;
}

.turbo-game-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

/* Text Styling */
.turbo-game-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  margin: auto;
}

.turbo-game-title {
  font-size: 3rem;
  color: #cebe65;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #ff9900;
}

.turbo-game-subtitle {
  font-size: 1.2rem;
  color: #ffeb3b;
  margin-bottom: 50px;
}

/* Game Grid */
.turbo-game-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.turbo-game-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
  text-align: center;
  position: relative;
}

.turbo-game-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 20px #cebe6580;
}

.turbo-game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-info {
  padding: 20px;
}

.card-info h4 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.card-info p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.card-info .button {
  background: #cebe65;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.card-info button:hover {
  background: #ffdb3a;
}

/* Responsive */
@media (max-width: 768px) {
  .turbo-game-grid {
    flex-direction: column;
    align-items: center;
  }

  .turbo-game-title {
    font-size: 2rem;
  }
}

.turbo-winners-section {
  /* padding: 60px 20px; */
  position: relative;
  overflow: hidden;
  color: #fff;
}

.turbo-winners-overlay {
  background: rgba(0, 0, 0, 0.75);
  padding: 40px;
  border-radius: 12px;
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.turbo-winners-title {
  font-size: 2.7rem;
  color: #cebe65;
  text-shadow: 0 0 12px #cebe65;
  margin-bottom: 30px;
  animation: glowText 2s infinite ease-in-out;
}

@keyframes glowText {
  0% { text-shadow: 0 0 10px #cebe65; }
  50% { text-shadow: 0 0 20px #fff; }
  100% { text-shadow: 0 0 10px #cebe65; }
}

.turbo-winner-feed {
  overflow: hidden;
  position: relative;
  height: 100px;
}

.turbo-winner-list {
  display: flex;
  gap: 50px;
  animation: slideWinners 25s linear infinite;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.turbo-winner-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 25px;
  border-radius: 30px;
  box-shadow: 0 0 15px #cebe6566;
  font-size: 1.05rem;
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.turbo-winner-list li:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #cebe65;
}

.turbo-winner-list li img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #cebe65;
  object-fit: cover;
}

@keyframes slideWinners {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-200%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .turbo-winners-title {
    font-size: 2rem;
  }

  .turbo-winner-list li {
    font-size: 0.95rem;
    gap: 8px;
    padding: 8px 15px;
  }

  .turbo-winner-list li img {
    width: 36px;
    height: 36px;
  }
}


.jackpot-tier-section {
  position: relative;
  
  padding: 100px 20px;
  overflow: hidden;
  color: #fff;
}

.jackpot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.jackpot-tier-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.jackpot-tier-title {
  font-size: 3rem;
  color: #cebe65;
  margin-bottom: 10px;
  animation: glowText 3s infinite;
}

.jackpot-tier-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #eee;
}

.jackpot-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.jackpot-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #cebe6566;
  padding: 30px;
  border-radius: 15px;
  width: 280px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatCard 4s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.25), 0 0 10px rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.jackpot-card:hover {
  transform: scale(1.07);
  box-shadow: 0 0 35px #cebe65, 0 0 15px rgba(255, 255, 255, 0.4);
}

.jackpot-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #fff;
}

.jackpot-card p {
  font-size: 0.95rem;
  color: #ddd;
}

.jackpot-amount {
  font-size: 2rem;
  font-weight: bold;
  color: #00ffcc;
  margin-bottom: 10px;
  animation: flicker 1.5s infinite;
}

@keyframes glowText {
  0%, 100% {
    text-shadow: 0 0 10px #cebe65;
  }
  50% {
    text-shadow: 0 0 25px #fff;
  }
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  45% { opacity: 0.85; }
  55% { opacity: 1; }
  70% { opacity: 0.92; }
}

@media (max-width: 768px) {
  .jackpot-card {
    width: 100%;
  }

  .jackpot-tier-title {
    font-size: 2.2rem;
  }
}




.tj-testimonials {
      position: relative;
      overflow: hidden;
      padding: 80px 20px;
      background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    }

    .tj-bg-effect {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      
      animation: bgPulse 10s linear infinite;
      z-index: 1;
    }

    @keyframes bgPulse {
      0%, 100% { transform: scale(1); opacity: 0.1; }
      50% { transform: scale(1.1); opacity: 0.15; }
    }

    .tj-title {
      position: relative;
      text-align: center;
      font-size: 2.5rem;
      color: #fff;
      z-index: 2;
      margin-bottom: 40px;
      text-shadow: 0 0 15px #0ff, 0 0 30px #f0f;
    }

    .carousel-container {
      position: relative;
      max-width: 1000px;
      margin: auto;
      overflow: hidden;
      z-index: 2;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.6s ease-in-out;
      width: max-content;
    }

    .tj-card {
      flex: 0 0 300px;
      margin: 0 10px;
      padding: 25px;
      background: rgba(0, 0, 0, 0.8);
      border: 3px solid;
      border-radius: 12px;
      text-align: center;
      color: #fff;
      animation: borderGlow 10s infinite linear;
      transition: transform 0.3s ease;
    }

    @keyframes borderGlow {
      0% { border-color: #f0f; box-shadow: 0 0 15px #f0f; }
      25% { border-color: #0ff; box-shadow: 0 0 15px #0ff; }
      50% { border-color: #0f0; box-shadow: 0 0 15px #0f0; }
      75% { border-color: #ff0; box-shadow: 0 0 15px #ff0; }
      100% { border-color: #f0f; box-shadow: 0 0 15px #f0f; }
    }

    .tj-card:hover {
      transform: scale(1.05);
    }

    .tj-card h3 {
      margin: 0 0 5px;
      font-size: 1.3rem;
    }

    .user-id {
      font-size: 0.9rem;
      color: #ccc;
    }

    .feedback {
      margin: 10px 0;
      font-style: italic;
    }

    .stars {
      color: #cebe65;
      font-size: 1.2rem;
    }

    .tj-cta {
      text-align: center;
      margin-top: 40px;
      z-index: 2;
      position: relative;
    }

    .tj-btn {
      padding: 12px 28px;
      background: linear-gradient(45deg, #ff00cc, #00e5ff, #cebe65);
      color: #000;
      font-weight: bold;
      border-radius: 30px;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .tj-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px #fff;
    }

    @media screen and (max-width: 768px) {
      .tj-card {
        flex: 0 0 90%;
      }
    }    




    
/* Latest Insights Section */
.latest-insights-section {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #1b1b2f, #0f0f1a);
  text-align: center;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 40px;
  color: #cebe65;
  margin-bottom: 50px;
  text-shadow: 2px 2px 10px #000;
}

.insights-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.insight-card {
  background: rgba(0, 0, 0, 0.6);
  width: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
}

.insight-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.insight-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.insight-content {
  padding: 20px;
  color: #fff;
}

.insight-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #cebe65;
}

.insight-content p {
  font-size: 15px;
  color: #dcdcdc;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.4s ease;
}

.read-more:hover {
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .insight-card {
    width: 100%;
    max-width: 90%;
  }
}
/* Tournament Section Styles */
.tournament-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1614380100784-54c1d7f1f1b3') no-repeat center center/cover;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.tournament-overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 60px 20px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.tournament-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b, #cebe65, #ff416c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGlow 4s linear infinite;
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 10px #ff416c, 0 0 20px #ff4b2b;
  }
  50% {
    text-shadow: 0 0 20px #cebe65, 0 0 40px #ff416c;
  }
}

.tournament-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #ddd;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-in-out;
}

.time-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.label {
  display: block;
  font-size: 14px;
  font-weight: normal;
  margin-top: 5px;
  color: #ccc;
}

.join-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 30px;
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px #ff416c;
}

.join-btn:hover {
  background: linear-gradient(45deg, #cebe65, #ff416c);
  box-shadow: 0 0 30px #cebe65;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .countdown {
    flex-direction: column;
  }
}







/* body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: white;
} */

.turbo-footer {
    background: linear-gradient(135deg, #111, #1a1a1a);
    position: relative;
    overflow: hidden;
}

/* Moving Light Animation */
.turbo-footer::before {
    content: '';
    /* position: absolute; */
    top: 0; left: -50%;
    width: 200%;
    height: 100%;
    /* background: linear-gradient(120deg, transparent, rgba(255,215,0,0.15), transparent); */
    /* animation: shine 8s linear infinite; */
}
/* @keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
} */












                                          /* Footer Layout */
/* --- 14. Footer --- */
        .footer {
            background: #111;
            padding: 50px 5%;
            text-align: center;
            border-top: 1px solid #333;
        }
        .footer-logo img {
            height: 60px;
            margin-bottom: 20px;
        }
        .footer-links {
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--gold);
        }
        .social-icons {
            margin-bottom: 20px;
        }
        .social-icons a {
            color: #aaa;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: var(--gold);
        }
        .copyright {
            color: #777;
        }

        /* --- 15. UPDATED: Footer Newsletter --- */
        .newsletter-container {
            max-width: 500px;
            margin: 0 auto 30px auto;
        }

        .newsletter-container h4 {
            color: var(--gold);
            font-size: 1.2rem;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .newsletter-container p {
            color: #aaa;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        
        .newsletter-btn {
            display: inline-block;
            background: var(--gold);
            color: #000;
            text-decoration: none;
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }
        
        .newsletter-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        }


/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-col {
        min-width: 100%;
    }
}





 .footer-logo-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    /* filter: drop-shadow(0 0 12px gold); */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 18px gold) drop-shadow(0 0 25px red);
}



.pricing-section {
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, #1a1a1f 0%, #0b0b0f 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: repeating-radial-gradient(circle, rgba(255,215,0,0.1) 0, transparent 80px);
  animation: rotateBG 20s linear infinite;
}

@keyframes rotateBG {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.pricing-title {
  font-size: 3rem;
  color: gold;
  margin-bottom: 60px;
  z-index: 1;
}

.pricing-cards {
  display: flex;
  gap: 30px;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: 15px;
  padding: 40px 30px;
  width: 300px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
  border-color: gold;
}

.featured {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
  border: 2px solid gold;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: gold;
}

.price {
  font-size: 2.5rem;
  margin: 15px 0;
  color: #fff;
}

.price span {
  font-size: 1rem;
  color: #bbb;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.pricing-card ul li {
  margin: 10px 0;
  color: #ddd;
}

.pricing-btn {
  display: inline-block;
  padding: 12px 25px;
  background: gold;
  color: #000;
  font-weight: bold;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pricing-btn:hover {
  background: #cebe65;
  box-shadow: 0 0 15px gold;
}



/* ===== FAQ Section ===== */
.faq-pro-section {
  background: linear-gradient(135deg, #0a0f1f, #12172b);
  padding: 80px 20px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.faq-pro-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.faq-pro-title {
  font-size: 2.5rem;
  background: linear-gradient(90deg, gold, orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-pro-subtitle {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 50px;
}

.faq-pro-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* Questions list */
.faq-pro-questions {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-pro-question {
  background: #1b2238;
  border: none;
  padding: 15px 20px;
  text-align: left;
  font-size: 1.1rem;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.faq-pro-question:hover {
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  transform: translateX(5px);
}

.faq-pro-question.active {
  background: linear-gradient(90deg, #cebe65, #ff8800);
  color: #000;
  font-weight: bold;
}

/* Answers panel */
.faq-pro-answers {
  flex: 2;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

.faq-pro-answer {
  display: none;
  animation: fadeIn 0.4s ease;
}

.faq-pro-answer.active {
  display: block;
}

.faq-pro-answer h3 {
  font-size: 1.5rem;
  color: gold;
}

.faq-pro-answer p {
  font-size: 1rem;
  color: #ddd;
  margin-top: 10px;
  line-height: 1.6;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Support Button */
.faq-pro-support-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 28px;
  background: linear-gradient(90deg, gold, orange);
  color: black;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: glowPulse 1.5s infinite;
}

.faq-pro-support-btn:hover {
  transform: scale(1.05);
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 10px gold; }
  50% { box-shadow: 0 0 20px orange; }
}

/* Responsive */
@media(max-width: 768px) {
  .faq-pro-wrapper {
    flex-direction: column;
  }
}

/* Answers panel */
.faq-pro-answers {
  flex: 2;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;      /* Vertical centering */
  justify-content: center;  /* Horizontal centering */
  min-height: auto;         /* Remove fixed height */
}

.faq-pro-answer {
  display: none;
  animation: fadeIn 0.4s ease;
  max-width: 90%;           /* Keep answers neat */
  text-align: center;       /* Center align text */
}

.faq-pro-answer.active {
  display: block;
}

  