/* ==============================
   ISU PODIUM — Awards & Leaderboard
   ============================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-deep: #07060e;
    --bg-surface: rgba(255,255,255,0.04);
    --glass-bg: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.08);
    --text-primary: #f0eef6;
    --text-secondary: rgba(255,255,255,0.6);
    --text-muted: rgba(255,255,255,0.35);
    --gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.4);
    --silver: #c0c0c0;
    --silver-glow: rgba(192, 192, 192, 0.3);
    --bronze: #cd7f32;
    --bronze-glow: rgba(205, 127, 50, 0.3);
    --accent-blue: #60a5fa;
    --accent-purple: #a78bfa;
    --accent-pink: #f472b6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Confetti Canvas */
#confetti-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 0;
}

/* Background */
.podium-bg {
    position: fixed; inset: 0; z-index: 0; overflow: hidden;
}
.podium-bg .orb {
    position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.15;
    animation: orbFloat 20s ease-in-out infinite;
}
.podium-bg .orb-1 { width: 500px; height: 500px; background: var(--gold); top: -150px; left: -100px; }
.podium-bg .orb-2 { width: 400px; height: 400px; background: var(--accent-purple); bottom: -200px; right: -100px; animation-delay: -7s; }
.podium-bg .orb-3 { width: 350px; height: 350px; background: var(--accent-blue); top: 40%; left: 50%; animation-delay: -13s; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Nav */
.podium-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(7,6,14,0.8); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.podium-nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0.75rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
}
.podium-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-primary); }
.podium-brand img { height: 28px; width: auto; }
.podium-brand-text { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; }
.podium-brand-text span { color: var(--gold); }
.podium-nav-links { display: flex; gap: 1.2rem; }
.podium-nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.podium-nav-links a:hover { color: var(--text-primary); }

/* Main */
.podium-main {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
    padding: 5rem 1.5rem 3rem;
}

/* Hero */
.podium-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0 2rem;
}
.podium-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem; font-weight: 900;
    background: linear-gradient(135deg, var(--gold) 0%, #fff8dc 40%, var(--gold) 70%, var(--bronze) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: none;
}
.podium-hero .subtitle {
    font-size: 1.1rem; color: var(--text-secondary);
    font-weight: 300;
}
.podium-hero .trophy { font-size: 4rem; margin-bottom: 1rem; }

/* Stats Banner */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}
.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.2s, border-color 0.3s;
}
.stat-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.15); }
.stat-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem; font-weight: 800;
    color: var(--gold);
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; }

/* Overall Champion */
.champion-section {
    text-align: center;
    margin-bottom: 3.5rem;
}
.champion-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem; font-weight: 700;
    color: var(--gold); margin-bottom: 1.5rem;
    text-transform: uppercase; letter-spacing: 2px;
}
.champion-card {
    display: inline-flex; flex-direction: column; align-items: center;
    background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,215,0,0.03));
    border: 2px solid rgba(255,215,0,0.25);
    border-radius: 24px;
    padding: 2.5rem 3.5rem;
    position: relative;
    overflow: hidden;
    animation: championGlow 4s ease-in-out infinite alternate;
}
@keyframes championGlow {
    0% { box-shadow: 0 0 30px rgba(255,215,0,0.1), 0 0 60px rgba(255,215,0,0.05); }
    100% { box-shadow: 0 0 50px rgba(255,215,0,0.2), 0 0 100px rgba(255,215,0,0.1); }
}
.champion-crown { font-size: 3rem; margin-bottom: 0.75rem; }
.champion-avatar {
    width: 90px; height: 90px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px var(--gold-glow);
}
.champion-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem; font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}
.champion-points {
    font-size: 1rem; color: var(--gold);
    font-weight: 600;
}

/* Round Section */
.round-section {
    margin-bottom: 3.5rem;
}
.round-header {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--glass-border);
}
.round-icon { font-size: 1.6rem; }
.round-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem; font-weight: 700;
    color: var(--text-primary);
}
.round-subtitle { font-size: 0.8rem; color: var(--text-muted); margin-left: auto; }

/* Podium Block (Olympic style) */
.podium-block {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    min-height: 280px;
    padding: 0 1rem;
}
.podium-pillar {
    display: flex; flex-direction: column; align-items: center;
    width: 140px;
    position: relative;
    animation: pillarRise 0.6s ease-out both;
}
.podium-pillar:nth-child(1) { animation-delay: 0.3s; }
.podium-pillar:nth-child(2) { animation-delay: 0.1s; }
.podium-pillar:nth-child(3) { animation-delay: 0.5s; }

@keyframes pillarRise {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.pillar-user {
    display: flex; flex-direction: column; align-items: center;
    margin-bottom: 0.5rem;
}
.pillar-avatar {
    width: 54px; height: 54px;
    border-radius: 50%; object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
    margin-bottom: 0.4rem;
}
.pillar-medal { font-size: 1.4rem; margin-bottom: 0.3rem; }
.pillar-name {
    font-size: 0.75rem; font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    max-width: 120px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pillar-points { font-size: 0.65rem; color: var(--text-muted); }
.pillar-link {
    font-size: 0.6rem; color: var(--accent-blue);
    text-decoration: none; margin-top: 0.2rem;
    opacity: 0.7; transition: opacity 0.2s;
}
.pillar-link:hover { opacity: 1; }

.pillar-base {
    width: 100%; border-radius: 10px 10px 0 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem; font-weight: 900;
    color: rgba(0,0,0,0.4);
}

/* Gold */
.podium-pillar.gold .pillar-avatar { border-color: var(--gold); box-shadow: 0 0 15px var(--gold-glow); }
.podium-pillar.gold .pillar-base {
    background: linear-gradient(180deg, #ffd700 0%, #b8960f 100%);
    height: 140px;
}
/* Silver */
.podium-pillar.silver .pillar-avatar { border-color: var(--silver); box-shadow: 0 0 12px var(--silver-glow); }
.podium-pillar.silver .pillar-base {
    background: linear-gradient(180deg, #c0c0c0 0%, #8a8a8a 100%);
    height: 100px;
}
/* Bronze */
.podium-pillar.bronze .pillar-avatar { border-color: var(--bronze); box-shadow: 0 0 12px var(--bronze-glow); }
.podium-pillar.bronze .pillar-base {
    background: linear-gradient(180deg, #cd7f32 0%, #8b5e1f 100%);
    height: 70px;
}

/* Runners Up (4th & 5th) */
.runners-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}
.runner-card {
    display: flex; align-items: center; gap: 0.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: transform 0.2s;
}
.runner-card:hover { transform: translateY(-2px); }
.runner-rank {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem; font-weight: 800;
    color: var(--text-muted); width: 28px;
}
.runner-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.1); }
.runner-info { flex: 1; min-width: 0; }
.runner-name { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.runner-points { font-size: 0.7rem; color: var(--text-muted); }
.runner-link { font-size: 0.65rem; color: var(--accent-blue); text-decoration: none; }

/* ---- App Competition Winners Section ---- */
.app-winners-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}
.app-winners-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.app-winners-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}
.app-winners-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}
.app-winners-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Olympic Podium for Apps */
.app-winners-block {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    min-height: 360px;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.app-winner-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 170px;
    animation: pillarRise 0.6s ease-out both;
}
.app-winner-pillar:nth-child(1) { animation-delay: 0.3s; }
.app-winner-pillar:nth-child(2) { animation-delay: 0.1s; }
.app-winner-pillar:nth-child(3) { animation-delay: 0.5s; }

.app-winner-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.6rem;
}

.app-winner-medal {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.app-winner-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.app-winner-pillar:hover .app-winner-icon {
    transform: scale(1.08);
}

.app-winner-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.app-winner-app-title {
    font-size: 0.7rem;
    color: var(--text-secondary);
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    margin-bottom: 0.3rem;
}

.app-winner-stats {
    display: flex;
    gap: 0.6rem;
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.app-winner-links {
    display: flex;
    gap: 0.4rem;
}

.app-winner-link {
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}
.app-winner-link.primary {
    background: rgba(56, 189, 248, 0.15);
    color: var(--accent-blue);
    border: 1px solid rgba(56, 189, 248, 0.2);
}
.app-winner-link.primary:hover {
    background: rgba(56, 189, 248, 0.25);
    transform: translateY(-1px);
}

.app-winner-base {
    width: 100%;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(0,0,0,0.35);
}

/* Gold pillar */
.app-winner-pillar.gold .app-winner-icon {
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow), 0 4px 20px rgba(0,0,0,0.3);
}
.app-winner-pillar.gold .app-winner-base {
    background: linear-gradient(180deg, #ffd700 0%, #b8960f 100%);
    height: 150px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

/* Silver pillar */
.app-winner-pillar.silver .app-winner-icon {
    border-color: var(--silver);
    box-shadow: 0 0 15px var(--silver-glow), 0 4px 20px rgba(0,0,0,0.3);
}
.app-winner-pillar.silver .app-winner-base {
    background: linear-gradient(180deg, #c0c0c0 0%, #8a8a8a 100%);
    height: 110px;
}

/* Bronze pillar */
.app-winner-pillar.bronze .app-winner-icon {
    border-color: var(--bronze);
    box-shadow: 0 0 15px var(--bronze-glow), 0 4px 20px rgba(0,0,0,0.3);
}
.app-winner-pillar.bronze .app-winner-base {
    background: linear-gradient(180deg, #cd7f32 0%, #8b5e1f 100%);
    height: 80px;
}

/* Runners Up (4th & 5th) */
.app-runners-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 560px;
    margin: 0 auto 1.5rem;
}

.app-runner-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    transition: transform 0.2s, border-color 0.3s;
}
.app-runner-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.15);
}

.app-runner-rank {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.app-runner-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.app-runner-info {
    flex: 1;
    min-width: 0;
}

.app-runner-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.app-runner-app {
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-runner-link {
    font-size: 0.7rem;
    color: var(--accent-blue);
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
    transition: opacity 0.2s;
    opacity: 0.7;
}
.app-runner-link:hover { opacity: 1; }

/* CTA Button */
.app-winners-cta {
    text-align: center;
    margin-top: 1rem;
}
.app-winners-browse-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
    transition: transform 0.2s, box-shadow 0.3s;
}
.app-winners-browse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(245, 158, 11, 0.4);
}

/* People's Choice Award Card */
.peoples-choice-card {
    max-width: 480px;
    margin: 1.5rem auto 1.5rem;
    background: linear-gradient(135deg, rgba(219, 39, 119, 0.08), rgba(168, 85, 247, 0.06));
    border: 1px solid rgba(219, 39, 119, 0.2);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    animation: fadeIn 0.6s ease-out 0.7s both;
}
.peoples-choice-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.peoples-choice-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.peoples-choice-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid rgba(219, 39, 119, 0.3);
    box-shadow: 0 0 16px rgba(219, 39, 119, 0.15);
    flex-shrink: 0;
}
.peoples-choice-info {
    flex: 1;
    min-width: 0;
}
.peoples-choice-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}
.peoples-choice-app-title {
    font-size: 0.75rem;
    color: #ec4899;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.peoples-choice-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.3;
    margin-bottom: 0.25rem;
}
.peoples-choice-stats {
    display: flex;
    gap: 0.6rem;
    font-size: 0.65rem;
    color: var(--text-muted);
}
.peoples-choice-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    padding: 6px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    background: rgba(219, 39, 119, 0.12);
    color: #ec4899;
    border: 1px solid rgba(219, 39, 119, 0.2);
    transition: all 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}
.peoples-choice-link:hover {
    background: rgba(219, 39, 119, 0.22);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .app-winners-block { gap: 6px; }
    .app-winner-pillar { width: 110px; }
    .app-winner-icon { width: 48px; height: 48px; }
    .app-winner-name { font-size: 0.8rem; }
    .app-runners-list { grid-template-columns: 1fr; }
    .peoples-choice-inner { flex-direction: column; text-align: center; }
    .peoples-choice-link { margin-top: 0.5rem; }
}

/* Empty state */
.empty-round {
    text-align: center; padding: 2rem;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 16px; color: var(--text-muted);
    font-size: 0.85rem;
}

/* Mission label */
.mission-label {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 0.35rem 0.8rem;
    font-size: 0.8rem; color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Footer */
.podium-footer {
    text-align: center; padding: 2rem 1rem;
    color: var(--text-muted); font-size: 0.8rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 2rem;
}
.podium-footer a { color: var(--accent-blue); text-decoration: none; }

/* Loading */
.podium-loading {
    display: flex; align-items: center; justify-content: center;
    min-height: 300px;
}
.spinner {
    width: 40px; height: 40px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Locked State Overlay */
.podium-lock {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    animation: fadeIn 0.8s ease-out;
}

.lock-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px;
    padding: 4rem 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    max-width: 600px;
    width: 100%;
}

.lock-icon { font-size: 3.5rem; margin-bottom: 1.5rem; filter: drop-shadow(0 0 15px rgba(255,215,0,0.3)); }
.lock-card h2 { font-family: 'Outfit', sans-serif; font-size: 2rem; margin-bottom: 0.5rem; color: #fff; }
.lock-card p { color: var(--text-secondary); margin-bottom: 2rem; font-weight: 300; }

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.time-block label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* Blur effect when locked - applies to children except the lock card */
.podium-locked-blur > *:not(.podium-lock) {
    filter: blur(25px);
    pointer-events: none;
    user-select: none;
    opacity: 0.3;
    transition: filter 0.5s ease;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 480px) {
    .countdown-timer { gap: 0.75rem; }
    .time-block span { font-size: 1.8rem; }
    .lock-card { padding: 3rem 1rem; }
}
