/* contestants.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prosto+One&family=Protest+Strike&display=swap');

/* MAIN CONTESTANTS SECTION */
section.main-contestants {
    background-image: url('/static/images/tr-blue-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 3vw 5vw;
    min-height: 100vh;
}

/* HEADER SECTION */
.header-section {
    margin-bottom: 3vw;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 2vw;
}

.logo-image {
    width: 500px;
    height: auto;
    margin-right: 20px;
    filter: drop-shadow(0 1px 6px rgba(241,0,247,0.85));
}

.logo-text {
    font-family: 'Prosto One', cursive;
    color: transparent;
    filter: drop-shadow(0 0 8px #FF00F6);
    font-size: clamp(48px, 7vw, 150px);
    margin: 0;
    line-height: 0.85;
    -webkit-text-stroke: 0.1px #FF00F6;
}

.month-selector {
    margin-top: 1vw;
}

.month-dropdown {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #00E5FF;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    margin-bottom: 1vw;
}

.arena-rankings {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    color: white;
    margin: 0;
}

/* TOP CONTESTANTS */
.top-contestants {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(15px, 2vw, 30px);
    margin-bottom: 3vw;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 clamp(10px, 2vw, 30px);
    box-sizing: border-box;
    justify-items: center;
}

@media (max-width: 768px) {
    .top-contestants {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .top-contestants {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .top-contestants {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 15px;
    }
    
    .ranking-list {
        padding: 10px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .top-contestants > .contestant-card {
        min-height: 450px;
    }
    
    .top-contestants > .contestant-card .contestant-info {
        min-height: 200px;
        padding: 0.8rem 1rem 1.2rem 1rem;
    }
    
    .contestant-info h3 {
        font-size: clamp(16px, 4vw, 20px);
    }
    
    .contestant-info .votes {
        font-size: clamp(12px, 3vw, 14px);
    }
    
    .contestant-info .vote-button {
        font-size: clamp(11px, 2.5vw, 13px);
        padding: 6px 12px;
        max-width: 160px;
    }
    
    .rank-item {
        padding: 10px;
        gap: 0.5rem;
    }
    
    .contestant-image-small {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
    }
    
    .rank-number {
        font-size: clamp(16px, 4vw, 20px);
        min-width: 25px;
    }
    
    .rank-details h3 {
        font-size: clamp(16px, 4vw, 20px);
    }
    
    .ranking-list .vote-button {
        font-size: clamp(10px, 2.5vw, 12px);
        padding: 5px 10px;
    }
}

.contestant-card {
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(40, 20, 60, 0.8) 100%);
    width: 100%;
    height: 100%;
    min-height: 450px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border: 4px solid;
}

/* Recruit Arena - Blue Theme */
.contestant-card.arena-recruit {
    border-color: #00E5FF;
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9) 0%, rgba(0, 100, 150, 0.7) 100%);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.4), 0 0 40px rgba(0, 229, 255, 0.2);
}

.contestant-card.arena-recruit:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.6), 0 0 60px rgba(0, 229, 255, 0.4);
    border-color: #00FFFF;
}

.contestant-card.arena-recruit .arena-badge {
    background: linear-gradient(135deg, #00E5FF 0%, #0099CC 100%);
    color: #0b0b0b;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
}

/* Veteran Arena - Black/Dark Theme */
.contestant-card.arena-veteran {
    border-color: #666666;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(40, 40, 40, 0.9) 100%);
    box-shadow: 0 8px 30px rgba(100, 100, 100, 0.4), 0 0 40px rgba(150, 150, 150, 0.2);
}

.contestant-card.arena-veteran:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(150, 150, 150, 0.6), 0 0 60px rgba(200, 200, 200, 0.3);
    border-color: #999999;
}

.contestant-card.arena-veteran .arena-badge {
    background: linear-gradient(135deg, #666666 0%, #333333 100%);
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(150, 150, 150, 0.6);
}

/* Champion Arena - Red Theme */
.contestant-card.arena-champion {
    border-color: #FF4444;
    background: linear-gradient(135deg, rgba(60, 10, 10, 0.9) 0%, rgba(150, 20, 20, 0.7) 100%);
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.4), 0 0 40px rgba(255, 100, 100, 0.2);
}

.contestant-card.arena-champion:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.6), 0 0 60px rgba(255, 100, 100, 0.4);
    border-color: #FF6666;
}

.contestant-card.arena-champion .arena-badge {
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.6);
}

/* Elite Arena - Gold Theme */
.contestant-card.arena-elite {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(60, 50, 10, 0.9) 0%, rgba(150, 120, 20, 0.7) 100%);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 200, 0, 0.3);
}

.contestant-card.arena-elite:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7), 0 0 60px rgba(255, 200, 0, 0.5);
    border-color: #FFFF00;
}

.contestant-card.arena-elite .arena-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0b0b0b;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

.contestant-card:hover {
    transform: translateY(-15px) scale(1.02);
}

/* Ensure all cards have equal height */
.top-contestants {
    align-items: stretch;
}

.top-contestants > .contestant-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 550px;
    overflow: visible;
}

.top-contestants > .contestant-card .contestant-image {
    flex-shrink: 0;
    height: 50% !important;
    max-height: 280px;
}

.top-contestants > .contestant-card .contestant-info {
    flex-shrink: 0;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    padding-bottom: 1.8rem;
}

.arena-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Protest Strike', sans-serif;
    letter-spacing: 1px;
    z-index: 10;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contestant-image {
    width: 100%;
    height: 60%;
    min-height: 250px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.contestant-image img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    transition: all 0.3s ease;
    display: block;
    border: none;
}

/* Arena-specific profile photo container effects */
.arena-recruit .contestant-image {
    box-shadow: inset 0 0 30px rgba(0, 229, 255, 0.3);
}

.arena-veteran .contestant-image {
    box-shadow: inset 0 0 30px rgba(150, 150, 150, 0.3);
}

.arena-champion .contestant-image {
    box-shadow: inset 0 0 30px rgba(255, 68, 68, 0.3);
}

.arena-elite .contestant-image {
    box-shadow: inset 0 0 35px rgba(255, 215, 0, 0.4);
}

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

.arena-recruit:hover .contestant-image {
    box-shadow: inset 0 0 40px rgba(0, 229, 255, 0.5);
}

.arena-veteran:hover .contestant-image {
    box-shadow: inset 0 0 40px rgba(200, 200, 200, 0.5);
}

.arena-champion:hover .contestant-image {
    box-shadow: inset 0 0 40px rgba(255, 100, 100, 0.5);
}

.arena-elite:hover .contestant-image {
    box-shadow: inset 0 0 45px rgba(255, 215, 0, 0.6);
}

.contestant-image-small {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #FFA200;
    box-shadow: 0 0 10px rgba(255, 162, 0, 0.4);
    flex-shrink: 0;
}

.contestant-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
    aspect-ratio: 1 / 1;
    transition: all 0.3s ease;
}

.rank-item:hover .contestant-image-small img {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 162, 0, 0.6);
}

.contestant-image .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 162, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0b0b0b;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
}

.contestant-image .play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 162, 0, 1);
}

.contestant-info {
    min-height: 220px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(20, 10, 30, 0.8) 100%);
    padding: 1.2rem 1.5rem 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    gap: 0.5rem;
    overflow: visible;
    position: relative;
    justify-content: flex-start;
}

.contestant-info .submission-title {
    color: #FFA200;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.3;
    min-height: 2.6em;
    max-height: 2.6em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    flex-shrink: 0;
}

.champion-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FFA200, #FF5E00);
    color: black;
    padding: 5px 15px;
    border-radius: 15px;
    font-family: 'Protest Strike', sans-serif;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 162, 0, 0.8);
}

.contestant-info h3 {
    font-family: 'Protest Strike', sans-serif;
    font-size: clamp(18px, 2.2vw, 24px);
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    min-height: 1.5em;
    width: 100%;
    flex-shrink: 0;
}

.contestant-info .votes {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(13px, 1.1vw, 16px);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    min-height: 1.5em;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Arena-specific vote count colors */
.arena-recruit .contestant-info .votes {
    color: #00E5FF;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.arena-veteran .contestant-info .votes {
    color: #CCCCCC;
    text-shadow: 0 0 10px rgba(200, 200, 200, 0.5);
}

.arena-champion .contestant-info .votes {
    color: #FF6666;
    text-shadow: 0 0 10px rgba(255, 100, 100, 0.5);
}

.arena-elite .contestant-info .votes {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Arena-specific vote button styling */
.arena-recruit .vote-button {
    background: linear-gradient(135deg, #00E5FF 0%, #0099CC 100%);
    color: #0b0b0b;
    border: 2px solid #00E5FF;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.arena-recruit .vote-button:hover {
    background: linear-gradient(135deg, #00FFFF 0%, #00E5FF 100%);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.6);
}

.arena-veteran .vote-button {
    background: linear-gradient(135deg, #666666 0%, #333333 100%);
    color: #FFFFFF;
    border: 2px solid #666666;
    box-shadow: 0 4px 15px rgba(100, 100, 100, 0.4);
}

.arena-veteran .vote-button:hover {
    background: linear-gradient(135deg, #888888 0%, #555555 100%);
    box-shadow: 0 6px 20px rgba(150, 150, 150, 0.6);
}

.arena-champion .vote-button {
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
    color: #FFFFFF;
    border: 2px solid #FF4444;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

.arena-champion .vote-button:hover {
    background: linear-gradient(135deg, #FF6666 0%, #FF2222 100%);
    box-shadow: 0 6px 20px rgba(255, 100, 100, 0.6);
}

.arena-elite .vote-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0b0b0b;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.arena-elite .vote-button:hover {
    background: linear-gradient(135deg, #FFFF00 0%, #FFD700 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.7);
}

/* RANKING LIST */
.ranking-list-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 3vw;
    padding: 0 clamp(10px, 2vw, 30px);
    box-sizing: border-box;
}

.ranking-list {
    width: 100%;
    background-color: rgba(20, 10, 30, 0.9);
    border-radius: 8px;
    padding: clamp(15px, 1.5vw, 25px) clamp(10px, 2vw, 30px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

.rank-item {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background-color: transparent;
    padding: clamp(10px, 1vw, 20px) clamp(15px, 1.5vw, 25px);
    margin-bottom: clamp(5px, 0.5vw, 10px);
    transition: background-color 0.2s ease;
    gap: clamp(0.5rem, 1vw, 1rem);
    flex-wrap: nowrap;
}

.rank-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.rank-number {
    font-family: 'Protest Strike', sans-serif;
    font-size: clamp(20px, 2.5vw, 32px);
    color: white;
    margin-right: clamp(10px, 1vw, 20px);
    min-width: clamp(30px, 3vw, 40px);
    flex-shrink: 0;
    text-align: center;
}

.contestant-image-small {
    width: clamp(45px, 5vw, 80px);
    height: clamp(45px, 5vw, 80px);
    min-width: clamp(45px, 5vw, 80px);
    min-height: clamp(45px, 5vw, 80px);
    border-radius: 8px;
    overflow: hidden;
    margin-right: clamp(10px, 1vw, 20px);
    border: 2px solid #FF00F6;
    box-shadow: 0 0 10px rgba(255, 0, 246, 0.5);
    flex-shrink: 0;
}

.contestant-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-details {
    flex-grow: 1;
    text-align: left;
    min-width: 0;
    flex-shrink: 1;
}

.rank-details h3 {
    font-family: 'Protest Strike', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    color: white;
    margin: 0 0 0.5vw 0;
}

.rank-details .votes {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 1.2vw, 18px);
    color: white;
    margin: 0;
}

.contestant-info .vote-button {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(13px, 1.1vw, 16px);
    color: white;
    background: linear-gradient(90deg, #FF00F6, #B200B2);
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 0, 246, 0.7);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: auto;
    width: auto;
    max-width: 180px;
    min-width: 120px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
}

.ranking-list .vote-button {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(11px, 1vw, 14px);
    color: white;
    background: linear-gradient(90deg, #FF00F6, #B200B2);
    border: none;
    border-radius: 8px;
    padding: clamp(5px, 0.5vw, 8px) clamp(10px, 1vw, 14px);
    cursor: pointer;
    box-shadow: 0 0 6px rgba(255, 0, 246, 0.7);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
    margin-left: auto;
}

.vote-button {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 1.2vw, 18px);
    color: white;
    background: linear-gradient(90deg, #FF00F6, #B200B2);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 0, 246, 0.7);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.vote-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 0, 246, 0.9);
}

/* CTA SECTION */
.cta-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    color: white;
    margin-bottom: 2vw;
    line-height: 1.5;
    font-weight: 600;
}

.enter-arena-button {
    font-family: 'Protest Strike', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    color: white;
    padding: 14px 30px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #FF00F6, #B200B2);
    box-shadow: 0 0 4px #FF00F6;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    margin-bottom: 2vw;
}

.enter-arena-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 8px #FF00F6, 0 0 12px #FF00F6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .top-contestants {
        padding: 0 clamp(10px, 1.5vw, 20px);
    }
    
    .ranking-list {
        padding: clamp(12px, 1.2vw, 20px) clamp(10px, 1.5vw, 20px);
    }
    
    .contestant-image-small {
        width: clamp(50px, 4.5vw, 70px);
        height: clamp(50px, 4.5vw, 70px);
        min-width: clamp(50px, 4.5vw, 70px);
        min-height: clamp(50px, 4.5vw, 70px);
    }
    
    .rank-item {
        padding: clamp(8px, 0.8vw, 15px) clamp(12px, 1.2vw, 20px);
        gap: clamp(0.6rem, 0.8vw, 0.9rem);
    }
    
    .rank-number {
        font-size: clamp(18px, 2.2vw, 28px);
        margin-right: clamp(8px, 0.8vw, 15px);
        min-width: clamp(28px, 2.8vw, 35px);
    }
}

@media (max-width: 768px) {
    .top-contestants {
        padding: 0 clamp(10px, 1vw, 15px);
        gap: clamp(12px, 1.5vw, 20px);
    }
    
    .ranking-list {
        padding: clamp(10px, 1vw, 15px) clamp(10px, 1vw, 15px);
        margin-left: auto;
        margin-right: auto;
    }
    
    .contestant-info {
        min-height: 200px;
        padding: 1rem 1.2rem 1.5rem 1.2rem;
    }
    
    .top-contestants > .contestant-card {
        min-height: 480px;
    }
    
    .top-contestants > .contestant-card .contestant-info {
        min-height: 220px;
    }
    
    .rank-item {
        padding: clamp(8px, 0.6vw, 12px) clamp(10px, 1vw, 15px);
        gap: clamp(0.5rem, 0.6vw, 0.8rem);
        flex-wrap: wrap;
    }
    
    .rank-details {
        flex: 1 1 100%;
        order: 3;
        margin-top: 0.5rem;
    }
    
    .ranking-list .vote-button {
        order: 4;
        margin-top: 0.5rem;
        width: 100%;
        max-width: 150px;
    }
    
    .contestant-image-small {
        width: clamp(45px, 4vw, 60px);
        height: clamp(45px, 4vw, 60px);
        min-width: clamp(45px, 4vw, 60px);
        min-height: clamp(45px, 4vw, 60px);
    }
    
    .rank-number {
        font-size: clamp(16px, 2vw, 24px);
        margin-right: clamp(6px, 0.8vw, 12px);
        min-width: clamp(25px, 2.5vw, 30px);
    }
    
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .month-dropdown {
        font-size: clamp(14px, 2vw, 18px);
        padding: 8px 15px;
    }
    
    .arena-rankings {
        font-size: clamp(16px, 2.5vw, 24px);
    }
}

/* TIER MEMBER HIGHLIGHTING */
.tier-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Protest Strike', sans-serif;
    letter-spacing: 1px;
    z-index: 11;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.tier-badge-small {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: 'Protest Strike', sans-serif;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Recruit Tier - Blue */
.tier-recruit-badge {
    background: linear-gradient(135deg, #00E5FF 0%, #0099CC 100%);
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
}

.rank-item.tier-recruit,
.contestant-card.tier-recruit {
    border-left: 4px solid #00E5FF;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.15) 0%, transparent 100%);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

/* Veteran Tier - Black/Dark Grey */
.tier-veteran-badge {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.rank-item.tier-veteran,
.contestant-card.tier-veteran {
    border-left: 4px solid #333333;
    background: linear-gradient(90deg, rgba(50, 50, 50, 0.2) 0%, transparent 100%);
    box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}

/* Champion Tier - Red */
.tier-champion-badge {
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.6);
}

.rank-item.tier-champion,
.contestant-card.tier-champion {
    border-left: 4px solid #FF4444;
    background: linear-gradient(90deg, rgba(255, 68, 68, 0.15) 0%, transparent 100%);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}

/* Elite Tier - Gold/Orange */
.tier-elite-badge {
    background: linear-gradient(135deg, #FFA200 0%, #FFD700 100%);
    color: #0b0b0b;
    box-shadow: 0 0 20px rgba(255, 162, 0, 0.8);
}

.rank-item.tier-elite,
.contestant-card.tier-elite {
    border-left: 4px solid #FFA200;
    background: linear-gradient(90deg, rgba(255, 162, 0, 0.2) 0%, transparent 100%);
    box-shadow: 0 0 25px rgba(255, 162, 0, 0.4);
}

/* Enhanced hover effects for tier members */
.rank-item.tier-member:hover {
    transform: translateX(5px);
    border-left-width: 6px;
}

.contestant-card.tier-member:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3), 0 0 60px rgba(255, 255, 255, 0.2);
}