  .hero-bg {
    background-image: url("./../images/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  /* Carousel container */
  .carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  
  .carousel-slide {
    min-width: 100%;
    height: 500px;
    position: relative;
    flex-shrink: 0;
  }
  
  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Navigation buttons */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    backdrop-filter: blur(4px);
  }
  
  .carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
  }
  
  .carousel-btn.prev {
    left: 16px;
  }
  
  .carousel-btn.next {
    right: 16px;
  }
  
  /* Dots indicator */
  .dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }
  
  .dot.active {
    background: var(--primary, #6366f1);
    width: 32px;
    border-radius: 5px;
  }
  
  .dot:hover {
    transform: scale(1.2);
  }
  
  /* Hide scrollbar */
  .carousel-track::-webkit-scrollbar {
    display: none;
  }
  
  /* Caption styles */
  .slide-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
  }
  
  .slide-caption h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .slide-caption p {
    color: rgba(255,255,255,0.8);
  }
  
  /* Feature icon styles */
  .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .feature-svg {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    display: block;
  }
  
  .rule-icon {
    font-size: 1.5rem;
    width: 2.5rem;
    text-align: center;
  }
  
  /* Dark card styles - only cards */
  .dark-card {
    background: rgba(15, 15, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .dark-card:hover {
    background: rgba(25, 25, 40, 0.98);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6);
  }
  
  .dark-rule-card {
    background: rgba(15, 15, 25, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .dark-rule-card:hover {
    background: rgba(25, 25, 40, 0.95);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  }

  .rule-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Gold glow effect for feature cards */
.dark-card {
  background: rgba(15, 15, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.dark-card:hover {
  background: rgba(25, 25, 40, 0.98);
  border-color: rgba(234, 179, 8, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(234, 179, 8, 0.15);
}

/* Gold icon class */
.feature-svg {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 8px rgba(234, 179, 8, 0.2));
  transition: all 0.3s ease;
}

.dark-card:hover .feature-svg {
  filter: drop-shadow(0 0 20px rgba(234, 179, 8, 0.4));
  transform: scale(1.05);
}