:root {
    /* ==========================================================================
       Colores Oficiales GAMEA (Gobierno Autónomo Municipal de El Alto)
       Extraídos directamente de images/cmyk.png y elalto.gob.bo
       ========================================================================== */
    --gamea-magenta: #ed2986;        /* Color oficial Magenta */
    --gamea-magenta-dark: #b8125f;   /* Tono para sombras y estados hover */
    --gamea-magenta-glow: rgba(237, 41, 134, 0.42);

    --gamea-yellow: #f4b129;         /* Color oficial Amarillo / Sol Andino */
    --gamea-yellow-dark: #d99616;
    --gamea-yellow-glow: rgba(244, 177, 41, 0.4);

    --gamea-teal: #10928b;           /* Color oficial Verde Azulado / Teal */
    --gamea-teal-light: #16b3aa;
    --gamea-teal-glow: rgba(16, 146, 139, 0.4);

    --gamea-purple: #462f8c;         /* Color oficial Morado / Índigo Institucional */
    --gamea-purple-light: #6a4ec7;
    --gamea-purple-glow: rgba(70, 47, 140, 0.45);

    /* ==========================================================================
       Superficies y Fondos de Alto Contraste
       ========================================================================== */
    --bg-dark: #080c16;              /* Fondo oscuro base profundo */
    --bg-surface: #0f172a;           /* Superficie secundaria */
    --bg-card: rgba(17, 24, 43, 0.8);
    --bg-card-hover: rgba(24, 34, 60, 0.94);
    
    /* Asignación de Roles Semánticos */
    --primary: var(--gamea-magenta);
    --primary-glow: var(--gamea-magenta-glow);
    --secondary: var(--gamea-teal);
    --accent: var(--gamea-yellow);
    --institutional: var(--gamea-purple);
    
    /* Tipografía con estándares de contraste WCAG 2.1 AA / AAA */
    --text-main: #ffffff;            /* Máximo contraste (>15:1) */
    --text-muted: #cbd5e1;           /* Gris claro con ratio >8.5:1 (AAA) */
    --text-subtle: #94a3b8;          /* Gris intermedio para leyendas >4.8:1 (AA) */
    --text-on-yellow: #0b0f19;       /* Texto oscuro de alto contraste (>10:1 AAA) sobre amarillo */
    
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-hover: rgba(237, 41, 134, 0.45);
    
    /* Tipografía */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Radios y Sombras */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.45);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    padding-bottom: 86px; /* Espacio para que la barra sticky no solape el contenido */
}

/* ==========================================================================
   Cinta Superior Institucional GAMEA (4 Colores de Marca)
   ========================================================================== */
.gamea-top-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        90deg, 
        var(--gamea-magenta) 0%, 
        var(--gamea-yellow) 33%, 
        var(--gamea-teal) 66%, 
        var(--gamea-purple) 100%
    );
    z-index: 1002;
    box-shadow: 0 0 14px rgba(237, 41, 134, 0.5);
}

/* ==========================================================================
   Atmósfera y Orbes de Fondo con la Paleta GAMEA
   ========================================================================== */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
}

/* Orb 1: Magenta GAMEA */
.orb-1 {
    width: 420px;
    height: 420px;
    background: var(--gamea-magenta);
    top: -100px;
    left: -120px;
    opacity: 0.38;
}

/* Orb 2: Morado GAMEA */
.orb-2 {
    width: 520px;
    height: 520px;
    background: var(--gamea-purple);
    bottom: -180px;
    right: -120px;
    opacity: 0.45;
}

/* Orb 3: Teal GAMEA */
.orb-3 {
    width: 360px;
    height: 360px;
    background: var(--gamea-teal);
    top: 35%;
    left: 15%;
    opacity: 0.22;
}

/* Orb 4: Amarillo Cálido GAMEA */
.orb-4 {
    width: 340px;
    height: 340px;
    background: var(--gamea-yellow);
    top: 25%;
    right: 12%;
    opacity: 0.16;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header Institucional
   ========================================================================== */
.app-header {
    padding: 50px 0 35px;
    text-align: center;
    position: relative;
}

/* Badge Institucional GAMEA */
.institutional-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(70, 47, 140, 0.4);
    border: 1px solid rgba(244, 177, 41, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
}

.badge-sep {
    color: var(--gamea-yellow);
    font-size: 0.8rem;
}

.badge-tag {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--gamea-yellow);
}

.logos {
    margin-bottom: 8px;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 40%, #fef08a 85%, var(--gamea-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Indicador de Estado en Vivo (Teal Oficial GAMEA) */
.live-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 146, 139, 0.18);
    color: #2dd4bf;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.92rem;
    border: 1px solid rgba(16, 146, 139, 0.45);
    box-shadow: 0 0 18px rgba(16, 146, 139, 0.25);
}

.pulsing-dot {
    width: 10px;
    height: 10px;
    background-color: #2dd4bf;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.8); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(45, 212, 191, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); }
}

/* ==========================================================================
   Sección de Votación y Tarjetas de Platos
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Grid layout for dishes */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 64px;
}

/* Dish Card (Glassmorphism de alta definición) */
.dish-card {
    background: var(--bg-card);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: var(--shadow-glass);
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: var(--glass-border-hover);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(237, 41, 134, 0.22);
}

.dish-image-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #111827;
}

.dish-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dish-card:hover .dish-image {
    transform: scale(1.08);
}

.dish-content {
    padding: 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dish-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.3px;
}

.dish-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 26px;
    flex-grow: 1;
}

.dish-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Botón de Votación Primario (Magenta Oficial GAMEA) */
.btn-vote {
    background: linear-gradient(135deg, var(--gamea-magenta) 0%, var(--gamea-magenta-dark) 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.02rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 18px var(--gamea-magenta-glow);
    outline: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-vote:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 24px rgba(237, 41, 134, 0.6);
    background: linear-gradient(135deg, #f53f97 0%, var(--gamea-magenta) 100%);
}

.btn-vote:focus-visible {
    outline: 2px solid var(--gamea-yellow);
    outline-offset: 3px;
}

.btn-vote:active {
    transform: scale(0.96);
}

/* Efecto Ripple al votar */
.btn-vote::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160%;
    height: 160%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.btn-vote:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: transform 0s;
}

/* Contador de Votos en Tarjeta (Amarillo Cálido GAMEA - Alto Contraste AAA) */
.vote-count-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.vote-count {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gamea-yellow);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(244, 177, 41, 0.3);
    font-variant-numeric: tabular-nums;
}

.vote-count-change {
    position: absolute;
    top: -18px;
    right: 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--gamea-yellow);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(244, 177, 41, 0.6);
}

.vote-count-change.active {
    opacity: 1;
    transform: translateY(0);
    animation: floatUp 1s forwards;
}

@keyframes floatUp {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-24px); }
}

/* ==========================================================================
   Sección de Ranking y Posiciones en Tiempo Real
   ========================================================================== */
.results-section {
    background: linear-gradient(180deg, rgba(30, 24, 60, 0.75) 0%, rgba(13, 19, 35, 0.88) 100%);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    border: 1px solid rgba(70, 47, 140, 0.45);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 35px rgba(70, 47, 140, 0.2);
    margin-bottom: 64px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.results-header {
    text-align: center;
    margin-bottom: 36px;
}

.results-icon {
    font-size: 2.2rem;
    display: inline-block;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 8px rgba(244, 177, 41, 0.4));
}

.results-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 800;
}

.results-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.ranking-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.25s ease;
}

.ranking-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

/* Insignias de Podio */
.rank-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* 1er Lugar: Oro / Amarillo GAMEA */
.rank-badge-1 {
    background: linear-gradient(135deg, var(--gamea-yellow), #fbbf24);
    color: var(--text-on-yellow);
    box-shadow: 0 0 14px rgba(244, 177, 41, 0.55);
}

/* 2do Lugar: Verde Azulado / Teal GAMEA */
.rank-badge-2 {
    background: linear-gradient(135deg, var(--gamea-teal), var(--gamea-teal-light));
    color: #ffffff;
    box-shadow: 0 0 12px rgba(16, 146, 139, 0.5);
}

/* 3er Lugar: Magenta GAMEA */
.rank-badge-3 {
    background: linear-gradient(135deg, var(--gamea-magenta), #f43f5e);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(237, 41, 134, 0.5);
}

/* Otros Lugares: Morado / Índigo GAMEA */
.rank-badge-other {
    background: rgba(70, 47, 140, 0.45);
    border: 1px solid rgba(106, 78, 199, 0.45);
    color: #e2e8f0;
    font-size: 0.85rem;
}

.rank-name {
    width: 220px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.2px;
}

.rank-bar-container {
    flex-grow: 1;
    height: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.rank-bar {
    height: 100%;
    border-radius: 10px;
    width: 0%;
    transition: width 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Barras según Podio GAMEA */
.rank-bar.bar-1 {
    background: linear-gradient(90deg, #f4b129, #fbbf24);
    box-shadow: 0 0 16px rgba(244, 177, 41, 0.5);
}

.rank-bar.bar-2 {
    background: linear-gradient(90deg, #10928b, #2dd4bf);
    box-shadow: 0 0 14px rgba(16, 146, 139, 0.45);
}

.rank-bar.bar-3 {
    background: linear-gradient(90deg, #ed2986, #fb7185);
    box-shadow: 0 0 14px rgba(237, 41, 134, 0.45);
}

.rank-bar.bar-other {
    background: linear-gradient(90deg, #462f8c, #7c5ce8);
    box-shadow: 0 0 10px rgba(70, 47, 140, 0.35);
}

.rank-votes-container {
    width: 90px;
    text-align: right;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.rank-votes {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}

.rank-votes-label {
    font-size: 0.75rem;
    color: var(--text-subtle);
    font-weight: 600;
}

/* ==========================================================================
   Sticky Footer Countdown Bar
   ========================================================================== */
.sticky-countdown-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 12, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(237, 41, 134, 0.35);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.6), 0 -1px 12px rgba(237, 41, 134, 0.2);
    padding: 10px 0;
}

.sticky-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-info {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.sticky-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(237, 41, 134, 0.16);
    border: 1px solid rgba(237, 41, 134, 0.45);
    color: #ff6ca5;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sticky-badge.badge-completed {
    background: rgba(16, 146, 139, 0.2);
    border-color: rgba(16, 146, 139, 0.5);
    color: #2dd4bf;
}

.pulsing-clock {
    display: inline-block;
    animation: pulse-scale 1.8s infinite ease-in-out;
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

/* Marquesina Infinita */
.marquee-wrapper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
    display: flex;
    align-items: center;
    cursor: default;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    padding-right: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.marquee-content strong {
    color: var(--gamea-yellow);
    font-weight: 700;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sticky-timer-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.sticky-timer {
    display: flex;
    align-items: center;
    gap: 5px;
}

.timer-pill {
    background: rgba(20, 28, 48, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 4px 10px;
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.timer-num {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
}

.timer-unit {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-subtle);
}

/* Segundero Destacado en Magenta GAMEA */
.highlight-sec {
    border-color: rgba(237, 41, 134, 0.55);
    background: rgba(35, 20, 45, 0.92);
}

.highlight-sec .timer-num {
    color: var(--gamea-magenta);
    text-shadow: 0 0 12px var(--gamea-magenta-glow);
}

.highlight-sec .timer-unit {
    color: #ff70a6;
}

.timer-sep {
    color: rgba(237, 41, 134, 0.7);
    font-weight: 800;
    font-size: 1rem;
}

/* Botón de Votar en la Barra Sticky (Magenta GAMEA) */
.btn-sticky-vote {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 22px;
    background: linear-gradient(135deg, var(--gamea-magenta) 0%, var(--gamea-magenta-dark) 100%);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 999px;
    box-shadow: 0 4px 16px var(--gamea-magenta-glow);
    transition: all 0.25s ease;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-sticky-vote:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 22px rgba(237, 41, 134, 0.65);
    background: linear-gradient(135deg, #f53f97 0%, var(--gamea-magenta) 100%);
}

.btn-sticky-vote:focus-visible {
    outline: 2px solid var(--gamea-yellow);
    outline-offset: 2px;
}

/* ==========================================================================
   Footer Institucional
   ========================================================================== */
.app-footer {
    border-top: 1px solid var(--glass-border);
    padding: 44px 0 24px;
    text-align: center;
    color: var(--text-muted);
    background: rgba(8, 12, 22, 0.5);
    position: relative;
}

/* Píldoras con los 4 colores oficiales GAMEA en el pie */
.gamea-palette-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.palette-pill {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pill-magenta {
    background: var(--gamea-magenta);
    color: #ffffff;
}

.pill-yellow {
    background: var(--gamea-yellow);
    color: var(--text-on-yellow);
}

.pill-teal {
    background: var(--gamea-teal);
    color: #ffffff;
}

.pill-purple {
    background: var(--gamea-purple);
    color: #ffffff;
}

.footer-entities {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.footer-copy {
    font-size: 0.88rem;
    color: var(--text-subtle);
    margin-bottom: 8px;
}

.footer-domain a {
    color: var(--gamea-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.footer-domain a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(244, 177, 41, 0.6);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .marquee-content {
        font-size: 0.84rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 100px;
    }

    .main-title {
        font-size: 2.6rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .sticky-countdown-bar {
        padding: 8px 0;
    }

    .sticky-container {
        flex-direction: column;
        gap: 8px;
        padding: 0 12px;
    }

    .sticky-info {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
    }

    .sticky-badge {
        font-size: 0.74rem;
        padding: 3px 10px;
        flex-shrink: 0;
    }

    .marquee-wrapper {
        flex: 1;
        min-width: 0;
    }

    .marquee-content {
        font-size: 0.8rem;
        padding-right: 1.2rem;
    }

    .sticky-timer-wrapper {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }

    .timer-pill {
        padding: 3px 7px;
    }

    .timer-num {
        font-size: 1.05rem;
    }

    .btn-sticky-vote {
        padding: 7px 16px;
        font-size: 0.84rem;
    }
    
    .results-section {
        padding: 28px 20px;
    }
    
    .ranking-item {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .rank-name {
        width: calc(100% - 50px);
    }
    
    .rank-bar-container {
        width: 100%;
        order: 3;
    }
    
    .rank-votes-container {
        order: 2;
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 105px;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .badge-text {
        font-size: 0.72rem;
        letter-spacing: 1px;
    }

    .badge-tag {
        font-size: 0.72rem;
    }

    .marquee-content {
        font-size: 0.76rem;
        padding-right: 1rem;
    }

    .timer-pill {
        padding: 2px 6px;
    }

    .timer-num {
        font-size: 0.95rem;
    }

    .timer-unit {
        font-size: 0.6rem;
    }

    .timer-sep {
        font-size: 0.85rem;
    }

    .btn-sticky-vote {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}
