

    .navbar {
      background: linear-gradient(135deg, #0a0e27 0%, #1a1a1a 100%);
      border-bottom: 3px solid #ffd700;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }

    .navbar-brand {
      color: #ffd700 !important;
      font-weight: bold;
      font-size: 24px;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-shadow: 0 0 8px #ffd700;
    }

    .navbar-nav .nav-link {
      color: white !important;
      font-weight: 500;
      margin-left: 15px;
      transition: 0.3s;
    }

    .navbar-nav .nav-link:hover {
      color: #ffd700 !important;
      text-shadow: 0 0 8px #ffd700;
    }

    .nav-button {
      background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
      border: none;
      padding: 8px 16px;
      border-radius: 25px;
      color: #0a0e27;
      font-weight: bold;
      transition: 0.3s;
      box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    }

    .nav-button:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }

/* BANNER */

.hero h1, .hero h2 {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  overflow: hidden;
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  animation: fadeInImage 1s ease-in-out;
}

.slider-image:first-child {
  display: block;
}

@keyframes fadeInImage {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slider-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-btn {
  background: rgba(255, 215, 0, 0.8);
  border: none;
  color: #0a0e27;
  width: 50px;
  height: 50px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.slider-btn:hover {
  background: #ffd700;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.dot:hover {
  background: rgba(255, 215, 0, 0.7);
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: right;
  max-width: 550px;
  margin-left: auto;
  padding-right: 40px;
  animation: slideInRight 1s ease forwards;
}

.hero-title {
  color: #ffd700;
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 20px #ffd700, 0 0 40px rgba(255, 215, 0, 0.4);
  line-height: 1.2;
}

.hero-subtitle {
  color: #fff;
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0e27;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.hero-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
  color: #0a0e27;
}

@keyframes slideInRight {
  from { 
    opacity: 0;
    transform: translateX(50px);
  }
  to { 
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 400px;
    padding: 20px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    padding-right: 0;
    margin-left: 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .slider-controls {
    padding: 0 10px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* content below headline */

.tagline-strip {
  background: #000;
  color: crimson;
  font-weight: 600;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
}

.tagline-strip span {
  display: inline-block;
  animation: slideLeft 18s linear infinite;
}

@keyframes slideLeft {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.glass-section {
  background: url('../images/banner.jpg') center center/cover no-repeat;
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-overlay.full-glass {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  width: 100%;
  padding: 40px 20px;
}

.glass-card.wide {
  background:   rgba(0, 0, 0, 0.7);
  border: 1px solid crimson;
  border-radius: 0;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
  box-shadow: inset 0 0 40px rgba(255, 0, 80, 0.1);
  animation: fadeInUp 1.2s ease forwards;
  width: 100%;
}

.glass-card.wide h2 {
  font-size: 30px;
  color: crimson;
  margin-bottom: 12px;
  font-weight: bold;
}

.glass-card.wide p {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 20px;
}

.glass-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.glass-tags span {
  background: rgba(255, 0, 60, 0.2);
  border: 1px solid crimson;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  color: white;
}

.glass-card.wide {
  /* existing styles... */
  animation: fadeInUp 1s ease-in-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.section-divider {
  height: 3px;
  background: linear-gradient(to right, #ff0040, #ff3370);
  width: 100%;
  border-radius: 6px;
}

/* Vertical spacoing*/




/* SPLIT IMAGE + TEXT SECTION */


.split-section {
  margin-top: 0;
}

.split-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* default/fallback image */
  background-image: url('/images/cricket-1.webp');
  min-height: 320px;
}

/* second column background */
.second-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url('/images/cricket-4.webp');
  min-height: 320px;
}

/* Per-page overrides — add a class to the <body> tag like <body class="page-index"> */
body.page-index .split-img { background-image: url('/images/cricket-1.webp'); }
body.page-index .second-img { background-image: url('/images/cricket-2.jpg'); }

body.page-radheexch .split-img { background-image: url('/images/radhe-img1.webp'); }
body.page-radheexch .second-img { background-image: url('/images/radhe-img2.jpg'); }

/* Per-page rules for other pages */
body.page-allpanel .split-img { background-image: url('/images/allpanel-img1.jpg'); }
body.page-allpanel .second-img { background-image: url('/images/allpanel-img2.webp'); }

body.page-diamondexch .split-img { background-image: url('/images/diamondexch-img1.jpg'); }
body.page-diamondexch .second-img { background-image: url('/images/diamondexch-img2.jpg'); }

body.page-dubaiexch247 .split-img { background-image: url('/images/dubaiexch247-img1.png'); }
body.page-dubaiexch247 .second-img { background-image: url('/images/dubaiexch247-img2.png'); }

body.page-dubaiexch365 .split-img { background-image: url('/images/banner4.jpg'); }
body.page-dubaiexch365 .second-img { background-image: url('/images/banner5.jpg'); }

body.page-fairplay .split-img { background-image: url('/images/fairplay-img1.jpg'); }
body.page-fairplay .second-img { background-image: url('/images/fairplay-img2.jpg'); }

body.page-gold365 .split-img { background-image: url('/images/gold365-img1.png'); }
body.page-gold365 .second-img { background-image: url('/images/gold365-img2.png'); }

body.page-laser247 .split-img { background-image: url('/images/laser247-imag2.jpg'); }
body.page-laser247 .second-img { background-image: url('/images/laser247-imag1.jpg'); }

body.page-lordsexch .split-img { background-image: url('/images/lordexch-img1.webp'); }
body.page-lordsexch .second-img { background-image: url('/images/lordexch-img2.webp'); }

body.page-lotus365 .split-img { background-image: url('/images/lotus365-img1.webp'); }
body.page-lotus365 .second-img { background-image: url('/images/lotus365-img2.webp'); }

body.page-rajbet .split-img { background-image: url('/images/rajbet-img1.jpg'); }
body.page-rajbet .second-img { background-image: url('/images/rajbet-img2.jpg'); }

body.page-satsport247 .split-img { background-image: url('/images/satsport247-img1.png'); }
body.page-satsport247 .second-img { background-image: url('/images/satsport247-img2.webp'); }

body.page-silverexch .split-img { background-image: url('/images/silverexch-img1.webp'); }
body.page-silverexch .second-img { background-image: url('/images/silverexch-img2.webp'); }

body.page-skyexch .split-img { background-image: url('/images/skyexch-img2.jpg'); }
body.page-skyexch .second-img { background-image: url('/images/skyexch-img1.jpg'); }

body.page-tenexch .split-img { background-image: url('/images/tenexch-img1.webp'); }
body.page-tenexch .second-img { background-image: url('/images/tenexch-img2.webp'); }

body.page-whatsapp-number .split-img { background-image: url('/images/whatsappnumber-img1.webp'); }
body.page-whatsapp-number .second-img { background-image: url('/images/whatsappnumber-img2.jpeg'); }

body.page-inner .split-img { background-image: url('/images/betting-img1.png'); }
body.page-inner .second-img { background-image: url('/images/betting-img2.png'); }

/* Add more page-specific rules as needed:
   body.page-<name> .split-img { background-image: url('/images/<image>'); }
*/


.split-text {
  background: #000;
  color: white;
}

.split-text h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 15px;
}

.split-text p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}



.features-section {
  background: #111;
  color: white;
  border-top: 1px solid crimson;
  border-bottom: 1px solid crimson;
}

.features-section h2 {
  font-weight: bold;
  animation: fadeIn 1.2s ease-in-out;
}

.features-section h4 {
  color: crimson;
  margin-bottom: 10px;
}

.features-section p {
  font-size: 15px;
  color: #ccc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.buzz-strip {
  background: linear-gradient(to right, #220011, #110011);
  font-weight: bold;
  letter-spacing: 0.5px;
  border-top: 1px solid crimson;
  border-bottom: 1px solid crimson;
  animation: scrollIn 1s ease;
}

@keyframes scrollIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.tease-intro {
  background: #0a000a;
  border-top: 2px solid crimson;
  border-bottom: 2px solid crimson;
  /*text-shadow: 0 0 6px #ff0033;*/
}





/* content */
.luxury-section {
  background-color: #0a0a0a;
  border-top: 1px solid crimson;
  padding-bottom: 60px;
}

.luxury-section h2,
.luxury-section h3 {
  font-weight: bold;
}

.luxury-section .icon-box h4 {
  color: #ff3366;
  margin-bottom: 10px;
}

.luxury-section .icon-box p {
  color: #ccc;
  font-size: 15px;
}

.full-paragraph p,
.full-paragraph ul {
  color: #f0f8ff;
  font-size: 15px;
  line-height: 1.6;
}

.full-paragraph ul {
  padding-left: 1.2rem;
}

.animate-fadein {
  animation: fadeInUp 1s ease-in-out;
}

.animate-fadein-slow {
  animation: fadeInUp 1.4s ease-in-out;
}

.animate-zoom {
  animation: zoomIn 1s ease-in-out;
}

.animate-zoom.delay-1 {
  animation-delay: 0.2s;
}

.animate-zoom.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* Footer Styling */

  .footer-title {
    color: #ff1a1a;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 1rem;
  }

  .footer-title::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: #ff1a1a;
    bottom: -8px;
    left: 0;
    border-radius: 50px;
  }

  .footer-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .footer-links a:hover {
    color: #ff1a1a;
    padding-left: 5px;
  }

  .social-icons a {
    color: white;
    font-size: 1.4rem;
    margin-right: 20px;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  }

  .glow-icon:hover {
    color: #ff1a1a;
    transform: scale(1.2);
    text-shadow: 0 0 8px #ff1a1a;
  }

  /* Fade In Animation */
  .animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

/* Escort Pro Card Styling */
      .escort-pro-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        height: 400px;
        transition: all 0.3s ease;
        box-shadow: 0 0 15px rgba(255, 20, 147, 0.15);
        
      }

      .escort-pro-card:hover {
        box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
        transform: scale(1.02);
      }

      .escort-pro-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .escort-info-glass {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 15px;
        backdrop-filter: blur(10px);
        background: rgba(255, 20, 147, 0.3);
        color: white;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
      }

      .escort-info-glass h5 {
        font-weight: bold;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .escort-whatsapp {
        position: absolute;
        bottom: 10px;
        right: 10px;
        z-index: 10;
      }

      .escort-whatsapp img {
        width: 36px;
        height: 36px;
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
        }

        50% {
          transform: scale(1.15);
        }

        100% {
          transform: scale(1);
        }
      }

      @media (max-width: 768px) {
        .escort-pro-card {
          height: 320px;
        }

        .escort-info-glass {
          font-size: 13px;
          padding: 10px;
        }

        .escort-whatsapp img {
          width: 30px;
          height: 30px;
        }
      }
  

      .flip-card-wrapper {
        height: 370px;
        width: 100%;
        perspective: 1000px;
      }

      .flip-card {
        width: 100%;
        height: 100%;
        position: relative;
      }

      .flip-card-inner {
        width: 100%;
        height: 100%;
        transition: transform 0.6s;
        transform-style: preserve-3d;
        position: relative;
      }

      .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
      }

      .flip-card-front,
      .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 12px;
        overflow: hidden;
        backface-visibility: hidden;
        top: 0;
        left: 0;
      }

      .flip-card-back {
        transform: rotateY(180deg);
      }

      /* Image + Overlay Text */
      .flip-card-front img,
      .flip-card-back img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 12px;
      }

      .escort-name-bar {
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: center;
        background: rgba(255, 20, 147, 0.3);
        backdrop-filter: blur(8px);
        padding: 8px 0;
        font-family: 'Poppins', sans-serif;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        font-size: 16px;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
      }

      /* Mobile support */
      @media (max-width: 768px) {
        .flip-card-wrapper {
          height: 300px;
        }

        .escort-name-bar {
          font-size: 14px;
          padding: 6px 0;
        }
      }
  
 
      .neon-glow {
        color: #f8f9fa;
        transition: all 0.3s ease;
      }

      .neon-glow:hover {
        color: #f3291a;
        text-shadow: 0 0 8px #f3291a, 0 0 16px #ff69b4;
      }

      img:hover {
        transform: scale(1.03);
        transition: 0.4s ease;
      }
      
      /* Floating Button Container */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Base Button Style */
.float-btn {
  width: 55px;
  height: 55px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Call Button Style */
.call-btn {
  background: radial-gradient(circle, red 40%, darkred 100%);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.9);
}

/* WhatsApp Button Style */
.whatsapp-btn {
  background: radial-gradient(circle, #25D366 40%, #128C7E 100%);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.9);
}

/* Hover Effect */
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
}

/* PLATFORMS SECTION STYLES */
.platforms-section {
  position: relative;
}

.platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 12px;
  min-height: 120px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.platform-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.platform-btn span {
  display: block;
  text-align: center;
}

.sky-banner-section {
  position: relative;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
}

.sky-banner-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.sky-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.sky-banner-overlay h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 3.3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .sky-banner-section,
  .sky-banner-image {
    min-height: 190px;
  }

  .sky-banner-overlay {
    padding: 14px;
  }
}

.small-keywords-section {
  position: relative;
}

.small-keywords-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.small-keyword-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 12px;
  min-height: 36px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  background: linear-gradient(135deg, #2d1b4e 0%, #0a0e27 100%);
  border: 1px solid rgba(255, 215, 0, 0.35);
  transition: all 0.25s ease;
}

.small-keyword-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 215, 0, 0.7);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .small-keywords-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .small-keyword-btn {
    padding: 7px 10px;
    min-height: 34px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .small-keywords-wrap {
    grid-template-columns: 1fr;
  }
}

/* PARTNERS SECTION STYLES */
.partners-section {
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(157, 78, 221, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* TESTIMONIALS SECTION STYLES */
.testimonials-section {
  position: relative;
}

.accordion-button {
  transition: all 0.3s ease !important;
  border-radius: 8px !important;
}

.accordion-button:not(.collapsed) {
  background-color: #3d1f5c !important;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3) !important;
}

.accordion-button:focus {
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4) !important;
}

/* FAQ SECTION STYLES */
.faq-section {
  position: relative;
}

.accordion-item {
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2) !important;
  transform: translateY(-2px);
}

/* Tagline strip update */
.tagline-strip {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0e27 !important;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
}

/* Hover Effect */
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
}


/* scorecard */
@keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .sports-match-board h1 {
            font-size: 24px !important;
        }

        .sport-tab {
            padding: 10px 20px !important;
            font-size: 12px !important;
        }

        .sports-tabs {
            gap: 8px !important;
        }

        .sport-content div div {
            padding: 15px !important;
        }

        .sport-content h3 {
            font-size: 16px !important;
        }

        .sport-content p {
            font-size: 11px !important;
        }

        .sport-content span {
            padding: 6px 12px !important;
            font-size: 12px !important;
        }
    }

    @media (max-width: 480px) {
        .sports-match-board h1 {
            font-size: 18px !important;
        }

        .sports-tabs {
            flex-direction: column;
            gap: 10px !important;
        }

        .sport-tab {
            padding: 12px 15px !important;
            font-size: 11px !important;
            width: 100% !important;
        }

        .sport-content div div div {
            flex-direction: column !important;
            align-items: flex-start !important;
        }

        .sport-content h3 {
            font-size: 15px !important;
        }

        .sport-content span {
            padding: 6px 10px !important;
            font-size: 11px !important;
        }
    }
/* scorecard */