.top3-podium-wrap { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; padding: 28px 24px; }
.top3-podium { background: #fff; border-radius: 18px; box-shadow: 0 4px 20px rgba(0,0,0,0.10); padding: 20px 24px; flex: 1 1 280px; max-width: 360px; }
.top3-podium-title { text-align: center; font-size: 17px; margin: 0 0 16px; color: #333; }
.top3-podium-empty { text-align: center; font-size: 13px; color: #888; margin: 10px 0; }

.top3-podium-stand { display: flex; align-items: flex-end; justify-content: center; gap: 10px; }
.top3-podium-place { display: flex; flex-direction: column; align-items: center; flex: 1; max-width: 100px; }
.top3-podium-medal { font-size: 30px; margin-bottom: 4px; }
.top3-podium-name { font-weight: 700; font-size: 13px; color: #333; text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }
.top3-podium-vacant { color: #bbb; }
.top3-podium-points { font-size: 12px; color: #d97706; font-weight: 700; margin-bottom: 6px; }
.top3-podium-bar { width: 100%; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, #ffe4a3, #ffd25c); }
.top3-h1 .top3-podium-bar { height: 70px; }
.top3-h2 .top3-podium-bar { height: 50px; }
.top3-h3 .top3-podium-bar { height: 34px; }
.top3-h1 .top3-podium-medal { font-size: 38px; }

@media (max-width: 600px) {
    .top3-podium-wrap { padding: 20px 16px; gap: 14px; }
    .top3-podium { padding: 16px; }
}

/* ---- Reiter-Karussell (bei mehreren aktiven Spielen: nur eines gleichzeitig sichtbar) ---- */
.top3-tabs-wrap { padding: 28px 24px 36px; max-width: 460px; margin: 0 auto; }
.top3-tabs-nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 18px; }
.top3-tab-btn {
    border: 2px solid #e5e7eb; background: #f9fafb; border-radius: 100px; padding: 8px 14px;
    font-size: 14px; font-weight: 700; cursor: pointer; color: #555; transition: all 0.15s;
    touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.top3-tab-btn:hover { border-color: #c7c9d1; }
.top3-tab-btn.is-active { background: #1e293b; border-color: #1e293b; color: #fff; }
.top3-tab-label { display: none; }
.top3-tab-btn.is-active .top3-tab-label { display: inline; margin-left: 4px; }

.top3-tab-panel { display: none; }
.top3-tab-panel.is-active { display: block; animation: top3-fade-in 0.25s ease; }
@keyframes top3-fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.top3-tab-panel .top3-podium { max-width: 100%; margin: 0 auto; }

@media (max-width: 600px) {
    .top3-tabs-wrap { padding: 20px 16px 28px; }
    .top3-tab-btn { padding: 8px 12px; font-size: 13px; }
}
