/* ============================================
   ROOT VARIABLES
============================================ */
:root {
  --color-bg-dark: #0a0a0a;
  --color-bg-card: #f5f5f0;
  --color-gold-light: #e8c547;
  --color-gold: #c9a227;
  --color-gold-dark: #a68521;
  --color-text-light: #ffffff;
  --color-text-muted: #888888;
  --color-text-dark: #1a1a1a;
  --color-progress-bg: #ddd;
  --color-progress-fill: #c9a227;
  --font-display: "Lora", serif;
  --font-body: "Poppins", sans-serif;
}

/* ============================================
   BASE STYLES
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  overflow-x: hidden;
}

/* ============================================
   NAVBAR STYLES
============================================ */
.navbar {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(56, 56, 56, 0.38966) 29.64%, rgba(100, 100, 100, 0.302953) 57.42%, rgba(155, 155, 155, 0.195159) 79.14%, rgba(155, 155, 155, 0) 100%);
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Equal width for left and right sections */
.navbar-nav-left,
.navbar-nav-right {
  flex: 1;
  display: flex;
}

.navbar-nav-left {
  justify-content: flex-start;
}

.navbar-nav-right {
  justify-content: flex-end;
}

/* Center logo section */
.navbar-brand {
  flex: 0 0 auto;
  margin: 0 2rem;
}

.navbar-nav-left .navbar-nav {
  gap: 0.5rem;
}

.navbar-nav-left .nav-link {
  color: var(--color-text-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.navbar-nav-left .nav-link:hover,
.navbar-nav-left .nav-link.active {
  color: var(--color-gold);
}

/* Logo Styles */
.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.25rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 1px;
}

.brand-tagline {
  font-size: 0.6rem;
  color: var(--color-gold);
  letter-spacing: 3px;
  margin-top: -2px;
}

/* Right Nav Icons */
.navbar-nav-right {
  gap: 0.4rem;
  align-items: center;
}

.nav-icon {
  color: var(--color-text-light);
  font-size: 1.25rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-icon:hover {
  color: var(--color-gold);
}

.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   FEATURED COMPETITIONS SECTION
============================================ */


.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust darkness */
  z-index: 1;
}

/* Ensure content is above video */
.featured-competitions .container {
  position: relative;
  z-index: 2;
}

.featured-competitions {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #0a0a0a 0%, #121212 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

/* Sparkle Overlay Effect */
.sparkle-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cdefs%3E%3CradialGradient id='sparkle' cx='50%25' cy='50%25' r='50%25'%3E%3Cstop offset='0%25' style='stop-color:%23c9a227;stop-opacity:0.8'/%3E%3Cstop offset='100%25' style='stop-color:%23c9a227;stop-opacity:0'/%3E%3C/radialGradient%3E%3C/defs%3E%3C/svg%3E");
  pointer-events: none;
}

.featured-competitions::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: radial-gradient(ellipse at center bottom, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating Particles */
.featured-competitions::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background-image: radial-gradient(2px 2px at 20% 80%, rgba(201, 162, 39, 0.8), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(232, 197, 71, 0.6), transparent),
    radial-gradient(1px 1px at 60% 85%, rgba(201, 162, 39, 0.9), transparent),
    radial-gradient(2px 2px at 80% 75%, rgba(232, 197, 71, 0.7), transparent),
    radial-gradient(1px 1px at 10% 90%, rgba(201, 162, 39, 0.5), transparent),
    radial-gradient(2px 2px at 90% 80%, rgba(232, 197, 71, 0.8), transparent),
    radial-gradient(1px 1px at 30% 95%, rgba(201, 162, 39, 0.6), transparent),
    radial-gradient(2px 2px at 70% 90%, rgba(232, 197, 71, 0.7), transparent),
    radial-gradient(1px 1px at 50% 88%, rgba(201, 162, 39, 0.9), transparent),
    radial-gradient(2px 2px at 15% 75%, rgba(232, 197, 71, 0.5), transparent);
  pointer-events: none;
  animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.section-header {
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 600;
  /* background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%); */
  background: linear-gradient(90deg, #A77327 0%, #EFD67B 49.79%, #A77327 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--color-text-light);
  font-size: 20px;
  font-weight: 500;
  font-family: Poppins;
}

/* ============================================
   COMPETITION CARD STYLES
============================================ */
.competition-card {
  background: var(--color-bg-card);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.competition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(201, 162, 39, 0.2);
}

.competition-card.featured {
  border: 2px solid var(--color-gold);
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #0d9488;
  color: white;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  padding: 1rem;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.card-content {
  padding: 0 1.25rem 1.25rem;
}

.card-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.price-tickets {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.price-info,
.tickets-info {
  display: flex;
  flex-direction: column;
}

.tickets-info {
  text-align: right;
}

.price-info .label,
.tickets-info .label {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.price-info .value,
.tickets-info .value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.progress-section {
  margin-bottom: 1rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.progress {
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  /* background: linear-gradient(90deg, var(--color-gold-light) 0%, var(--color-gold) 100%); */
  background: linear-gradient(90deg, #A77327 0%, #EFD67B 49.79%, #A77327 100%);

  border-radius: 4px;
  transition: width 0.6s ease;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 1rem;
}

.countdown i {
  color: #666;
}

.btn-enter {
  width: 100%;
  background: var(--color-text-dark);
  color: var(--color-text-light);
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-enter:hover {
  background: #333;
  color: var(--color-text-light);
  transform: scale(1.02);
}


/* ============================================
   LIVE COMPETITIONS SECTION
============================================ */
.live-competitions {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #0a0a0a 0%, #121212 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}
.live-competitions .competition-card {
    background:url('/images/95a2af465e478094a9e7777a8a50177a1c9f9c09.jpg');
    background-position-x: center;
    background-position-y: -504px;
    background-repeat: no-repeat;
}
.choices{
  margin-bottom: 0 !important;
}
/* Sparkle effect for Live section */
/* .live-competitions::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 350px;
  /* background: linear-gradient(180deg, rgba(250, 166, 55, 0.2) 0%, rgba(255, 229, 143, 0.2) 100%);
backdrop-filter: blur(250px);

  background: radial-gradient(ellipse at center bottom, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  pointer-events: none;
} */
 .glow-box {
  position: relative;
  background: #000;
  overflow: hidden;
}

/* TOP-LEFT GLOW */
.glow-box::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -140px;
  width: 429px;
  height: 429px;
  pointer-events: none;

  background: radial-gradient(
    circle,
    rgba(255, 229, 143, 0.9) 0%,
    rgba(250, 166, 55, 0.6) 35%,
    rgba(0, 0, 0, 0) 70%
  );

  filter: blur(250px);
}

/* BOTTOM-RIGHT GLOW */
.glow-box::after {
  content: "";
  position: absolute;
  bottom: -140px;
  right: -140px;
  width: 429px;
  height: 429px;
  pointer-events: none;

  background: radial-gradient(
    circle,
    rgba(255, 229, 143, 0.9) 0%,
    rgba(250, 166, 55, 0.6) 35%,
    rgba(0, 0, 0, 0) 70%
  );

  filter: blur(250px);
}

 .golden-text{
      background: linear-gradient(90deg, #A77327 0%, #EFD67B 49.79%, #A77327 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-golden {
 background: linear-gradient(90deg, #A77327 0%, #EFD67B 49.79%, #A77327 100%);        border: none;
        border-radius: 8px;
        color: #000000;
        font-weight: 600;
        font-size: 16px;
        padding: 10px 14px;
        transition: all 0.3s ease;
    }

    .btn-golden:hover {
  background: linear-gradient(90deg, #c47e13 0%, #dcb426 49.79%, #c0790f 100%);
  color: var(--color-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
    }
.live-competitions::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background-image: radial-gradient(2px 2px at 20% 80%, rgba(201, 162, 39, 0.8), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(232, 197, 71, 0.6), transparent),
    radial-gradient(1px 1px at 60% 85%, rgba(201, 162, 39, 0.9), transparent),
    radial-gradient(2px 2px at 80% 75%, rgba(232, 197, 71, 0.7), transparent),
    radial-gradient(1px 1px at 10% 90%, rgba(201, 162, 39, 0.5), transparent),
    radial-gradient(2px 2px at 90% 80%, rgba(232, 197, 71, 0.8), transparent),
    radial-gradient(1px 1px at 30% 95%, rgba(201, 162, 39, 0.6), transparent),
    radial-gradient(2px 2px at 70% 90%, rgba(232, 197, 71, 0.7), transparent);
  pointer-events: none;
  animation: sparkle 3s ease-in-out infinite;
}

/* Category Filter Pills */
.category-filters {
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.filter-pill {
  background: transparent;
  border: 1px solid #444;
  color: var(--color-text-light);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.filter-pill.active {
  background: var(--color-text-light);
  border-color: var(--color-text-light);
  color: var(--color-text-dark);
}

/* Load More Button */
.btn-load-more {
 background: linear-gradient(90deg, #A77327 0%, #EFD67B 49.79%, #A77327 100%);

  /* border: 2px solid var(--color-gold); */
  color: #000;
  padding: 0.9rem 3rem;
  border-radius: 8px;
  font-size: 16px;
  font-family: Poppins;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-load-more:hover {
 background: linear-gradient(90deg, #c47e13 0%, #dcb426 49.79%, #c0790f 100%);
  color: var(--color-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}
/* ============================================
   INSTANT WIN SECTION
============================================ */
.instant-win-section {
  padding: 60px 0;
box-shadow: 0px 20px 52px -1.75px rgba(0, 0, 0, 0.16);

box-shadow: 0px 6.38px 16.59px -1.31px rgba(0, 0, 0, 0.11);

box-shadow: 0px 2.41px 6.28px -0.88px rgba(0, 0, 0, 0.098);

box-shadow: 0px 0.8px 2.07px -0.44px rgba(0, 0, 0, 0.09);

  position: relative;
}

.instant-win-banner {
  background: #1e1e1e;
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.instant-win-content {
  position: relative;
  z-index: 2;
}

.instant-win-title {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  color: #D9D9D9;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.instant-win-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;font-weight: 500;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.btn-instant-win {
  display: inline-block;
  background: #D9D9D9;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-instant-win:hover {
  background: #333;
  color: var(--color-text-light);
  transform: translateY(-2px);
}

.instant-win-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.instant-win-image img {
  max-width: 100%;
  height: auto;
      transform: rotate(-29deg);
    position: absolute;
    top: -180px;

}

/* Decorative elements */
.instant-win-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.decoration-star {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star-1 {
  top: 15%;
  left: 5%;
}
.star-2 {
  top: 25%;
  right: 45%;
}

.decoration-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.5);
}

.dot-1 {
  top: 20%;
  left: 45%;
}
.dot-2 {
  bottom: 30%;
  left: 10%;
}

/* ============================================
   HOW IT WORKS SECTION
============================================ */
.how-it-works-section {
  padding: 28px 0 80px;
  background: var(--color-bg-dark);
 
}

.how-it-works-card {
  background: #1e1e1e;
   border: 1px solid rgba(93, 93, 93, 1);
  border-radius: 24px;
  padding: 2.4rem 3rem;
}

.how-it-works-title {
  font-family: var(--font-display);
  font-size: 47px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.how-it-works-subtitle {
  color: rgba(255, 255, 255, 1);
  font-size: 20px; font-weight: 500;
  margin-bottom: 2.2rem;
}

.step-item {
  text-align: start;
  padding: 1rem;
}

.step-icon {
  margin-bottom: 1.25rem;
}

.step-icon i {
  font-size: 2.5rem;
  color: var(--color-text-light);
}

.live-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.live-badge i {
  font-size: 1.5rem;
  color: var(--color-text-light);
}

.live-badge span {
  background: transparent;
  border: 2px solid var(--color-text-light);
  color: var(--color-text-light);
  padding: 0.2rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.step-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.45rem;
}

.step-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;font-weight: 400;
  line-height: 1.6;
}

/* ============================================
   WINNERS CAROUSEL SECTION
============================================ */
.winners-section {
  padding: 80px 0;
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.winner-photo-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.winner-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Testimonials */
.testimonials-wrapper {
  position: relative;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.winners-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  font-style: italic;
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.2;
}

/* Custom Navigation Buttons */
.swiper-navigation {
  display: flex;
  gap: 0.75rem;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  width: 48px;
  height: 48px;
  background: var(--color-text-light);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-text-dark);
  font-size: 1.25rem;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: var(--color-gold);
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

.swiper-button-prev-custom:active,
.swiper-button-next-custom:active {
  transform: translateY(0);
}

.swiper-button-prev-custom.swiper-button-disabled,
.swiper-button-next-custom.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Testimonial Card */
.testimonial-card {
  background: #1e1e1e;
  border-radius: 16px;
  padding: 1.2rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(201, 162, 39, 0.15);
}

.quote-icon {
  margin-bottom: .2rem;
}

.quote-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.testimonial-text {
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  /* border: 2px solid var(--color-gold); */
}

.author-info {
  flex-grow: 1;
}

.author-name {
  font-size: 32px;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  margin: 0 0 0.25rem 0;
}

.author-prize {
  font-size: 17px; font-weight: 600;
  color: rgba(214, 214, 214, 1);
  margin: 0;
}

/* Swiper Custom Styles */
.testimonials-swiper {
  overflow: visible;
}

.testimonials-swiper .swiper-slide {
  height: auto;
}

/* ============================================
   HOW IT WORKS SECTION
============================================ */
.how-it-works-section {
  padding: 40px 0 80px;
  background: var(--color-bg-dark);
}

.how-it-works-card {
  background: #1e1e1e;
  border-radius: 20px;
  padding: 3.5rem;
}

.how-it-works-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.how-it-works-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.step-item {
  text-align: center;
  padding: 1rem;
}

.step-icon {
  margin-bottom: 1.25rem;
}

.step-icon i {
  font-size: 2.5rem;
  color: var(--color-text-light);
}

.live-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.live-badge i {
  font-size: 1.5rem;
  color: var(--color-text-light);
}

.live-badge span {
  background: transparent;
  border: 2px solid var(--color-text-light);
  color: var(--color-text-light);
  padding: 0.2rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.step-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.step-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   TRUST SECTION
============================================ */
.trust-section {
  padding: 80px 0;
 background: linear-gradient(90deg, #A77327 0%, #EFD67B 49.79%, #A77327 100%);

  position: relative;
  overflow: hidden;
}

.trust-content {
  text-align: center;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  max-width: 600px;
  text-align: center;
}

.trust-subtitle {
  color: rgba(0, 0, 0, 0.75);
  font-size: 20px; font-weight: 500;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.trust-card {
  background: white;
  border-radius: 16px;
  padding: 0.8rem 0.7rem;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.trust-icon {
  margin-bottom: 1.5rem;
}

.trust-icon i {
  font-size: 3rem;
  color: var(--color-text-dark);
}

.trust-card-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.trust-card-text {
  color: #666;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   NEWSLETTER SECTION
============================================ */
.newsletter-section {
  padding: 100px 0 120px;
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.newsletter-content {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 600;
background: linear-gradient(90deg, #A77327 0%, #EFD67B 49.79%, #A77327 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.newsletter-subtitle {
  color: var(--color-text-light);
  font-size: 24px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.newsletter-form {
  margin-bottom: 1rem;
}

.newsletter-input-wrapper {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 14px;
  padding: 8px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-icon {
  font-size: 1.5rem;
  color: #999;
  margin-left: 1.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.newsletter-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 1rem 0.5rem;
  font-size: 1rem;
  color: var(--color-text-dark);
  background: transparent;
}

.newsletter-input::placeholder {
  color: #999;
}

.btn-subscribe {
  background: var(--color-text-dark);
  color: var(--color-text-light);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-subscribe:hover {
  background: #333;
  transform: scale(1.02);
}

.privacy-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Sparkle effects */
.newsletter-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.newsletter-sparkles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background-image: radial-gradient(2px 2px at 15% 20%, rgba(201, 162, 39, 0.7), transparent),
    radial-gradient(1px 1px at 85% 15%, rgba(232, 197, 71, 0.6), transparent),
    radial-gradient(2px 2px at 25% 10%, rgba(201, 162, 39, 0.8), transparent),
    radial-gradient(1px 1px at 75% 25%, rgba(232, 197, 71, 0.5), transparent),
    radial-gradient(2px 2px at 45% 5%, rgba(201, 162, 39, 0.6), transparent),
    radial-gradient(1px 1px at 55% 20%, rgba(232, 197, 71, 0.7), transparent);
  animation: sparkle 3s ease-in-out infinite;
}

.newsletter-sparkles::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background-image: radial-gradient(2px 2px at 20% 80%, rgba(201, 162, 39, 0.8), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(232, 197, 71, 0.6), transparent),
    radial-gradient(1px 1px at 60% 85%, rgba(201, 162, 39, 0.9), transparent),
    radial-gradient(2px 2px at 80% 75%, rgba(232, 197, 71, 0.7), transparent),
    radial-gradient(1px 1px at 10% 90%, rgba(201, 162, 39, 0.5), transparent),
    radial-gradient(2px 2px at 90% 80%, rgba(232, 197, 71, 0.8), transparent);
  animation: sparkle 3s ease-in-out infinite alternate;
}

/* ============================================
   FOOTER STYLES
============================================ */
   /* Footer Styles */
.site-footer {
    background-color: #000;
    color: #ffffff;
    padding: 60px 0 30px;
   
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo-img {
    max-width: 140px;
    height: auto;
    filter: brightness(1);
}

/* Footer Headings */
/* .footer-heading {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(209, 209, 209, 1);
    text-decoration: none;
    font-size: 20px;font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
} 

.footer-links a:hover {
    color: #ffffff;
}

/* Footer Divider */
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(128, 128, 128, 1);
    margin: 40px 0 25px;
    opacity: 0.5;
}

/* Footer Copyright */
.footer-copyright {
    color: rgba(255, 255, 255, 1);
    font-size: 17px;font-weight: 500;
    text-align: left;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .site-footer {
        padding: 40px 0 25px;
    }
    .instant-win-image img {
      position: unset; height: 360px;
    }
    .footer-logo {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .footer-heading {
        font-size: 17px;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 30px 0 20px;
    }
    
    .footer-heading {
        margin-top: 20px;
    }
}
/* ============================================
   RESPONSIVE STYLES
============================================ */
@media (max-width: 991.98px) {
  .navbar .container {
    flex-wrap: wrap;
  }

  .navbar-brand {
    order: 1;
  }

  .navbar-toggler {
    order: 2;
    border-color: rgba(201, 162, 39, 0.5);
  }

  .navbar-collapse {
    order: 3;
    width: 100%;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .instant-win-banner {
    padding: 2rem;
  }

  .instant-win-title {
    font-size: 2rem;
  }

  .instant-win-image {
    margin-top: 2rem;
  }

  /* Responsive styles for Winners section */
  .winners-section {
    padding: 60px 0;
  }

  .winners-title {
    font-size: 2.25rem;
  }

  .winner-photo-wrapper {
    width: 100%;
        height: 400px;
    margin: 0 auto;
  }
.winner-photo {
      margin-top: -82px;

}
  .how-it-works-card {
    padding: 2.5rem;
  }

  .how-it-works-title {
    font-size: 2rem;
  }

  .trust-title {
    font-size: 2rem;
  }

  /* Newsletter Responsive */
  .newsletter-section {
    padding: 80px 0 100px;
  }

  .newsletter-title {
    font-size: 2.5rem;
  }

  .newsletter-input-wrapper {
    flex-direction: column;
    padding: 10px;
  }

  .newsletter-icon {
    margin: 0.5rem 0 0.5rem 0;
    display: none;
  }

  .newsletter-input {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0.5rem;
    margin-bottom: 0.5rem;
  }

  .btn-subscribe {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .featured-competitions {
    padding: 40px 0 60px;
  }

  .live-competitions {
    padding: 20px 0 20px;
  }

  .filter-pill {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .btn-load-more {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .competition-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .instant-win-section {
    padding: 20px 0;
  }

  .instant-win-banner {
    padding: 1.5rem;
    text-align: center;
  }

  .instant-win-title {
    font-size: 1.75rem;
  }

  .instant-win-description {
    margin-left: auto;
    margin-right: auto;
  }

  /* Responsive styles for Winners section */
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .winners-title {
    font-size: 2rem;
  }

  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .how-it-works-section {
    padding: 20px 0 60px;
  }

  .how-it-works-card {
    padding: 2rem 1.5rem;
  }

  .how-it-works-title {
    font-size: 1.75rem;
  }

  .trust-section {
    padding: 60px 0;
  }

  .trust-title {
    font-size: 1.75rem;
  }

  .trust-subtitle {
    font-size: 0.95rem;
  }

  .trust-card {
    padding: 2rem 1.5rem;
  }

  /* Newsletter Responsive */
  .newsletter-section {
    padding: 60px 0 80px;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .newsletter-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.75rem;
  }

  .card-title {
    font-size: 1rem;
  }

  /* Responsive styles for Winners section */
  .winners-section {
    padding: 40px 0;
  }

  .winners-title {
    font-size: 1.75rem;
  }

  .testimonials-header {
    margin-bottom: 2rem;
  }

  .trust-title {
    font-size: 1.5rem;
  }

  /* Newsletter Responsive */
  .newsletter-section {
    padding: 40px 0 60px;
  }

  .newsletter-title {
    font-size: 1.75rem;
  }
}

/* ===== TABLE STYLING ===== */
.golden-black-table {
    background-color: #0d0d0d !important;
    color: #c9c9c9 !important;
    border: none !important;
}

.golden-black-table thead th {
    background-color: #1a1a1a !important;
    color: #c9a227 !important;
    border: none !important;
    border-bottom: 1px solid #333 !important;
    font-weight: 500 !important;
    padding: 15px 12px !important;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.golden-black-table thead th .dt-column-title {
    color: #c9a227 !important;
}

.golden-black-table thead th .dt-column-order {
    color: #c9a227 !important;
}

.golden-black-table tbody tr {
    background-color: #0d0d0d !important;
}

.golden-black-table tbody tr:hover {
    background-color: #1a1a1a !important;
}

.golden-black-table tbody td {
    border: none !important;
    border-bottom: 1px solid #222 !important;
    padding: 15px 12px !important;
    color: #c9c9c9 !important;
    vertical-align: middle;
}

/* Override Bootstrap striped */
.golden-black-table.table-striped > tbody > tr:nth-of-type(odd) > *,
.golden-black-table.table-striped > tbody > tr:nth-of-type(even) > * {
    --bs-table-bg-type: transparent !important;
    background-color: transparent !important;
}

/* Override Bootstrap bordered */
.golden-black-table.table-bordered > :not(caption) > * > * {
    border-width: 0 !important;
    border-bottom: 1px solid #222 !important;
}

/* ===== ACTION BUTTONS ===== */
.golden-black-table .btn-primary.edit-category,
.golden-black-table .btn.edit-category {
    background-color: transparent !important;
    border: 1px solid #4ade80 !important;
    color: #4ade80 !important;
}

.golden-black-table .btn-primary.edit-category:hover {
    background-color: #4ade80 !important;
    color: #000 !important;
}

.golden-black-table .btn-danger.delete-category,
.golden-black-table .btn.delete-category {
    background-color: transparent !important;
    border: 1px solid #ef4444 !important;
    color: #ef4444 !important;
}

.golden-black-table .btn-danger.delete-category:hover {
    background-color: #ef4444 !important;
    color: #fff !important;
}
.uname{
  font-size: 14px;
}
.fw-800{font-weight: 800;}
.fw-700{font-weight: 700;}
.fw-600{font-weight: 600;}
.fw-500{font-weight: 500;}
.fw-400{font-weight: 400;}
.fw-400{font-weight: 400;}
.fs-20{font-size: 20px;}
.fs-24{font-size: 24px;}
.fs-36{font-size: 36px;}
.fs-96{font-size: 96px;}
.fs-30{font-size: 30px;}
.fs-28{font-size: 28px;}
.fs-32{font-size: 32px;}
.fs-35{font-size: 35px;}
.fs-64{font-size: 64px;}
.fs-16{font-size: 16px;}
.fs-14{font-size: 14px;}
.fs-12{font-size: 12px;}
.fs-11{font-size: 11px;}
.fs-9{font-size: 9px;}
.fs-18{font-size: 18px;}