/* Champions Section Styles */
.champion-item {
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.champion-item:hover {
    transform: translateY(-5px);
}

.champion-item .box-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Avatar Container - Fixed Height for Consistency */
.avatar-container {
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

/* Team Champions - Multiple Avatars */
.team-avatars-container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.team-member-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background-color: #f8f9fa;
    flex-shrink: 0;
}

.team-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-indicator {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 9px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

/* Solo Champions - Single Avatar */
.solo-champion-avatar {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
    margin: 0 auto;
}

.solo-champion-avatar:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.solo-champion-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Champion Details */
.champion-details {
    padding: 0 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.champion-details .entry-title {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    min-height: 20px;
}

.champion-details .entry-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.champion-details .entry-title a:hover {
    color: #007bff;
    text-decoration: none;
}

/* Tournament Information */
.tournament-info {
    font-size: 12px;
    margin-top: auto;
}

.tournament-name {
    color: #666;
    margin-bottom: 6px;
    font-weight: 500;
    display: block;
    line-height: 1.3;
    min-height: 16px;
}

.tournament-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    min-height: 20px;
}

.tournament-type {
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tournament-type.solo {
    background-color: #28a745;
    color: white;
}

.tournament-type.team {
    background-color: #007bff;
    color: white;
}

.tournament-date {
    color: #999;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
}

/* No Champions Message */
.no-champions-message {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-style: italic;
}

/* Equal Height Columns */
.champions-row {
    display: flex;
    flex-wrap: wrap;
}

.champion-col {
    display: flex;
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .team-member-avatar {
        width: 32px;
        height: 32px;
    }
    
    .more-indicator {
        width: 32px;
        height: 32px;
        font-size: 8px;
    }
    
    .solo-champion-avatar {
        width: 70px;
        height: 70px;
    }
    
    .tournament-meta {
        flex-direction: column;
        gap: 3px;
    }
    
    .avatar-container {
        height: 100px;
    }
}

@media (max-width: 576px) {
    .team-avatars-container {
        gap: 2px;
    }
    
    .team-member-avatar {
        width: 28px;
        height: 28px;
    }
    
    .more-indicator {
        width: 28px;
        height: 28px;
        font-size: 7px;
    }
}