/* /Dialogs/ViewAwardingEventDialog.razor.rz.scp.css */
/* ===== PODIUM STAGE CONTAINER ===== */
/*.podium-stage {
    position: relative;
    padding: 20px 12px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #0d1b2a 0%, #1b2838 50%, #243447 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    animation: podium-stageGlow 2s ease-out 0.1s forwards;
}

.podium-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center 70%, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
    z-index: 0;
}*/

/* ===== CONFETTI ===== */
/*.confetti-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}

.confetti-piece {
    position: absolute;
    top: -12px;
    border-radius: 2px;
    opacity: 0;
    animation: podium-confettiFall 4s linear infinite;
}*/

/* ===== SPOTLIGHTS ===== */
/*.spotlight {
    position: absolute;
    width: 180px;
    height: 280px;
    top: -40px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: podium-spotlightOn 1s ease-out 0.3s forwards;
}

.spotlight-left {
    left: 5%;
    background: radial-gradient(ellipse at top, rgba(192,192,192,0.08) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.spotlight-center {
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at top, rgba(255,215,0,0.12) 0%, transparent 70%);
    width: 220px;
}

.spotlight-right {
    right: 5%;
    background: radial-gradient(ellipse at top, rgba(205,127,50,0.08) 0%, transparent 70%);
    transform: rotate(15deg);
}*/

/* ===== PODIUM TITLE ===== */
/*.podium-title {
    text-align: center;
    margin-bottom: 16px;
    opacity: 0;
    animation: podium-titleFade 0.8s ease-out 0.2s forwards;
    position: relative;
    z-index: 2;
}

.podium-title-text {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(255, 215, 0, 0.85);
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
    margin: 0 8px;
}

.podium-title-icon {
    font-size: 14px;
}*/

/* ===== PODIUM LAYOUT ===== */
/*.podium-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    position: relative;
    z-index: 2;
}

.podium-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 180px;
}*/

/* ===== PODIUM CONTENT (above blocks) ===== */
/*.podium-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 4px 10px;
    min-height: 80px;
    justify-content: flex-end;
}

.podium-content-gold {
    opacity: 0;
    animation: podium-fadeInDown 0.6s ease-out 0.8s forwards;
}

.podium-content-silver {
    opacity: 0;
    animation: podium-fadeInDown 0.6s ease-out 1.0s forwards;
}

.podium-content-bronze {
    opacity: 0;
    animation: podium-fadeInDown 0.6s ease-out 1.2s forwards;
}*/

/* ===== TROPHY (Gold only) ===== */
/*.podium-trophy {
    font-size: 36px;
    opacity: 0;
    animation: podium-trophyBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}*/

/* ===== MEDAL ICONS ===== */
/*.podium-medal-icon {
    font-size: 26px;
    opacity: 0;
    animation: podium-medalPop 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

::deep .podium-content-gold .podium-medal-icon {
    animation-delay: 1.3s;
}

::deep .podium-content-silver .podium-medal-icon {
    animation-delay: 1.5s;
}

::deep .podium-content-bronze .podium-medal-icon {
    animation-delay: 1.7s;
}*/

/* ===== REGION FLAGS ===== */
/*.podium-region-flags {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.podium-flag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    object-fit: cover;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.podium-flag-gold {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.35);
}

.podium-flag-silver {
    border-color: rgba(192, 192, 192, 0.45);
    box-shadow: 0 0 6px rgba(192, 192, 192, 0.25);
}

.podium-flag-bronze {
    border-color: rgba(205, 127, 50, 0.45);
    box-shadow: 0 0 6px rgba(205, 127, 50, 0.25);
}*/

/* ===== REGION NAME ===== */
/*.podium-region-name {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-weight: 600;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.podium-region-name-gold {
    color: rgba(255, 215, 0, 0.9);
}*/

/* ===== PODIUM BLOCKS ===== */
/*.podium-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 10px;
    border-radius: 6px 6px 0 0;
    position: relative;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: bottom;
}

.podium-block-gold {
    height: 130px;
    background: linear-gradient(180deg, #FFD54F 0%, #FFB300 40%, #FF8F00 100%);
    animation: podium-rise 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.podium-block-silver {
    height: 96px;
    background: linear-gradient(180deg, #E8E8E8 0%, #BDBDBD 40%, #9E9E9E 100%);
    animation: podium-rise 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
    box-shadow: 0 0 18px rgba(192, 192, 192, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.podium-block-bronze {
    height: 72px;
    background: linear-gradient(180deg, #FFCC80 0%, #FB8C00 40%, #E65100 100%);
    animation: podium-rise 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards;
    box-shadow: 0 0 18px rgba(205, 127, 50, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}*/

/* Shimmer overlay on gold */
/*.podium-block-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

::deep .podium-block-gold .podium-block-shine {
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 45%, rgba(255,255,255,0.35) 50%, transparent 55%);
    animation: podium-shimmer 3s ease-in-out 2s infinite;
}*/

/* ===== RANK LABEL ===== */
/*.podium-rank {
    font-size: 18px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    z-index: 1;
    position: relative;
}

.podium-rank-gold {
    font-size: 22px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}*/

/* ===== LOGOS ON PODIUM BLOCKS ===== */
/*.podium-block-logos {
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 1;
    opacity: 0;
    animation: podium-fadeInDown 0.5s ease-out 1.8s forwards;
}

.podium-block-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 12px rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}

.podium-block-logo-gold {
    width: 54px;
    height: 54px;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 14px rgba(255, 215, 0, 0.4), 0 0 24px rgba(255, 215, 0, 0.2);
    animation: podium-logoGlow-gold 2s ease-in-out 2.5s infinite;
}

.podium-block-logo-silver {
    border-color: rgba(224, 224, 224, 0.5);
    box-shadow: 0 2px 10px rgba(192, 192, 192, 0.3), 0 0 14px rgba(192, 192, 192, 0.12);
}

.podium-block-logo-bronze {
    border-color: rgba(255, 183, 77, 0.5);
    box-shadow: 0 2px 10px rgba(205, 127, 50, 0.3), 0 0 14px rgba(205, 127, 50, 0.12);
}*/

/* ===== STAGE FLOOR ===== */
/*.podium-floor {
    height: 6px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 -12px;
    position: relative;
    z-index: 2;
}*/

/* ===== MEDAL DETAIL PANELS (inside stage) ===== */
/*.podium-details {
    padding: 16px 8px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.podium-detail-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    animation: podium-fadeInDown 0.5s ease-out both;
}

.podium-detail-gold {
    border-color: rgba(255, 179, 0, 0.35);
    animation-delay: 1.8s;
}

.podium-detail-silver {
    border-color: rgba(158, 158, 158, 0.35);
    animation-delay: 2.0s;
}

.podium-detail-bronze {
    border-color: rgba(251, 140, 0, 0.35);
    animation-delay: 2.2s;
}*/

/* Detail Header */
/*.podium-detail-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.podium-detail-header-gold {
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.2) 0%, rgba(255, 143, 0, 0.1) 100%);
}

.podium-detail-header-silver {
    background: linear-gradient(135deg, rgba(189, 189, 189, 0.15) 0%, rgba(158, 158, 158, 0.08) 100%);
}

.podium-detail-header-bronze {
    background: linear-gradient(135deg, rgba(251, 140, 0, 0.18) 0%, rgba(230, 81, 0, 0.08) 100%);
}

.podium-detail-medal-icon {
    font-size: 22px;
}

.podium-detail-medal-name {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.podium-detail-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.podium-detail-rank {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}*/

/* Region Row */
/*.podium-detail-region {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.podium-detail-region-gold {
    background: rgba(255, 179, 0, 0.06);
}

.podium-detail-region-silver {
    background: rgba(189, 189, 189, 0.05);
}

.podium-detail-region-bronze {
    background: rgba(251, 140, 0, 0.05);
}*/

/* Circular region logo wrapper with medal-colored ring */
/*.podium-detail-region-logo-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 2.5px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.podium-detail-region-logo-wrap-gold {
    background: linear-gradient(135deg, #FFD54F, #FF8F00);
    box-shadow: 0 2px 10px rgba(255, 179, 0, 0.35), 0 0 16px rgba(255, 215, 0, 0.15);
}

.podium-detail-region-logo-wrap-silver {
    background: linear-gradient(135deg, #E8E8E8, #9E9E9E);
    box-shadow: 0 2px 10px rgba(158, 158, 158, 0.3), 0 0 12px rgba(192, 192, 192, 0.12);
}

.podium-detail-region-logo-wrap-bronze {
    background: linear-gradient(135deg, #FFCC80, #E65100);
    box-shadow: 0 2px 10px rgba(205, 127, 50, 0.3), 0 0 12px rgba(205, 127, 50, 0.12);
}

.podium-detail-region-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: rgba(13, 27, 42, 0.8);
}*/

/* Region info (name + count) */
/*.podium-detail-region-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.podium-detail-region-name {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.podium-detail-region-name-gold {
    color: rgba(255, 215, 0, 0.9);
}

.podium-detail-region-name-silver {
    color: rgba(224, 224, 224, 0.85);
}

.podium-detail-region-name-bronze {
    color: rgba(255, 183, 77, 0.85);
}

.podium-detail-region-count {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}*/

/* Athlete Row */
/*.podium-detail-athlete {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.podium-detail-athlete-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.podium-detail-initials {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.podium-detail-athlete-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}*/

/* Coach Section */
/*.podium-detail-coach-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
}

.podium-detail-coach-icon {
    font-size: 14px;
}

.podium-detail-coach {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.podium-detail-coach-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(156, 39, 176, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.podium-detail-initials-coach {
    background: rgba(156, 39, 176, 0.6);
}

.podium-detail-coach-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    flex: 1;
}

.podium-detail-coach-region {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1px 8px;
    border-radius: 8px;
}*/

/* ===== KEYFRAME ANIMATIONS ===== */
/*@keyframes podium-rise {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }
    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes podium-fadeInDown {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes podium-medalPop {
    0% {
        transform: scale(0) rotate(-30deg);
        opacity: 0;
    }
    70% {
        transform: scale(1.2) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes podium-trophyBounce {
    0% {
        transform: translateY(-40px) scale(0);
        opacity: 0;
    }
    50% {
        transform: translateY(8px) scale(1.15);
        opacity: 1;
    }
    70% {
        transform: translateY(-4px) scale(0.95);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes podium-shimmer {
    0% {
        transform: translateX(-150%);
    }
    50% {
        transform: translateX(150%);
    }
    100% {
        transform: translateX(150%);
    }
}

@keyframes podium-confettiFall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(350px) rotate(720deg);
        opacity: 0;
    }
}

@keyframes podium-spotlightOn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes podium-titleFade {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes podium-logoGlow-gold {
    0%, 100% {
        box-shadow: 0 2px 14px rgba(255, 215, 0, 0.4), 0 0 24px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 0 2px 18px rgba(255, 215, 0, 0.6), 0 0 32px rgba(255, 215, 0, 0.35);
    }
}

@keyframes podium-stageGlow {
    0% {
        border-color: rgba(255, 215, 0, 0);
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
    50% {
        border-color: rgba(255, 215, 0, 0.3);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
    }
    100% {
        border-color: rgba(255, 215, 0, 0.15);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.05);
    }
}*/

/* ===== LIGHT MODE OVERRIDES ===== */

/* --- Stage Container --- */
/*.podium-stage-light {
    background: linear-gradient(180deg, #f0f4f8 0%, #e8ecf1 50%, #dfe4ea 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.05);
    animation: podium-stageGlow-light 2s ease-out 0.1s forwards;
}

.podium-stage-light::before {
    background: radial-gradient(ellipse at center 70%, transparent 0%, rgba(255,255,255,0.3) 100%);
}*/

/* --- Spotlights (softer for light bg) --- */
/*.podium-stage-light .spotlight-left {
    background: radial-gradient(ellipse at top, rgba(192,192,192,0.12) 0%, transparent 70%);
}

.podium-stage-light .spotlight-center {
    background: radial-gradient(ellipse at top, rgba(255,215,0,0.18) 0%, transparent 70%);
}

.podium-stage-light .spotlight-right {
    background: radial-gradient(ellipse at top, rgba(205,127,50,0.12) 0%, transparent 70%);
}*/

/* --- Podium Title --- */
/*.podium-stage-light .podium-title-text {
    color: rgba(180, 130, 0, 0.9);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}*/

/* --- Region Names (above blocks) --- */
/*.podium-stage-light .podium-region-name {
    color: rgba(0, 0, 0, 0.6);
}

.podium-stage-light .podium-region-name-gold {
    color: rgba(180, 120, 0, 0.9);
}*/

/* --- Region Flags (above blocks) --- */
/*.podium-stage-light .podium-flag {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.podium-stage-light .podium-flag-gold {
    border-color: rgba(255, 179, 0, 0.6);
    box-shadow: 0 0 8px rgba(255, 179, 0, 0.25);
}

.podium-stage-light .podium-flag-silver {
    border-color: rgba(120, 120, 120, 0.4);
    box-shadow: 0 0 6px rgba(120, 120, 120, 0.15);
}

.podium-stage-light .podium-flag-bronze {
    border-color: rgba(205, 127, 50, 0.5);
    box-shadow: 0 0 6px rgba(205, 127, 50, 0.2);
}*/

/* --- Podium Block Logos --- */
/*.podium-stage-light .podium-block-logo {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}*/

/* --- Stage Floor --- */
/*.podium-stage-light .podium-floor {
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, transparent 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}*/

/* --- Detail Cards --- */
/*.podium-stage-light .podium-detail-card {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.podium-stage-light .podium-detail-gold {
    border-color: rgba(255, 179, 0, 0.3);
}

.podium-stage-light .podium-detail-silver {
    border-color: rgba(158, 158, 158, 0.3);
}

.podium-stage-light .podium-detail-bronze {
    border-color: rgba(251, 140, 0, 0.3);
}*/

/* --- Detail Headers --- */
/*.podium-stage-light .podium-detail-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.podium-stage-light .podium-detail-header-gold {
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.15) 0%, rgba(255, 143, 0, 0.06) 100%);
}

.podium-stage-light .podium-detail-header-silver {
    background: linear-gradient(135deg, rgba(158, 158, 158, 0.12) 0%, rgba(120, 120, 120, 0.05) 100%);
}

.podium-stage-light .podium-detail-header-bronze {
    background: linear-gradient(135deg, rgba(251, 140, 0, 0.12) 0%, rgba(230, 81, 0, 0.05) 100%);
}*/

/* --- Detail Text Colors --- */
/*.podium-stage-light .podium-detail-medal-name {
    color: rgba(0, 0, 0, 0.85);
}

.podium-stage-light .podium-detail-count {
    color: rgba(0, 0, 0, 0.45);
}

.podium-stage-light .podium-detail-rank {
    color: rgba(0, 0, 0, 0.65);
    background: rgba(0, 0, 0, 0.06);
}*/

/* --- Region Rows --- */
/*.podium-stage-light .podium-detail-region {
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.podium-stage-light .podium-detail-region-gold {
    background: rgba(255, 179, 0, 0.06);
}

.podium-stage-light .podium-detail-region-silver {
    background: rgba(158, 158, 158, 0.05);
}

.podium-stage-light .podium-detail-region-bronze {
    background: rgba(251, 140, 0, 0.05);
}

.podium-stage-light .podium-detail-region-logo-wrap {
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.podium-stage-light .podium-detail-region-logo-wrap-gold {
    background: linear-gradient(135deg, #FFD54F, #FF8F00);
    box-shadow: 0 2px 8px rgba(255, 179, 0, 0.25);
}

.podium-stage-light .podium-detail-region-logo-wrap-silver {
    background: linear-gradient(135deg, #E0E0E0, #9E9E9E);
    box-shadow: 0 2px 8px rgba(158, 158, 158, 0.2);
}

.podium-stage-light .podium-detail-region-logo-wrap-bronze {
    background: linear-gradient(135deg, #FFCC80, #E65100);
    box-shadow: 0 2px 8px rgba(205, 127, 50, 0.2);
}

.podium-stage-light .podium-detail-region-logo {
    background: rgba(255, 255, 255, 0.9);
}

.podium-stage-light .podium-detail-region-name {
    color: rgba(0, 0, 0, 0.7);
}

.podium-stage-light .podium-detail-region-name-gold {
    color: #b87400;
}

.podium-stage-light .podium-detail-region-name-silver {
    color: #616161;
}

.podium-stage-light .podium-detail-region-name-bronze {
    color: #bf5b00;
}

.podium-stage-light .podium-detail-region-count {
    color: rgba(0, 0, 0, 0.4);
}*/

/* --- Athlete Rows --- */
/*.podium-stage-light .podium-detail-athlete {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.podium-stage-light .podium-detail-athlete-flag {
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.03);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.podium-stage-light .podium-detail-athlete-name {
    color: rgba(0, 0, 0, 0.8);
}*/

/* --- Coach Rows --- */
/*.podium-stage-light .podium-detail-coach-header {
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.5);
}

.podium-stage-light .podium-detail-coach {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.podium-stage-light .podium-detail-coach-flag {
    border-color: rgba(156, 39, 176, 0.3);
    background: rgba(0, 0, 0, 0.03);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.podium-stage-light .podium-detail-coach-name {
    color: rgba(0, 0, 0, 0.75);
}

.podium-stage-light .podium-detail-coach-region {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.12);
}*/

/* --- Light Mode Stage Glow Animation --- */
/*@keyframes podium-stageGlow-light {
    0% {
        border-color: rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    }
    50% {
        border-color: rgba(255, 215, 0, 0.3);
        box-shadow: 0 4px 28px rgba(255, 215, 0, 0.1), 0 0 16px rgba(255, 215, 0, 0.08);
    }
    100% {
        border-color: rgba(255, 215, 0, 0.15);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 8px rgba(255, 215, 0, 0.04);
    }
}*/
       
