/* =========================
   FEATURED SECTION (CURVED WHITE BLOCK)
========================= */
.featured-games {
    background: #fff;
    
    border-radius: 80px 80px 0 0;
    overflow: hidden;
    position: relative;
     margin-top: -80px; 
      z-index: 2;
}
.featured-games-hidden{
    visibility:hidden;
}
/* =========================
   MARQUEE WRAPPER
========================= */
.game-marquee {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 26px 0; /* ⬆ bigger height */
    overflow: hidden;
}

/* TRACK */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 40px; /* ⬆ more breathing space */
    width: max-content;
    animation: marqueeMove 34s linear infinite;
}

/* ITEM (BIGGER + STRONGER) */
.marquee-item{
    display: flex;
    align-items: center;
    gap: 18px; /* more breathing space */

    padding: 16px 40px;
    border-radius: 999px;

    font-family: "Anton", sans-serif;

    background: transparent;
    color: #070B14;

    font-weight: 400; /* IMPORTANT: Anton ignores heavy weights anyway */

    white-space: nowrap;

    font-size: 52px; /* ↓ slightly reduced (key fix) */
    letter-spacing: 3px; /* ↑ increases readability massively */

    line-height: 1;

    transition: color .35s ease, transform .35s ease;
}
.marquee-item span{
    display: inline-block;
    transform: translateY(2px); /* fixes optical baseline mismatch */
}
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}
.marquee-wrapper:hover .marquee-item {
    color: #F3901B;
} 
/* hover polish */
.marquee-item:hover{
    transform: translateY(-3px);

   
}
/* ICON ROTATION */
.marquee-icon{
    display: inline-block;

    animation: spin 8s linear infinite;

    font-size: 18px;

    color: rgba(255,255,255,0.95);
}
.circle-badge{
    position: relative;

    width: 90px;
    height: 90px;
    min-width: 90px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-svg{
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: visible;

    animation: spin 12s linear infinite;
}

.circle-svg text{
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    fill: #070B14;
    text-transform: uppercase;
}

.center-icon{
    position: relative;
    z-index: 2;

    font-size: 20px;
    color: #070B14;
}
/* MARQUEE ANIMATION */
@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ICON SPIN */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}