.hero-carousel-wrapper {
    width: 100%;
    margin: 0 auto 3rem;
    position: relative;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #000;
    user-select: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-out;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(20, 10, 10, 0.35) 45%,
        rgba(0, 0, 0, 0.6) 75%,
        rgba(0, 0, 0, 0.75) 100%
    );
    /* remove multiply, it was over-darkening */
    mix-blend-mode: normal;
}

.hero-carousel-inner {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-cards-container {
    position: relative;
    width: 202px;
    height: 289px;
    pointer-events: auto;
}

.hero-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 202px;
    height: 289px;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);

}

.hero-card-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hero-card:hover .hero-card-img {
    transform: scale(1.05);
}

.hero-rank {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: white;
    z-index: 10;
    border-radius: 5px 0 5px 0;
    background: rgba(107, 114, 128, 0.9);
}

.hero-rank.rank-1 { background: rgba(239, 68, 68, 0.9); }
.hero-rank.rank-2 { background: rgba(249, 115, 22, 0.9); }
.hero-rank.rank-3 { background: rgba(234, 179, 8, 0.9); }

.hero-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-card.active .hero-card-overlay {
    opacity: 1;
}

.hero-card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.65) 50%,
        transparent 80%
    );
}


.hero-card-info {
    position: relative;
    z-index: 10;
    padding: 12px 16px;
}

.hero-card-title {
    font-size: 14px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-card-rating {
    display: inline-flex;
    align-items: center;
    background: rgba(63 63 63 / 70%);
    border-radius: 24px;
    padding: 2px 6px;
    gap: 4px;
    margin-bottom: 4px;
}

.hero-card-rating svg {
    width: 16px;
    height: 16px;
    fill: #F4B83C;
    color: #F4B83C;
}

.hero-card-rating span {
    color: white;
    font-weight: 510;
    font-size: 12px;
    line-height: 1.75em;
}	

.hero-live-badge {
	display: none !Important;
    position: absolute;
    top: -220px;
    left: 8px;
    background: #dc2626;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 400px;
    }

    .hero-cards-container {
        width: 180px;
        height: 260px;
    }

    .hero-card {
        width: 180px;
        height: 260px;
    }

    .hero-rank {
        width: 24px;
        height: 24px;
        font-size: 16px;
    }

    .hero-card-title {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 400px;
    }

    .hero-cards-container {
        width: 180px;
        height: 260px;
    }

    .hero-card {
        width: 180px;
        height: 260px;
    }
}

/* Hide titles on mobile for cleaner look */
@media (max-width: 767px) {
    .hero-card-title {
        display: none;
    }
}
