/* New Ranking Hero Styles */
.ranking-hero-redesign {
    background: #000;
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
/* hero-bg-accent is now in battle.css */

/* Editorial Rank Styles */
.rank-number-editorial {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.8;
    /* color: transparent; */
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.7);
    font-style: italic;
    letter-spacing: -0.05em;
}

.rank-number-editorial.secondary {
    font-size: 3.5rem;
}

.ranking-item-hero {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ranking-item-hero:hover {
    border-color: rgba(255, 0, 128, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.vs-badge-hero {
    background: linear-gradient(135deg, #FF0080 0%, #7928CA 100%);
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.4);
    transform: rotate(-10deg);
}

.vs-badge-secondary {
    background: white;
    color: black;
    font-size: 1.125rem;
    font-weight: 900;
    font-style: italic;
    padding: 0.4rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transform: rotate(-5deg);
}

.ranking-item-secondary {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ranking-item-secondary:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.ranking-item-list:hover {
    transform: translateX(10px);
}


@media (max-width: 1024px) {
    .rank-number-editorial {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .rank-number-editorial {
        font-size: 3.5rem;
    }
    .rank-number-editorial.secondary {
        font-size: 2.5rem;
    }
    .vs-badge-hero {
        font-size: 1.5rem;
        padding: 0.5rem 1.25rem;
    }
    .ranking-item-hero .p-8 {
        padding: 1.5rem !important;
    }
    .ranking-item-hero h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    .ranking-item-secondary .p-8 {
        padding: 1.5rem !important;
    }
    .ranking-item-secondary h3 {
        font-size: 1.25rem !important;
    }
    .ranking-item-list {
        padding: 1rem 1.25rem !important;
    }
}

