:root {
    --bg: #f3f6f7;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: rgba(15, 23, 42, 0.1);

    --primary: #0ea5a3; /* teal */
    --primary2: #0b8f8d;
    --coral: #f27b5b; /* coral */
    --coral2: #e86a4c;

    --gold: #f6c445;
    --gold2: #eab308;

    --navy: #0b1b31;
    --shadow: 0 16px 40px rgba(2, 6, 23, 0.1);
    --shadow2: 0 30px 70px rgba(2, 6, 23, 0.12);
    --radius: 18px;

    --container: 1200px;
}

* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Arial,
        sans-serif;
    background: var(--bg);
    color: var(--text);
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 22px;
}

.page {
    padding-top: 72px; /* fixed navbar */
}

/* ===== NAVBAR ===== */
.navbar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}
.navbar {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--coral));
    box-shadow: 0 10px 18px rgba(2, 6, 23, 0.15);
}
.brand-badge svg {
    width: 18px;
    height: 18px;
    color: #fff;
}
.brand-text {
    line-height: 1;
}
.brand-name {
    font-weight: 800;
    font-size: 16px;
}
.brand-sub {
    display: block;
    font-size: 10px;
    color: var(--muted);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 16px;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.22s ease;
}
.nav-link svg {
    width: 16px;
    height: 16px;
}
.nav-link:hover {
    background: rgba(2, 6, 23, 0.05);
    color: #0f172a;
}
.nav-link.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(14, 165, 163, 0.25);
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    cursor: pointer;
}
.nav-toggle:hover {
    background: rgba(2, 6, 23, 0.05);
}
.nav-toggle svg {
    width: 22px;
    height: 22px;
}

/* mobile */
.mobile-menu {
    display: none;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
}
.mobile-inner {
    padding: 14px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 700;
    transition: 0.2s;
}
.mobile-link:hover {
    background: rgba(2, 6, 23, 0.05);
    color: var(--text);
}
.mobile-link.active {
    background: var(--primary);
    color: #fff;
}
.mobile-link svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 1024px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    .nav-toggle {
        display: grid;
    }
    .mobile-menu.open {
        display: block;
    }
}

/* ===== BUTTONS ===== */
.btn {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.22s ease;
    user-select: none;
    white-space: nowrap;
}
.btn svg {
    width: 18px;
    height: 18px;
}

.btn-coral {
    background: linear-gradient(135deg, var(--coral), var(--coral2));
    color: #fff;
    box-shadow: 0 14px 28px rgba(242, 123, 91, 0.24);
}
.btn-coral:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(242, 123, 91, 0.28);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #0b1220;
    box-shadow: 0 16px 34px rgba(246, 196, 69, 0.25);
}
.btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 52px rgba(246, 196, 69, 0.3);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    backdrop-filter: blur(10px);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.24);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(14, 165, 163, 0.45);
    color: var(--primary2);
}
.btn-outline:hover {
    background: rgba(14, 165, 163, 0.08);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #fff;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.24);
}
.btn-vote {
    background: linear-gradient(
        135deg,
        rgba(242, 123, 91, 0.2),
        rgba(242, 123, 91, 0.08)
    );
    border: 1px solid rgba(242, 123, 91, 0.35);
    color: var(--coral2);
    padding: 10px 14px;
}
.btn-vote:hover {
    background: linear-gradient(
        135deg,
        rgba(242, 123, 91, 0.28),
        rgba(242, 123, 91, 0.12)
    );
}
.btn-vote[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.w-full {
    width: 100%;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: calc(100vh - 72px);
    display: grid;
    place-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(14, 165, 163, 0.85),
        rgba(11, 27, 49, 0.7),
        rgba(242, 123, 91, 0.78)
    );
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(255, 255, 255, 0.16) 1px,
        transparent 1px
    );
    background-size: 28px 28px;
}
.hero-content {
    position: relative;
    padding: 70px 0 80px;
    text-align: center;
    color: #fff;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
}
.hero-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--coral);
    box-shadow: 0 0 0 6px rgba(242, 123, 91, 0.18);
}
.hero-title {
    margin: 18px 0 8px;
    font-size: clamp(44px, 6vw, 86px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 16px 38px rgba(2, 6, 23, 0.35);
}
.hero-sub {
    display: block;
    font-size: clamp(28px, 3.6vw, 56px);
    font-weight: 900;
    color: var(--gold);
    margin-top: 4px;
}
.hero-text {
    max-width: 920px;
    margin: 14px auto 26px;
    font-size: clamp(16px, 2.2vw, 22px);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}
.hero-actions .btn {
    padding: 14px 18px;
    border-radius: 14px;
}

.hero-stats {
    margin: 42px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    max-width: 720px;
}
.stat-num {
    font-size: clamp(34px, 3.8vw, 52px);
    font-weight: 900;
    letter-spacing: -1px;
}
.stat-lbl {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
    font-size: 13px;
}
.scroll-indicator {
    margin-top: 44px;
    display: flex;
    justify-content: center;
}
.mouse {
    width: 34px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 10px;
    display: flex;
    justify-content: center;
}
.wheel {
    width: 6px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    animation: wheel 1.2s ease-in-out infinite;
}
@keyframes wheel {
    0% {
        transform: translateY(0);
        opacity: 0.7;
    }
    60% {
        transform: translateY(12px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 78px 0;
}
.muted {
    background: rgba(2, 6, 23, 0.02);
}
.section-head {
    margin-bottom: 34px;
}
.section-head.center {
    text-align: center;
}
.section-head.split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}
.h2 {
    font-size: clamp(34px, 4vw, 56px);
    margin: 0;
    letter-spacing: -1px;
}
.subtext {
    margin: 10px 0 0;
    color: var(--muted);
    font-weight: 600;
    font-size: 18px;
    max-width: 740px;
}
.section-head.center .subtext {
    margin-left: auto;
    margin-right: auto;
}
.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--coral));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===== PHASES ===== */
.phase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.phase-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.06);
    transition: 0.25s ease;
}
.phase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.phase-card.active {
    border: 2px solid rgba(14, 165, 163, 0.75);
}
.badge-top {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 12px 22px rgba(14, 165, 163, 0.25);
}
.phase-num {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--coral));
    margin-bottom: 14px;
}
.phase-title {
    margin: 0 0 8px;
    font-size: 22px;
}
.phase-desc {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.55;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .phase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .section-head.split {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 560px) {
    .phase-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        gap: 16px;
    }
}

/* ===== CONTESTANT CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.contest-card {
    position: relative;
    background: var(--card);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.06);
    transition: 0.28s ease;
}
.contest-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow2);
}
.rank-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    z-index: 3;
    box-shadow: 0 12px 20px rgba(2, 6, 23, 0.18);
}
.rank-1 {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #0b1220;
}
.rank-2 {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}
.rank-3 {
    background: linear-gradient(135deg, #d97706, #b45309);
}

.card-media {
    height: 240px;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(14, 165, 163, 0.1),
        rgba(242, 123, 91, 0.1)
    );
}
.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55));
    z-index: 1;
}
.media-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 0;
}
.media-placeholder svg {
    width: 74px;
    height: 74px;
    color: rgba(14, 165, 163, 0.35);
}
.chip {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(14, 165, 163, 0.92);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    padding: 7px 12px;
    border-radius: 999px;
}

.card-body {
    padding: 18px;
}
.card-name {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.4px;
}
.card-title {
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
    margin-top: 4px;
}
.card-meta {
    margin-top: 12px;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}
.card-bio {
    margin: 12px 0 16px;
    color: rgba(15, 23, 42, 0.78);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.votes {
    display: flex;
    align-items: center;
    gap: 10px;
}
.votes .heart {
    color: var(--coral2);
}
.votes .heart.liked {
    fill: var(--coral2);
}
.votes-num {
    font-weight: 900;
    font-size: 20px;
}
.votes-lbl {
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PRIZES ===== */
.prizes {
    padding: 84px 0;
    background: linear-gradient(
        90deg,
        rgba(14, 165, 163, 0.95),
        rgba(11, 27, 49, 0.88),
        rgba(242, 123, 91, 0.9)
    );
}
.section-head.white .subtext {
    color: rgba(255, 255, 255, 0.78);
}
.section-head.white .h2,
.section-head.white .subtext {
    color: #fff;
}
.prize-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: center;
}
.prize-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.18);
}
.prize-card.featured {
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(246, 196, 69, 0.7);
    transform: translateY(-10px);
}
.prize-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    box-shadow: 0 16px 30px rgba(2, 6, 23, 0.15);
}
.prize-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}
.prize-icon.muted {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}
.prize-icon.bronze {
    background: linear-gradient(135deg, #d97706, #b45309);
}
.prize-icon.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
}
.prize-kicker {
    color: #64748b;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.06em;
}
.prize-kicker.goldtxt {
    color: #b45309;
}
.prize-amount {
    font-size: 34px;
    font-weight: 900;
    margin-top: 10px;
}
.prize-amount.big {
    font-size: 44px;
}
.prize-note {
    margin-top: 10px;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 900px) {
    .prize-grid {
        grid-template-columns: 1fr;
    }
    .prize-card.featured {
        transform: none;
    }
}

/* ===== CTA ===== */
.cta {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(
        90deg,
        rgba(14, 165, 163, 0.92),
        rgba(242, 123, 91, 0.88)
    );
    padding: 60px 20px;
    box-shadow: var(--shadow);
}
.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(255, 255, 255, 0.22) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
}
.cta-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
.cta-inner h2 {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 60px);
    font-weight: 900;
    letter-spacing: -1px;
}
.cta-inner p {
    margin: 14px auto 22px;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    color: #fff;
    margin-top: 70px;
    padding: 58px 0 22px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-title {
    margin: 0 0 12px;
    font-size: 22px;
}
.footer-text {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    max-width: 520px;
    line-height: 1.7;
}
.footer-head {
    margin: 0 0 12px;
    font-size: 18px;
}
.footer-links,
.footer-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 700;
    transition: 0.2s;
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-meta li {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 700;
}

.socials {
    display: flex;
    gap: 12px;
}
.social {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.2s;
}
.social:hover {
    background: rgba(14, 165, 163, 0.35);
}
.social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    font-size: 13px;
}
.powered {
    display: flex;
    align-items: center;
    gap: 10px;
}
.powered-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coral);
    font-weight: 900;
}
.powered-brand svg {
    width: 16px;
    height: 16px;
}
.gradient-gold {
    background: linear-gradient(90deg, var(--gold), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================
   LEADERBOARD PAGE
========================= */

.lb-hero {
    background: linear-gradient(
        90deg,
        rgba(14, 165, 163, 0.95),
        rgba(11, 27, 49, 0.88),
        rgba(242, 123, 91, 0.92)
    );
}
.lb-hero-inner {
    padding: 92px 0 78px;
}
.lb-hero-content {
    text-align: center;
    color: #fff;
}
.lb-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
}
.lb-pill svg {
    width: 18px;
    height: 18px;
}
.lb-title {
    margin: 16px 0 6px;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 900;
    letter-spacing: -1px;
}
.lb-subtitle {
    margin: 0;
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
}

.lb-section {
    padding: 70px 0;
}
.lb-section-tight {
    padding-top: 20px;
}

.podium {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 22px;
    align-items: end;
    margin-top: 14px;
}
.podium-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.1);
    text-align: center;
}
.podium-card.first {
    border: 2px solid rgba(246, 196, 69, 0.7);
    box-shadow:
        0 22px 55px rgba(246, 196, 69, 0.18),
        0 18px 44px rgba(2, 6, 23, 0.1);
    transform: translateY(-8px);
}
.podium-top {
    padding: 26px 18px 10px;
    display: grid;
    gap: 14px;
    justify-items: center;
}
.podium-medal {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    box-shadow: 0 16px 30px rgba(2, 6, 23, 0.12);
}
.podium-medal svg {
    width: 28px;
    height: 28px;
    color: #fff;
}
.podium-medal.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
}
.podium-medal.silver {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}
.podium-medal.bronze {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.podium-avatar {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        rgba(14, 165, 163, 0.16),
        rgba(242, 123, 91, 0.16)
    );
    display: grid;
    place-items: center;
    border: 1px solid rgba(2, 6, 23, 0.08);
}
.podium-avatar svg {
    width: 34px;
    height: 34px;
    color: rgba(14, 165, 163, 0.45);
}

.podium-body {
    padding: 8px 18px 22px;
}
.podium-body h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.4px;
}
.podium-meta {
    margin: 6px 0 10px;
    color: var(--muted);
    font-weight: 700;
}
.podium-votes {
    font-weight: 900;
    font-size: 22px;
    color: #64748b;
}
.podium-votes.highlight {
    color: #d97706;
}
.podium-votes.bronze-text {
    color: #d97706;
}

.podium-base {
    padding: 18px 0;
    font-size: 34px;
    font-weight: 900;
    color: #fff;
}
.podium-base.gold {
    background: linear-gradient(180deg, #eab308, #d97706);
}
.podium-base.silver {
    background: linear-gradient(180deg, #cbd5e1, #94a3b8);
}
.podium-base.bronze {
    background: linear-gradient(180deg, #f59e0b, #d97706);
}

@media (max-width: 980px) {
    .podium {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    .podium-card.first {
        transform: none;
    }
}

/* Complete Rankings */
.lb-h2 {
    text-align: center;
    margin: 0 0 26px;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    letter-spacing: -0.8px;
}

.rank-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}
.rank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 12px 26px rgba(2, 6, 23, 0.06);
}
.rank-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.rank-badge {
    width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rank-num {
    font-weight: 900;
    color: #64748b;
}
.ico {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(2, 6, 23, 0.06);
}
.ico svg {
    width: 18px;
    height: 18px;
}
.ico.gold {
    background: rgba(246, 196, 69, 0.22);
    color: #d97706;
}
.ico.silver {
    background: rgba(148, 163, 184, 0.25);
    color: #475569;
}
.ico.bronze {
    background: rgba(245, 158, 11, 0.18);
    color: #d97706;
}

.rank-avatar {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        rgba(14, 165, 163, 0.16),
        rgba(242, 123, 91, 0.16)
    );
    display: grid;
    place-items: center;
    border: 1px solid rgba(2, 6, 23, 0.08);
    flex: 0 0 auto;
}
.rank-avatar svg {
    width: 22px;
    height: 22px;
    color: rgba(14, 165, 163, 0.5);
}
.rank-info {
    min-width: 0;
}
.rank-name {
    font-weight: 900;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rank-meta {
    margin-top: 4px;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rank-right {
    text-align: right;
    flex: 0 0 auto;
}
.rank-votes {
    font-weight: 900;
    font-size: 20px;
}
.rank-votes-label {
    color: var(--muted);
    font-weight: 800;
    font-size: 12px;
}

/* Top 3 highlight rows */
.rank-gold {
    background: linear-gradient(
        90deg,
        rgba(246, 196, 69, 0.14),
        rgba(255, 255, 255, 0.92)
    );
    border-color: rgba(246, 196, 69, 0.55);
}
.rank-silver {
    background: linear-gradient(
        90deg,
        rgba(203, 213, 225, 0.18),
        rgba(255, 255, 255, 0.92)
    );
    border-color: rgba(148, 163, 184, 0.45);
}
.rank-bronze {
    background: linear-gradient(
        90deg,
        rgba(245, 158, 11, 0.14),
        rgba(255, 255, 255, 0.92)
    );
    border-color: rgba(245, 158, 11, 0.55);
}

/* =========================
   ABOUT PAGE (matches screenshots)
========================= */

.page-pad-top {
    padding-top: 72px;
}

/* HERO */
.about-hero {
    position: relative;
    background: linear-gradient(
        90deg,
        rgba(14, 165, 163, 0.96),
        rgba(11, 27, 49, 0.9),
        rgba(242, 123, 91, 0.94)
    );
    overflow: hidden;
}
.about-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(255, 255, 255, 0.28) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
}
.about-hero-inner {
    padding: 90px 0 80px;
    position: relative;
    z-index: 2;
}
.about-hero-card {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
.about-hero-card h1 {
    margin: 0 0 14px;
    font-weight: 900;
    letter-spacing: -1px;
    font-size: clamp(36px, 4.8vw, 60px);
}
.about-hero-card p {
    margin: 0 auto;
    max-width: 860px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    line-height: 1.7;
    font-size: clamp(16px, 2.1vw, 20px);
}

/* SECTION */
.section {
    padding: 80px 0;
}
.section-muted {
    background: rgba(2, 6, 23, 0.03);
}
.section-head {
    margin-bottom: 42px;
}
.section-head.center {
    text-align: center;
}
.section-head h2 {
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: -0.8px;
    font-size: clamp(28px, 3.2vw, 48px);
    color: var(--ink, #0f172a);
}
.section-head p {
    margin: 0 auto;
    max-width: 760px;
    color: var(--muted, #64748b);
    font-weight: 600;
    line-height: 1.65;
}
.kicker {
    display: inline-block;
    color: var(--primary, #0ea5a3);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
}
.grad-word {
    background: linear-gradient(
        90deg,
        rgba(14, 165, 163, 1),
        rgba(242, 123, 91, 1)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* MISSION GRID */
.about-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 42px;
    align-items: center;
}
.about-copy h2 {
    margin: 8px 0 18px;
    font-weight: 900;
    letter-spacing: -0.6px;
    font-size: clamp(26px, 3vw, 44px);
}
.about-copy p {
    margin: 0 0 14px;
    color: var(--muted, #64748b);
    font-weight: 600;
    line-height: 1.8;
    font-size: 16px;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.value-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(2, 6, 23, 0.08);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(2, 6, 23, 0.1);
}
.value-ico {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(2, 6, 23, 0.08);
    background: linear-gradient(
        135deg,
        rgba(14, 165, 163, 0.14),
        rgba(242, 123, 91, 0.14)
    );
}
.value-ico svg {
    width: 22px;
    height: 22px;
}
.value-ico.coral {
    color: var(--coral, #f27b5b);
}
.value-ico.teal {
    color: var(--primary, #0ea5a3);
}
.value-ico.gold {
    color: var(--gold2, #e4a11b);
}
.value-ico.navy {
    color: var(--navy, #0b1b31);
}

.value-title {
    font-weight: 900;
    letter-spacing: -0.3px;
    color: var(--ink, #0f172a);
}
.value-sub {
    margin-top: 6px;
    color: var(--muted, #64748b);
    font-weight: 700;
    font-size: 13px;
}

/* TIMELINE */
.timeline {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}
.timeline-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: flex-start;
}
.timeline-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timeline-dot {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #94a3b8, #64748b);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.1);
}
.timeline-dot.is-active {
    background: linear-gradient(
        135deg,
        var(--primary, #0ea5a3),
        rgba(14, 165, 163, 0.65)
    );
    outline: 6px solid rgba(14, 165, 163, 0.18);
}
.timeline-line {
    width: 2px;
    height: 62px;
    background: rgba(2, 6, 23, 0.1);
    margin-top: 10px;
    border-radius: 999px;
}
.timeline-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(2, 6, 23, 0.08);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.07);
}
.timeline-card.is-active {
    border-color: rgba(14, 165, 163, 0.45);
    box-shadow: 0 24px 60px rgba(14, 165, 163, 0.1);
}
.timeline-card h3 {
    margin: 0 0 6px;
    font-weight: 900;
    letter-spacing: -0.3px;
}
.timeline-card p {
    margin: 0;
    color: var(--muted, #64748b);
    font-weight: 600;
    line-height: 1.7;
}
.pill-open {
    display: inline-block;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--primary, #0ea5a3);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

/* SHOW CARDS */
.show-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1040px;
    margin: 0 auto;
}
.show-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(2, 6, 23, 0.08);
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.show-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(2, 6, 23, 0.1);
}
.show-ico {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(2, 6, 23, 0.08);
    background: linear-gradient(
        135deg,
        rgba(14, 165, 163, 0.14),
        rgba(242, 123, 91, 0.14)
    );
}
.show-ico svg {
    width: 26px;
    height: 26px;
}
.show-ico.teal {
    color: var(--primary, #0ea5a3);
}
.show-ico.gold {
    color: var(--gold2, #e4a11b);
}
.show-ico.coral {
    color: var(--coral, #f27b5b);
}
.show-title {
    font-weight: 900;
    color: var(--ink, #0f172a);
}
.show-big {
    margin-top: 10px;
    font-weight: 950;
    letter-spacing: -0.6px;
    font-size: 26px;
}
.show-big.teal {
    color: var(--primary, #0ea5a3);
}
.show-big.gold {
    color: var(--gold2, #e4a11b);
}
.show-big.coral {
    color: var(--coral, #f27b5b);
}
.show-sub {
    margin-top: 8px;
    color: var(--muted, #64748b);
    font-weight: 700;
    font-size: 13px;
}

/* CTA PANEL */
.cta-panel {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(2, 6, 23, 0.08);
    box-shadow: 0 26px 70px rgba(2, 6, 23, 0.12);
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(14, 165, 163, 0.95),
        rgba(11, 27, 49, 0.9),
        rgba(242, 123, 91, 0.95)
    );
}
.cta-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(255, 255, 255, 0.26) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
}
.cta-inner {
    position: relative;
    padding: 56px 18px;
    text-align: center;
    color: #fff;
}
.cta-inner h2 {
    margin: 0 0 16px;
    font-weight: 950;
    letter-spacing: -0.8px;
    font-size: clamp(26px, 3.3vw, 44px);
}
.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons (if you don't already have) */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 900;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition:
        transform 0.18s ease,
        filter 0.18s ease,
        background 0.18s ease;
}
.btn svg {
    width: 18px;
    height: 18px;
}
.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.btn-gold {
    background: linear-gradient(135deg, #f7d046, #e4a11b);
    color: #0b1b31;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 40px rgba(228, 161, 27, 0.25);
}
.btn-glass {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(12px);
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .show-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 520px) {
    .timeline-row {
        grid-template-columns: 62px 1fr;
    }
}

/* =========================
   CONTESTANTS PAGE (match screenshots)
========================= */

.contest-hero {
    position: relative;
    background: linear-gradient(
        90deg,
        rgba(14, 165, 163, 0.96),
        rgba(11, 27, 49, 0.9),
        rgba(242, 123, 91, 0.94)
    );
    overflow: hidden;
}
.contest-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(255, 255, 255, 0.28) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
}
.contest-hero-inner {
    padding: 54px 0;
    position: relative;
    z-index: 2;
}
.contest-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
.contest-hero-content h1 {
    margin: 0 0 10px;
    font-weight: 950;
    letter-spacing: -1px;
    font-size: clamp(34px, 4.6vw, 58px);
}
.contest-hero-content p {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 650;
    line-height: 1.7;
    font-size: clamp(16px, 2.1vw, 20px);
}

/* Sticky filter bar under navbar (navbar ~ 64px) */
.contest-filterbar {
    position: sticky;
    top: 64px;
    z-index: 40;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(2, 6, 23, 0.08);
}
.filterbar-inner {
    padding: 14px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}
.searchbox {
    position: relative;
}
.searchbox svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: rgba(100, 116, 139, 0.9);
}
.searchbox input {
    width: 100%;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(2, 6, 23, 0.1);
    padding: 0 14px 0 46px;
    font-weight: 650;
    outline: none;
    background: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
    display: block;
    transition:
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}
.searchbox input:focus {
    border-color: rgba(14, 165, 163, 0.45);
    box-shadow: 0 0 0 6px rgba(14, 165, 163, 0.12);
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.pill {
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(2, 6, 23, 0.1);
    background: rgba(255, 255, 255, 0.7);
    color: rgba(15, 23, 42, 0.72);
    font-weight: 900;
    font-size: 13px;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        background 0.15s ease,
        border-color 0.15s ease;
}
.pill:hover {
    transform: translateY(-1px);
}
.pill.is-active {
    background: rgba(14, 165, 163, 1);
    border-color: rgba(14, 165, 163, 1);
    color: #fff;
    box-shadow: 0 18px 40px rgba(14, 165, 163, 0.18);
}

/* Grid */
.contest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Card */
.contest-card {
    position: relative;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(2, 6, 23, 0.1);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.08);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}
.contest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.12);
}

/* rank badge */
.rank-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 950;
    color: #fff;
    z-index: 5;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18);
}
.rank-1 {
    background: linear-gradient(135deg, #f7d046, #e4a11b);
    color: #0b1b31;
}
.rank-2 {
    background: linear-gradient(135deg, #d1d5db, #9ca3af);
    color: #0b1b31;
}
.rank-3 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}
.rank-n {
    background: linear-gradient(
        135deg,
        rgba(14, 165, 163, 1),
        rgba(242, 123, 91, 0.9)
    );
}

/* media */
.card-media {
    position: relative;
    height: 240px;
    background: linear-gradient(
        135deg,
        rgba(14, 165, 163, 0.18),
        rgba(242, 123, 91, 0.18)
    );
}
.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.55), transparent);
    z-index: 1;
}
.media-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 0;
}
.media-placeholder svg {
    width: 74px;
    height: 74px;
    color: rgba(14, 165, 163, 0.35);
}
.spec-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(14, 165, 163, 0.92);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

/* body */
.card-body {
    padding: 16px 16px 18px;
}
.card-top h3 {
    margin: 0;
    font-weight: 950;
    letter-spacing: -0.4px;
    color: #0f172a;
    font-size: 20px;
}
.card-sub {
    margin-top: 4px;
    color: rgba(100, 116, 139, 0.9);
    font-weight: 800;
    font-size: 13px;
}
.card-meta {
    margin-top: 10px;
    color: rgba(100, 116, 139, 0.9);
    font-weight: 750;
    font-size: 13px;
}
.card-bio {
    margin: 12px 0 16px;
    color: rgba(15, 23, 42, 0.7);
    font-weight: 650;
    line-height: 1.7;
    font-size: 14px;

    /* clamp to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* bottom */
.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.votes {
    display: flex;
    align-items: center;
    gap: 8px;
}
.vote-heart {
    width: 20px;
    height: 20px;
    color: rgba(242, 123, 91, 1);
}
.vote-count {
    font-weight: 950;
    font-size: 18px;
    color: #0f172a;
}
.vote-label {
    color: rgba(100, 116, 139, 0.9);
    font-weight: 800;
    font-size: 13px;
}

/* vote button */
.btn-vote {
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(2, 6, 23, 0.1);
    background: rgba(242, 123, 91, 0.12);
    color: rgba(242, 123, 91, 1);
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition:
        transform 0.16s ease,
        background 0.16s ease,
        box-shadow 0.16s ease;
}
.btn-vote svg {
    width: 18px;
    height: 18px;
}
.btn-vote:hover {
    transform: translateY(-1px);
    background: rgba(242, 123, 91, 0.16);
    box-shadow: 0 18px 40px rgba(242, 123, 91, 0.12);
}
.btn-vote.is-voted {
    background: rgba(14, 165, 163, 0.14);
    color: rgba(14, 165, 163, 1);
    border-color: rgba(14, 165, 163, 0.22);
    cursor: default;
}

/* empty state */
.empty-state {
    text-align: center;
    padding: 80px 0 20px;
}
.empty-ico {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(2, 6, 23, 0.1);
    background: rgba(2, 6, 23, 0.02);
}
.empty-ico svg {
    width: 34px;
    height: 34px;
    color: rgba(100, 116, 139, 0.9);
}
.empty-state h3 {
    margin: 0 0 6px;
    font-weight: 950;
    color: #0f172a;
    letter-spacing: -0.4px;
}
.empty-state p {
    margin: 0;
    color: rgba(100, 116, 139, 0.95);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1100px) {
    .contest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 680px) {
    .contest-grid {
        grid-template-columns: 1fr;
    }
    .filterbar-inner {
        justify-content: center;
    }
    .searchbox {
        max-width: 100%;
    }
}

/* =========================
   VOTE PAGE (header + status + rules + toast)
========================= */

.vote-hero {
    position: relative;
    background: linear-gradient(
        90deg,
        rgba(14, 165, 163, 0.96),
        rgba(11, 27, 49, 0.9),
        rgba(242, 123, 91, 0.94)
    );
    overflow: hidden;
}
.vote-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(255, 255, 255, 0.28) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
}
.vote-hero-inner {
    padding: 46px 0;
    position: relative;
    z-index: 2;
}
.vote-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.vote-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    margin-bottom: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.92);
}
.vote-pill svg {
    width: 16px;
    height: 16px;
    color: #f7d046;
}

.vote-hero-content h1 {
    margin: 0 0 10px;
    font-weight: 950;
    letter-spacing: -1px;
    font-size: clamp(34px, 4.6vw, 58px);
}
.vote-hero-sub {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 750;
    font-size: clamp(16px, 2.1vw, 20px);
}

/* status bar (sticky under navbar) */
.vote-statusbar {
    position: sticky;
    top: 64px;
    z-index: 40;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(2, 6, 23, 0.08);
}
.vote-status-inner {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.status-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.vote-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}
.vote-dot {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(2, 6, 23, 0.03);
    border: 2px dashed rgba(2, 6, 23, 0.18);
    color: rgba(2, 6, 23, 0);
    transition: all 0.2s ease;
}
.vote-dot svg {
    width: 18px;
    height: 18px;
}
.vote-dot.is-used {
    background: rgba(242, 123, 91, 1);
    border: 2px solid rgba(242, 123, 91, 1);
    color: #fff;
}
.vote-dot.is-used svg {
    color: #fff;
}
.used-text {
    font-weight: 850;
    color: rgba(100, 116, 139, 0.95);
    font-size: 13px;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(100, 116, 139, 0.95);
    font-weight: 800;
    font-size: 13px;
}
.status-right svg {
    width: 16px;
    height: 16px;
}

/* grid reuse */
.vote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 1100px) {
    .vote-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 680px) {
    .vote-grid {
        grid-template-columns: 1fr;
    }
}

/* voted tag */
.contest-card .voted-tag {
    display: none;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(14, 165, 163, 0.22);
    background: rgba(14, 165, 163, 0.1);
    color: rgba(14, 165, 163, 1);
    font-weight: 900;
    gap: 8px;
    align-items: center;
}
.contest-card .voted-tag svg {
    width: 18px;
    height: 18px;
}

/* Toast */
.toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: min(360px, calc(100% - 36px));
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(2, 6, 23, 0.1);
    border-radius: 16px;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.14);
    padding: 14px 14px;
    transform: translateY(14px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.22s ease;
}
.toast.is-show {
    opacity: 1;
    transform: translateY(0);
}
.toast-title {
    font-weight: 950;
    color: #0f172a;
    margin-bottom: 4px;
}
.toast-desc {
    color: rgba(100, 116, 139, 0.95);
    font-weight: 750;
    line-height: 1.5;
}

/* Voting rules */
.vote-rules {
    padding: 56px 0;
    background: rgba(2, 6, 23, 0.03);
    border-top: 1px solid rgba(2, 6, 23, 0.06);
}
.rules-wrap {
    max-width: 980px;
    margin: 0 auto;
}
.rules-wrap h2 {
    text-align: center;
    margin: 0 0 18px;
    font-weight: 950;
    letter-spacing: -0.4px;
    color: #0f172a;
}
.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.rule-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(2, 6, 23, 0.1);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.08);
}
.rule-ico {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(2, 6, 23, 0.08);
}
.rule-ico svg {
    width: 22px;
    height: 22px;
}
.rule-ico-primary {
    background: rgba(14, 165, 163, 0.1);
    color: rgba(14, 165, 163, 1);
}
.rule-ico-coral {
    background: rgba(242, 123, 91, 0.12);
    color: rgba(242, 123, 91, 1);
}
.rule-ico-gold {
    background: rgba(247, 208, 70, 0.16);
    color: rgba(180, 120, 0, 1);
}

.rule-card h3 {
    margin: 0 0 6px;
    font-weight: 950;
    color: #0f172a;
}
.rule-card p {
    margin: 0;
    color: rgba(100, 116, 139, 0.95);
    font-weight: 750;
    line-height: 1.6;
    font-size: 13px;
}
@media (max-width: 900px) {
    .rules-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   AUDITION PAGE
========================= */

.audition-hero {
    position: relative;
    background: linear-gradient(
        90deg,
        rgba(14, 165, 163, 0.96),
        rgba(11, 27, 49, 0.9),
        rgba(242, 123, 91, 0.94)
    );
    overflow: hidden;
}
.audition-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(255, 255, 255, 0.28) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
}
.audition-hero-inner {
    padding: 46px 0;
    position: relative;
    z-index: 2;
}
.audition-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.audition-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    margin-bottom: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.92);
}
.audition-pill svg {
    width: 16px;
    height: 16px;
    color: #f7d046;
}

.audition-hero-content h1 {
    margin: 0 0 10px;
    font-weight: 950;
    letter-spacing: -1px;
    font-size: clamp(34px, 4.6vw, 58px);
}
.audition-hero-sub {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 750;
    font-size: clamp(16px, 2.1vw, 20px);
}

/* Layout */
.audition-wrap {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Glass cards (if you already have, it will match) */
.audition-card {
    padding: 18px;
    border-radius: 18px;
}

/* Titles */
.card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 950;
    color: #0f172a;
    letter-spacing: -0.3px;
    margin: 0 0 12px;
    font-size: 18px;
}
.card-title svg {
    width: 18px;
    height: 18px;
    color: rgba(14, 165, 163, 1);
}

.card-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 950;
    color: #0f172a;
    letter-spacing: -0.2px;
    margin: 0 0 14px;
    font-size: 16px;
}
.card-subtitle svg {
    width: 18px;
    height: 18px;
    color: rgba(14, 165, 163, 1);
}

/* Guidelines */
.guidelines {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(100, 116, 139, 0.95);
    font-weight: 750;
}
.guidelines .dot {
    color: rgba(14, 165, 163, 1);
    font-weight: 950;
    margin-right: 8px;
}

/* Form */
.audition-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
@media (max-width: 720px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Fields */
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-weight: 900;
    color: rgba(15, 23, 42, 0.92);
    font-size: 13px;
}
.req {
    color: rgba(242, 123, 91, 1);
}

.field input,
.field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(2, 6, 23, 0.1);
    background: rgba(255, 255, 255, 0.82);
    padding: 12px 12px;
    outline: none;
    font-weight: 750;
    color: #0f172a;
    transition: all 0.18s ease;
}
.field textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}
.field input:focus,
.field textarea:focus {
    border-color: rgba(14, 165, 163, 0.45);
    box-shadow: 0 0 0 4px rgba(14, 165, 163, 0.14);
}

.hint {
    margin: 0;
    font-size: 12px;
    font-weight: 750;
    color: rgba(100, 116, 139, 0.95);
}

.field-error {
    display: none;
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    color: rgba(239, 68, 68, 1);
}
.field.is-invalid input,
.field.is-invalid textarea {
    border-color: rgba(239, 68, 68, 0.45);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}
.field.is-invalid .field-error {
    display: block;
}

/* Submit button (hero style) */
.btn-hero {
    width: 100%;
    border: none;
    cursor: pointer;
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 950;
    letter-spacing: -0.2px;
    color: #0f172a;
    background: linear-gradient(
        135deg,
        rgba(247, 208, 70, 1),
        rgba(242, 123, 91, 1)
    );
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
}
.btn-hero:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
    box-shadow: 0 22px 55px rgba(2, 6, 23, 0.16);
}
.btn-hero:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.btn-hero svg {
    width: 18px;
    height: 18px;
}

/* Spinner */
.spinner {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(15, 23, 42, 0.25);
    border-top-color: rgba(15, 23, 42, 0.9);
    display: inline-block;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success screen */
.audition-success {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    padding: 30px 0;
}
.success-card {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(2, 6, 23, 0.1);
    border-radius: 20px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.14);
}
.success-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: rgba(14, 165, 163, 1);
    display: grid;
    place-items: center;
}
.success-icon svg {
    width: 42px;
    height: 42px;
    color: #fff;
}
.success-card h1 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.4px;
    color: #0f172a;
}
.success-card p {
    margin: 0 0 16px;
    color: rgba(100, 116, 139, 0.95);
    font-weight: 750;
    line-height: 1.7;
}

/* Outline button */
.btn-outline {
    border: 1px solid rgba(2, 6, 23, 0.12);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 900;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.18s ease;
}
.btn-outline:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.1);
}

/* Toast (reuse same toast style from vote page if you already added it) */
.toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: min(360px, calc(100% - 36px));
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(2, 6, 23, 0.1);
    border-radius: 16px;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.14);
    padding: 14px 14px;
    transform: translateY(14px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.22s ease;
}
.toast.is-show {
    opacity: 1;
    transform: translateY(0);
}
.toast-title {
    font-weight: 950;
    color: #0f172a;
    margin-bottom: 4px;
}
.toast-desc {
    color: rgba(100, 116, 139, 0.95);
    font-weight: 750;
    line-height: 1.5;
}

/* =========================
   AUTH PAGE
========================= */
.auth-page {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    padding: 26px 0 56px;
}
.auth-wrap {
    max-width: 520px;
    margin: 0 auto;
}
.auth-header {
    text-align: center;
    margin-bottom: 16px;
}
.auth-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(14, 165, 163, 1),
        rgba(242, 123, 91, 1)
    );
    display: grid;
    place-items: center;
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.14);
}
.auth-logo svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.auth-header h1 {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.4px;
    color: #0f172a;
}
.auth-header p {
    margin: 0;
    font-weight: 750;
    color: rgba(100, 116, 139, 0.95);
}

.auth-card {
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.14);
}

/* Tabs */
.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.auth-tab {
    border: 1px solid rgba(2, 6, 23, 0.1);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 950;
    color: rgba(100, 116, 139, 0.98);
    transition: all 0.18s ease;
}
.auth-tab svg {
    width: 16px;
    height: 16px;
}
.auth-tab:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.1);
}
.auth-tab.is-active {
    background: rgba(14, 165, 163, 1);
    border-color: rgba(14, 165, 163, 1);
    color: #fff;
    box-shadow: 0 18px 44px rgba(14, 165, 163, 0.22);
}
.auth-tab.is-active svg {
    color: #fff;
}

/* Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.auth-panel {
    padding: 6px 2px 2px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.field label {
    font-weight: 900;
    color: rgba(15, 23, 42, 0.92);
    font-size: 13px;
}

.control {
    position: relative;
    display: flex;
    align-items: center;
}
.control.has-icon i[data-lucide] {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    color: rgba(100, 116, 139, 0.85);
}
.control input {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(2, 6, 23, 0.1);
    background: rgba(255, 255, 255, 0.82);
    padding: 12px 12px 12px 38px;
    outline: none;
    font-weight: 750;
    color: #0f172a;
    transition: all 0.18s ease;
}
.control.has-action input {
    padding-right: 44px;
}

.control input:focus {
    border-color: rgba(14, 165, 163, 0.45);
    box-shadow: 0 0 0 4px rgba(14, 165, 163, 0.14);
}

.icon-btn {
    position: absolute;
    right: 8px;
    height: 34px;
    width: 34px;
    border-radius: 12px;
    border: 1px solid rgba(2, 6, 23, 0.1);
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.18s ease;
}
.icon-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(2, 6, 23, 0.1);
}
.icon-btn svg {
    width: 16px;
    height: 16px;
    color: rgba(100, 116, 139, 0.95);
}

.field-error {
    display: none;
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    color: rgba(239, 68, 68, 1);
}
.field.is-invalid input {
    border-color: rgba(239, 68, 68, 0.45);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}
.field.is-invalid .field-error {
    display: block;
}

.auth-foot {
    padding-top: 10px;
    text-align: center;
}
.auth-link {
    color: rgba(14, 165, 163, 1);
    font-weight: 900;
    text-decoration: none;
}
.auth-link:hover {
    text-decoration: underline;
}

.auth-legal {
    margin: 14px 0 0;
    text-align: center;
    font-size: 12px;
    color: rgba(100, 116, 139, 0.95);
    font-weight: 750;
}
.auth-legal a {
    margin: 0 4px;
}

/* Hero button + spinner reused (if you already have them, keep one copy) */
.btn-hero {
    width: 100%;
    border: none;
    cursor: pointer;
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 950;
    letter-spacing: -0.2px;
    color: #0f172a;
    background: linear-gradient(
        135deg,
        rgba(247, 208, 70, 1),
        rgba(242, 123, 91, 1)
    );
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
}
.btn-hero:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
    box-shadow: 0 22px 55px rgba(2, 6, 23, 0.16);
}
.btn-hero:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.spinner {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(15, 23, 42, 0.25);
    border-top-color: rgba(15, 23, 42, 0.9);
    display: inline-block;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Toast (reuse same toast style you already added) */
.toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: min(360px, calc(100% - 36px));
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(2, 6, 23, 0.1);
    border-radius: 16px;
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.14);
    padding: 14px 14px;
    transform: translateY(14px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.22s ease;
}
.toast.is-show {
    opacity: 1;
    transform: translateY(0);
}
.toast-title {
    font-weight: 950;
    color: #0f172a;
    margin-bottom: 4px;
}
.toast-desc {
    color: rgba(100, 116, 139, 0.95);
    font-weight: 750;
    line-height: 1.5;
}

/* =========================
   REVAMP 2026 THEME
   Primary: #14aedb
   ========================= */
:root {
    --primary: #14aedb;
    --primary-strong: #0c7fa3;
    --primary-soft: #bfe9f7;
    --accent: #ff7a59;
    --accent-2: #ffb347;
    --ink: #0b172a;
    --ink-2: #14263a;
    --muted: #5c6d7c;
    --bg: #f4f9fc;
    --card: #ffffff;
    --border: rgba(11, 23, 42, 0.08);
    --shadow: 0 20px 45px rgba(9, 18, 32, 0.12);
    --shadow-soft: 0 12px 30px rgba(9, 18, 32, 0.08);
    --radius: 22px;
    --font-body: "Manrope", "Segoe UI", Tahoma, sans-serif;
    --font-display: "Space Grotesk", "Segoe UI", Tahoma, sans-serif;
}

* {
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(1200px 800px at 10% -10%, rgba(20, 174, 219, 0.18), transparent 60%),
        radial-gradient(900px 700px at 90% 10%, rgba(255, 180, 71, 0.2), transparent 55%),
        #f5f9fc;
    color: var(--ink);
}

h1,
h2,
h3,
.brand-name,
.hero-title,
.lb-title,
.about-hero-card h1,
.contest-hero-content h1,
.vote-hero-content h1,
.audition-hero-content h1 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

a {
    transition: color 0.2s ease, opacity 0.2s ease;
}

.container {
    max-width: 1240px;
}

.page {
    padding-top: 76px;
}

/* ===== GLOBAL ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSlow {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(20, 174, 219, 0.35);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(20, 174, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(20, 174, 219, 0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(20, 174, 219, 0.2);
    box-shadow: 0 10px 30px rgba(9, 18, 32, 0.08);
}

.brand-badge {
    background: linear-gradient(135deg, var(--primary), #5dd6f7);
    box-shadow: 0 12px 24px rgba(20, 174, 219, 0.25);
}

.nav-links {
    background: rgba(20, 174, 219, 0.06);
    border: 1px solid rgba(20, 174, 219, 0.15);
}

.nav-link {
    color: #3f5565;
    font-weight: 700;
}

.nav-link:hover {
    background: rgba(20, 174, 219, 0.15);
    color: var(--ink);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
    box-shadow: 0 12px 25px rgba(20, 174, 219, 0.35);
}

.nav-toggle {
    border: 1px solid rgba(20, 174, 219, 0.25);
}

.mobile-menu {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(20, 174, 219, 0.2);
}

.mobile-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
}

/* ===== BUTTONS ===== */
.btn {
    border-radius: 16px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.btn-coral {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
}

.btn-coral:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(20, 174, 219, 0.35);
}

.btn-gold {
    background: linear-gradient(135deg, #ffb347, #ff7a59);
    color: #121820;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 122, 89, 0.35);
}

.btn-glass {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(12px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.28);
}

.btn-outline {
    border: 1px solid rgba(20, 174, 219, 0.35);
    color: var(--ink);
    background: rgba(20, 174, 219, 0.08);
}

.btn-outline:hover {
    background: rgba(20, 174, 219, 0.2);
}

.btn-vote,
.btn-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
    box-shadow: 0 14px 30px rgba(20, 174, 219, 0.35);
}

.btn-vote:hover,
.btn-hero:hover {
    transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    opacity: 0.9;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(7, 20, 36, 0.85), rgba(7, 20, 36, 0.45));
}

.hero-pattern {
    background-image:
        radial-gradient(circle at 20% 20%, rgba(20, 174, 219, 0.35), transparent 40%),
        radial-gradient(circle at 80% 10%, rgba(255, 180, 71, 0.3), transparent 45%);
    mix-blend-mode: screen;
}

.hero-content {
    animation: fadeUp 0.9s ease both;
}

.hero-pill {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
}

.hero-pill .dot {
    background: var(--primary);
    animation: pulseGlow 2.2s infinite;
}

.hero-title {
    font-size: clamp(42px, 6vw, 78px);
}

.hero-sub {
    color: #e6f7ff;
}

.hero-text {
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    gap: 20px;
}

.stat {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 14px 18px;
    backdrop-filter: blur(10px);
}

.scroll-indicator .mouse {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.wheel {
    background: var(--primary);
}

/* ===== SECTION HEADS ===== */
.section-head .h2,
.section-head h2,
.lb-h2 {
    letter-spacing: -0.02em;
}

.gradient-text,
.grad-word {
    background: linear-gradient(135deg, var(--primary), #5dd6f7);
    -webkit-background-clip: text;
    color: transparent;
}

.section {
    padding: 72px 0;
}

.section.muted,
.section-muted {
    background: rgba(20, 174, 219, 0.06);
}

/* ===== CARDS ===== */
.contest-card,
.phase-card,
.prize-card,
.value-card,
.timeline-card,
.show-card,
.audition-card,
.auth-card,
.rank-row,
.rule-card,
.podium-card,
.success-card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contest-card:hover,
.phase-card:hover,
.prize-card:hover,
.value-card:hover,
.timeline-card:hover,
.show-card:hover,
.audition-card:hover,
.rank-row:hover,
.rule-card:hover,
.podium-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(20, 174, 219, 0.25);
}

.card-media,
.media-placeholder {
    background: linear-gradient(135deg, rgba(20, 174, 219, 0.2), rgba(255, 180, 71, 0.2));
}

.media-placeholder svg,
.podium-avatar svg,
.rank-avatar svg,
.auth-logo svg {
    color: var(--primary);
}

.chip,
.spec-badge {
    background: rgba(20, 174, 219, 0.15);
    color: var(--primary-strong);
    border: 1px solid rgba(20, 174, 219, 0.35);
}

.rank-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
}

.rank-1,
.rank-2,
.rank-3,
.rank-n {
    color: #fff;
}

.card-bio,
.phase-desc,
.subtext,
.footer-text,
.footer-meta,
.rank-meta,
.vote-hero-sub,
.audition-hero-sub {
    color: var(--muted);
}

/* ===== PRIZES / CTA ===== */
.prizes,
.cta,
.cta-panel {
    background: linear-gradient(135deg, #0b172a, #0c2d42);
    color: #fff;
}

.prize-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.prize-card.featured {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transform: translateY(-8px);
}

.cta-inner h2,
.section-head.white .h2,
.section-head.white .subtext {
    color: #fff;
}

/* ===== FOOTER ===== */
.footer {
    background: #0b172a;
    color: rgba(255, 255, 255, 0.82);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: #fff;
}

.social {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== FORMS ===== */
.field input,
.field textarea,
.control input {
    border-radius: 14px;
    border: 1px solid rgba(20, 174, 219, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.field input:focus,
.field textarea:focus,
.control input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(20, 174, 219, 0.18);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(20, 174, 219, 0.18);
    backdrop-filter: blur(10px);
}

.auth-tabs {
    background: rgba(20, 174, 219, 0.08);
    border: 1px solid rgba(20, 174, 219, 0.2);
}

.auth-tab.is-active {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
}

.icon-btn {
    border: 1px solid rgba(20, 174, 219, 0.2);
}

/* ===== PAGE HERO VARIANTS ===== */
.lb-hero,
.about-hero,
.contest-hero,
.vote-hero,
.audition-hero {
    background: linear-gradient(135deg, rgba(20, 174, 219, 0.15), rgba(255, 180, 71, 0.12));
    position: relative;
    overflow: hidden;
}

.lb-hero::after,
.about-hero::after,
.contest-hero::after,
.vote-hero::after,
.audition-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(20, 174, 219, 0.2), transparent 45%);
    pointer-events: none;
}

.lb-pill,
.vote-pill,
.audition-pill {
    background: rgba(20, 174, 219, 0.12);
    border: 1px solid rgba(20, 174, 219, 0.25);
    color: var(--primary-strong);
}

/* ===== FILTER BAR ===== */
.contest-filterbar {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(20, 174, 219, 0.2);
    box-shadow: 0 10px 30px rgba(9, 18, 32, 0.08);
}

.searchbox input {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(20, 174, 219, 0.25);
}

.searchbox input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(20, 174, 219, 0.18);
}

.pill {
    border: 1px solid rgba(20, 174, 219, 0.2);
}

.pill.is-active {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #fff;
}

/* ===== GRIDS ===== */
.card-grid,
.prize-grid,
.phase-grid,
.podium,
.rank-list,
.vote-grid,
.contest-grid,
.rules-grid,
.show-grid,
.about-values {
    gap: 24px;
}

.card-grid,
.vote-grid,
.contest-grid,
.rules-grid,
.show-grid,
.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.prize-grid,
.phase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.podium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: end;
}

.rank-list {
    display: grid;
    grid-template-columns: 1fr;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

/* ===== TOAST ===== */
.toast {
    border: 1px solid rgba(20, 174, 219, 0.2);
    box-shadow: var(--shadow);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .nav-links {
        padding: 4px;
    }
}

@media (max-width: 720px) {
    .hero-title {
        font-size: clamp(36px, 10vw, 54px);
    }
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
    }
    .stat {
        width: 100%;
    }
    .section {
        padding: 56px 0;
    }
    .filterbar-inner {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .btn {
        width: 100%;
    }
    .nav-inner {
        height: auto;
        padding: 10px 0;
    }
    .hero-pill {
        font-size: 12px;
    }
}
