/* Enhanced MVP Section Styles */
.mvp-section-enhanced {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.mvp-section-enhanced .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.mvp-section-enhanced .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 21, 56, 0.1);
    color: #8b1538;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.mvp-section-enhanced .section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #8b1538;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.mvp-section-enhanced .section-description {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tournament Filter Enhanced */
.tournament-filter-enhanced {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.tournament-filter-enhanced .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.tournament-filter-enhanced .filter-header h3 {
    font-size: 1.4rem;
    color: #374151;
    margin: 0;
    font-weight: 700;
}

.tournament-filter-enhanced .current-tournament {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #8b1538, #a91d42);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

.tournament-filter-enhanced .current-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 6px;
    background: white;
    padding: 2px;
}

.tournament-filter-enhanced .filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.tournament-filter-enhanced .filter-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 2px solid #e5e7eb;
    padding: 16px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.tournament-filter-enhanced .filter-btn:hover,
.tournament-filter-enhanced .filter-btn.active {
    border-color: #8b1538;
    background: rgba(139, 21, 56, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 21, 56, 0.15);
}

.tournament-filter-enhanced .filter-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    background: white;
    padding: 2px;
    flex-shrink: 0;
}

.tournament-filter-enhanced .filter-info {
    display: flex;
    flex-direction: column;
}

.tournament-filter-enhanced .filter-name {
    font-weight: 700;
    color: #374151;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.tournament-filter-enhanced .filter-type {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: capitalize;
}

/* Featured MVP Enhanced */
.featured-mvp-enhanced {
    margin-bottom: 50px;
}

.featured-card-enhanced {
    background: linear-gradient(135deg, #8b1538 0%, #a91d42 50%, #d4af37 100%);
    border-radius: 24px;
    padding: 40px;
    color: white;
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.3);
    position: relative;
    overflow: hidden;
    border: 3px solid #d4af37;
}

.featured-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.2) 0%, transparent 50%);
    animation: championShine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes championShine {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.champion-badge-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #1f2937;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    animation: championGlow 3s ease-in-out infinite;
}

@keyframes championGlow {
    0%, 100% { 
        box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 12px 36px rgba(212, 175, 55, 0.6);
        transform: scale(1.02);
    }
}

.champion-main {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.champion-avatar-enhanced {
    text-align: center;
    flex-shrink: 0;
}

.champion-photo-enhanced {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d4af37;
    margin-bottom: 12px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    animation: championPulse 2s ease-in-out infinite;
}

@keyframes championPulse {
    0%, 100% { 
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
        border-color: #d4af37;
    }
    50% { 
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
        border-color: #ffd700;
    }
}

.champion-number-enhanced {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #1f2937;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 900;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.champion-details {
    flex: 1;
}

.champion-name-enhanced {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 16px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.champion-team-enhanced {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.team-logo-enhanced {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
    background: white;
    padding: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.champion-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 10px;
}

.champion-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    min-width: 90px;
}

.champion-stats .stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #d4af37;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.champion-stats .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 6px;
}

.champion-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.btn-details,
.btn-certificate {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-details:hover,
.btn-certificate:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Other Players Enhanced */
.other-players-enhanced {
    margin-bottom: 50px;
}

.other-players-enhanced h3 {
    text-align: center;
    font-size: 2.2rem;
    color: #8b1538;
    margin-bottom: 30px;
    font-weight: 800;
}

.players-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.player-card-enhanced {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.player-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b1538, #d4af37);
    border-radius: 16px 16px 0 0;
}

.player-card-enhanced:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 21, 56, 0.15);
    border-color: #8b1538;
}

.rank-enhanced {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #6b7280;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.player-avatar-enhanced {
    margin-bottom: 16px;
    margin-top: 20px;
}

.player-photo-enhanced {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8b1538;
    margin-bottom: 10px;
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.3);
}

.jersey-enhanced {
    background: #d4af37;
    color: #1f2937;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.player-info-enhanced {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.player-name-enhanced {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.team-info-enhanced {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.team-logo-small-enhanced {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 4px;
}

.mvp-info-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.mvp-count-enhanced {
    font-size: 1.6rem;
    font-weight: 900;
    color: #8b1538;
    line-height: 1;
}

.mvp-label-enhanced {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
}

.age-info-enhanced {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 500;
}

.card-actions-enhanced {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
    padding-top: 16px;
}

.btn-details-small,
.btn-certificate-small {
    background: #f3f4f6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.btn-details-small:hover {
    background: #8b1538;
    color: white;
    transform: scale(1.1);
}

.btn-certificate-small:hover {
    background: #d4af37;
    color: #1f2937;
    transform: scale(1.1);
}

/* No MVP Enhanced */
.no-mvp-enhanced {
    text-align: center;
    padding: 80px 40px;
    background: #f9fafb;
    border-radius: 20px;
    margin-bottom: 50px;
}

.no-mvp-enhanced .no-mvp-icon {
    font-size: 4rem;
    color: #9ca3af;
    margin-bottom: 24px;
}

.no-mvp-enhanced h3 {
    font-size: 1.8rem;
    color: #374151;
    margin-bottom: 16px;
    font-weight: 700;
}

.no-mvp-enhanced p {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Statistics */
.mvp-stats-enhanced {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-card-enhanced {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.stat-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(139, 21, 56, 0.12);
    border-color: #8b1538;
}

.stat-card-enhanced .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b1538, #a91d42);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.25);
}

.stat-card-enhanced .stat-content {
    display: flex;
    flex-direction: column;
}

.stat-card-enhanced .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #8b1538;
    line-height: 1;
}

.stat-card-enhanced .stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .champion-name-enhanced {
        font-size: 2.4rem;
    }
    
    .champion-photo-enhanced {
        width: 90px;
        height: 90px;
    }
    
    .players-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .champion-main {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .champion-stats {
        justify-content: center;
    }
    
    .tournament-filter-enhanced .filter-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .players-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mvp-section-enhanced {
        padding: 40px 0;
    }
    
    .mvp-section-enhanced .section-title {
        font-size: 2.2rem;
    }
    
    .featured-card-enhanced {
        padding: 30px;
    }
    
    .champion-name-enhanced {
        font-size: 2rem;
    }
    
    .champion-photo-enhanced {
        width: 80px;
        height: 80px;
    }
    
    .players-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .champion-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .stats-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .tournament-filter-enhanced,
    .featured-card-enhanced,
    .mvp-stats-enhanced {
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
    }
    
    .champion-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .tournament-filter-enhanced .filter-options {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .stat-card-enhanced {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

/* Updated CSS to fix card organization and #1 player styling */

/* Override the #1 player card styling */
.featured-card-simple {
    background: #8b1538 !important; /* Burgundy background */
    border-radius: 20px;
    padding: 40px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.4);
    border: 3px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.featured-card-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.featured-card-simple * {
    position: relative;
    z-index: 2;
}

/* #1 Player name with gold shining effect */
.champion-name-simple {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #d4af37 !important; /* Gold color */
    text-shadow: 
        0 0 10px #d4af37,
        0 0 20px #d4af37,
        0 0 30px #d4af37,
        2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: goldShine 3s ease-in-out infinite;
}

@keyframes goldShine {
    0%, 100% {
        text-shadow: 
            0 0 10px #d4af37,
            0 0 20px #d4af37,
            0 0 30px #d4af37,
            2px 2px 4px rgba(0, 0, 0, 0.5);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 15px #ffd700,
            0 0 30px #ffd700,
            0 0 45px #ffd700,
            2px 2px 6px rgba(0, 0, 0, 0.7);
        transform: scale(1.02);
    }
}

/* Better organization for champion info */
.champion-info-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.champion-avatar-simple {
    text-align: center;
    flex: 0 0 auto;
}

.champion-photo-simple {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d4af37;
    margin-bottom: 15px;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.6),
        0 8px 30px rgba(0, 0, 0, 0.3);
    animation: photoGlow 2s ease-in-out infinite;
}

@keyframes photoGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(212, 175, 55, 0.6),
            0 8px 30px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            0 12px 40px rgba(0, 0, 0, 0.4);
        transform: scale(1.05);
    }
}

.champion-number-simple {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #1f2937;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 900;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    font-size: 1.1rem;
}

/* Better organized player details */
.player-details-simple {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.champion-team-simple {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    white-space: nowrap;  /* Prevent team name wrapping */
    overflow: hidden;     /* Hide overflow if needed */
    text-overflow: ellipsis;  /* Ellipsis for very long names */
}

.team-logo-simple {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mvp-count-simple {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.mvp-number-simple {
    font-size: 3.5rem;
    font-weight: 900;
    color: #d4af37;
    line-height: 1;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.mvp-text-simple {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
}

/* Better organization for other player cards */
.player-card-simple {
    background: white;
    border-radius: 15px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 320px;
}

.player-card-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b1538, #d4af37);
    border-radius: 15px 15px 0 0;
}

.player-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 21, 56, 0.15);
}

.rank-simple {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

/* Special styling for 2nd and 3rd place */
.player-card-simple:nth-child(1) .rank-simple {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
}

.player-card-simple:nth-child(2) .rank-simple {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
}

.player-avatar-small-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.player-photo-small-simple {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8b1538;
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.3);
    transition: transform 0.3s ease;
}

.player-photo-small-simple:hover {
    transform: scale(1.1);
}

.jersey-simple {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #1f2937;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    min-width: 40px;
    text-align: center;
}

.player-info-simple {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.player-info-simple h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.team-info-simple {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 0.9rem;
    color: #6b7280;
    background: #f9fafb;
    padding: 8px 12px;
    border-radius: 12px;
    border-left: 3px solid #8b1538;
}

.team-logo-small-simple {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.mvp-count-small-simple {
    font-size: 1rem;
    font-weight: 700;
    color: #8b1538;
    background: rgba(139, 21, 56, 0.1);
    padding: 8px 16px;
    border-radius: 15px;
    display: inline-block;
}

.card-actions-simple {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.btn-small-simple {
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-small-simple:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-small-simple:first-child:hover {
    background: #8b1538;
    color: white;
}

.btn-small-simple:last-child:hover {
    background: #d4af37;
    color: #1f2937;
}

/* Champion Actions styling */
.champion-actions-simple {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-action-simple {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-action-simple:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-action-simple:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Tournament selector improvements */
.tournament-select {
    text-align: center;
    margin-bottom: 40px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.tournament-select label {
    display: block;
    font-weight: 700;
    color: #8b1538;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.tournament-select select {
    padding: 14px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    color: #374151;
    cursor: pointer;
    min-width: 320px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tournament-select select:focus {
    outline: none;
    border-color: #8b1538;
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

/* Statistics improvements */
.mvp-stats-simple {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.stats-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item-simple {
    background: #f9fafb;
    padding: 30px 20px;
    border-radius: 16px;
    border-left: 4px solid #8b1538;
    transition: transform 0.3s ease;
}

.stat-item-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.1);
}

.stat-number-simple {
    font-size: 3rem;
    font-weight: 900;
    color: #8b1538;
    line-height: 1;
    display: block;
}

.stat-label-simple {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .champion-info-simple {
        flex-direction: column;
        gap: 20px;
    }
    
    .champion-name-simple {
        font-size: 2rem;
    }
    
    .champion-photo-simple {
        width: 100px;
        height: 100px;
    }
    
    .mvp-number-simple {
        font-size: 2.5rem;
    }
    
    .tournament-select select {
        min-width: 280px;
    }
    
    .champion-actions-simple {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-action-simple {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stats-grid-simple {
        grid-template-columns: 1fr;
    }
    
    .player-card-simple {
        padding: 20px;
    }
}

/* Tournament Filter Buttons */
.tournament-filter-buttons {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.tournament-filter-buttons .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.tournament-filter-buttons .filter-header h3 {
    font-size: 1.4rem;
    color: #8b1538;
    margin: 0;
    font-weight: 700;
}

.current-tournament-info {
    background: rgba(139, 21, 56, 0.1);
    color: #8b1538;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tournament-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.tournament-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 2px solid #e5e7eb;
    padding: 16px 20px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.tournament-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(139, 21, 56, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tournament-btn:hover {
    border-color: #8b1538;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.15);
}

.tournament-btn:hover::before {
    opacity: 1;
}

.tournament-btn.active {
    border-color: #8b1538;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 21, 56, 0.2);
}

.tournament-btn.active::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
}

/* Tournament Button Icons and Logos */
.tournament-btn-icon,
.tournament-btn-logo {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tournament-btn-icon {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
    font-size: 1.4rem;
}

.tournament-btn-logo {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.tournament-btn:hover .tournament-btn-logo {
    border-color: #8b1538;
    transform: scale(1.05);
}

.tournament-btn.active .tournament-btn-logo {
    border-color: #8b1538;
    background: white;
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.2);
}

.conference-logo-small {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.tournament-btn:hover .conference-logo-small {
    transform: scale(1.1);
}

/* Logo Fallback */
.logo-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b1538, #a91d42);
    color: white;
    font-weight: 900;
    font-size: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tournament Button Info */
.tournament-btn-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 2;
}

.tournament-btn-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.tournament-btn:hover .tournament-btn-name,
.tournament-btn.active .tournament-btn-name {
    color: #8b1538;
}

.tournament-btn-desc {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.tournament-btn:hover .tournament-btn-desc {
    color: #4b5563;
}

.tournament-btn.active .tournament-btn-desc {
    color: #8b1538;
    font-weight: 600;
}

/* Active State Indicator */
.tournament-btn.active::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 3px white, 0 0 0 5px #10b981;
    animation: activeIndicator 2s ease-in-out infinite;
}

@keyframes activeIndicator {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Special styling for "All Tournaments" button */
.tournament-btn:first-child {
    border: 2px dashed #d1d5db;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.tournament-btn:first-child:hover {
    border-color: #8b1538;
    border-style: solid;
    background: linear-gradient(135deg, white 0%, #f9fafb 100%);
}

.tournament-btn:first-child.active {
    border-style: solid;
    background: linear-gradient(135deg, #8b1538 0%, #a91d42 100%);
    color: white;
}

.tournament-btn:first-child.active .tournament-btn-name,
.tournament-btn:first-child.active .tournament-btn-desc {
    color: white;
}

.tournament-btn:first-child.active .tournament-btn-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tournament-buttons-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 992px) {
    .tournament-filter-buttons .filter-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .tournament-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .tournament-btn {
        padding: 14px 16px;
        gap: 12px;
    }
    
    .tournament-btn-icon,
    .tournament-btn-logo {
        width: 40px;
        height: 40px;
    }
    
    .tournament-btn-name {
        font-size: 0.9rem;
    }
    
    .tournament-btn-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .tournament-filter-buttons {
        padding: 20px;
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
    }
    
    .tournament-buttons-grid {
        grid-template-columns: 1fr;
    }
    
    .tournament-btn {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .tournament-btn-info {
        gap: 2px;
    }
    
    .tournament-btn-name {
        font-size: 0.85rem;
        line-height: 1.1;
    }
    
    .tournament-btn-desc {
        font-size: 0.75rem;
    }
}