/* =========================================
   HALL OF FAME / WINNERS STYLES - UPDATE
   ========================================= */

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Karten etwas breiter */
    gap: 40px;
    margin-top: 40px;
}

.winner-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px; /* Mehr Platz oben/unten */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.winner-card:hover {
    transform: translateY(-5px);
    border-color: var(--twitch-yellow);
    box-shadow: 0 10px 40px rgba(241, 196, 15, 0.2);
}

.winner-bg-icon {
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 15rem;
    color: var(--twitch-yellow);
    opacity: 0.04;
    transform: rotate(15deg);
    pointer-events: none;
    z-index: 0;
}

.winner-header {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    width: 100%;
}

.winner-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.winner-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--twitch-yellow);
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    text-transform: uppercase;
}

/* Team Bereich */
.winner-team {
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
    width: 100%;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.team-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--twitch-purple) 0%, var(--twitch-purple-dark) 100%);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem; /* Größer */
    box-shadow: 0 5px 15px rgba(145, 70, 255, 0.4);
    border: 1px solid rgba(255,255,255,0.2);
    letter-spacing: 1px;
}

/* Mitglieder Liste - Update für große Bilder */
.winner-members {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Mehr Abstand zwischen Spielern */
    width: 100%;
}

.winner-member {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.2s;
    text-align: left;
}

.winner-member:hover {
    background: var(--hover-bg);
    border-color: var(--twitch-purple);
    transform: scale(1.02);
}

/* Großes Profilbild */
.winner-member img {
    width: 80px;  /* Viel größer */
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--twitch-yellow); /* Goldener Rand */
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.member-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-name {
    font-weight: 800;
    font-size: 1.3rem; /* Größerer Name */
    color: var(--text-main);
    line-height: 1.2;
}

/* Social Icons in der Karte */
.member-socials {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.member-socials a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: 0.2s;
}
.member-socials a:hover {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .winners-grid { grid-template-columns: 1fr; }
    .winner-member img { width: 60px; height: 60px; }
    .member-name { font-size: 1.1rem; }
}