/* ============================================================
   GABON POWER - DESIGN SYSTEM COMPLET (MASTER VERSION)
   ============================================================ */

:root {
    --header-bg: #1a202c;
    --bg-page: #f8fafc;
    --white: #ffffff;
    --gp-yellow: #ffcc00;
    --live-red: #ff3b30;
    --success: #198754;
    --danger: #dc3545;
    --text-main: #1a202c;
    --text-muted: #718096;
    --confirm-blue: #1877f2;
    --border: #e2e8f0;
    --shadow-pro: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 16px;
    --header-height: 70px;
}

/* --- Reset & Base --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    background-color: var(--bg-page); 
    font-family: 'Poppins', sans-serif; 
    color: var(--text-main); 
    line-height: 1.6; 
    overflow-x: hidden;
}

/* ============================================================
   1. HEADER & NAVIGATION (AVEC MENU HAMBURGER)
   ============================================================ */
.site-header {
    width: 100%;
    z-index: 9999;
    background: var(--header-bg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.sticky-header { position: sticky; top: 0; }

.header-top {
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img { height: 45px; width: auto; display: block; transition: 0.3s; }

/* Bouton Hamburger */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
}
.hamburger-box { width: 24px; height: 18px; display: inline-block; position: relative; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 24px; height: 2px; background-color: #fff; position: absolute; border-radius: 4px; transition: all 0.3s ease;
}
.hamburger-inner { top: 50%; transform: translateY(-50%); }
.hamburger-inner::before { content: ""; top: -8px; }
.hamburger-inner::after { content: ""; bottom: -8px; }

/* Navigation Desktop */
.nav-list { list-style: none; display: flex; gap: 30px; }
.nav-list li a {
    color: #fff; text-decoration: none; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.8px; padding: 8px 0;
    position: relative; transition: 0.3s;
}
.nav-list li a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gp-yellow); transition: 0.3s;
}
.nav-list li a:hover, .nav-list li.current-menu-item a { color: var(--gp-yellow); }
.nav-list li a:hover::after, .nav-list li.current-menu-item a::after { width: 100%; }

/* --- Flash Info Ticker --- */
.flash-info-container { background: #111; height: 38px; display: flex; align-items: center; overflow: hidden; }
.flash-label {
    background: var(--live-red); color: #fff; font-size: 10px; font-weight: 900;
    padding: 0 15px; height: 100%; display: flex; align-items: center; z-index: 10;
    position: relative; box-shadow: 10px 0 20px rgba(0,0,0,0.5); letter-spacing: 1px;
}
.ticker-move { display: inline-block; white-space: nowrap; padding-left: 100%; animation: ticker-animation linear infinite; }
.ticker-move:hover { animation-play-state: paused; }
.ticker-item { display: inline-block; padding-right: 50px; color: #fff; font-size: 13px; font-weight: 500; }
@keyframes ticker-animation { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-100%, 0, 0); } }

/* ============================================================
   2. PAGE D'ACCUEIL (HERO, BARRE DE RECHERCHE, STATUT)
   ============================================================ */
.home-hero-summary {
    background: blue;
    color: white; padding: 40px 20px; border-radius: 24px; margin: 20px auto 30px;
    max-width: 1160px; text-align: center; box-shadow: var(--shadow-pro);
}
.hero-stats-box { display: flex; justify-content: center; gap: 40px; margin-top: 25px; }
.hero-stat-item strong { display: block; font-size: 32px; color: var(--gp-yellow); }

.status-action-bar { display: flex; justify-content: center; gap: 12px; margin-bottom: 30px; }
.global-status-badge { padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 700; color: #fff; }
.global-status-badge.has-outages { background: var(--danger); }
.global-status-badge.all-good { background: var(--success); }

/* --- BARRE DE RECHERCHE (GÉANTE) --- */
.search-wrapper { 
    max-width: 850px; 
    margin: 0 auto 50px; 
    padding: 0 20px; 
}
#districtSearch {
    width: 100%; padding: 22px 35px; border-radius: 50px; border: 2px solid var(--border);
    font-size: 18px; font-weight: 500; box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    outline: none; transition: all 0.3s ease; background-color: #ffffff;
}
#districtSearch:focus { border-color: var(--gp-yellow); box-shadow: 0 15px 30px rgba(255, 204, 0, 0.15); transform: translateY(-2px); }

/* ============================================================
   3. GRILLE DES SIGNALEMENTS (GAP 35PX)
   ============================================================ */
.districts-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 35px; padding: 20px; max-width: 1200px; margin: 0 auto; }

.district-card {
    background: var(--white) !important; border-radius: 18px; padding: 24px;
    box-shadow: var(--shadow-pro); border: 1px solid var(--border); display: flex;
    flex-direction: column; transition: 0.3s;
}
.district-card:hover { transform: translateY(-6px); }

.card-body { display: flex; justify-content: space-between; margin-bottom: 12px; }

.confirm-btn, .btn-power-back {
    width: 100%; padding: 12px; border-radius: 12px; font-size: 13px; font-weight: 700;
    cursor: pointer; transition: 0.2s; border: 1px solid var(--border); text-align: center;
}
.confirm-btn { background: #f1f5f9; color: #4a5568; }
.confirm-btn.voted { background: #e7f3ff; color: var(--confirm-blue); border-color: #d1e3fa; cursor: default; }
.btn-power-back { background: #22c55e; color: #fff; border: none; box-shadow: 0 4px 10px rgba(34, 197, 94, 0.2); }
.btn-power-back:hover { background: #16a34a; transform: translateY(-2px); }

/* ============================================================
   4. OBSERVATOIRE & STATISTIQUES
   ============================================================ */
.obs-summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-bottom: 40px; }
.obs-card { background: #fff; border-radius: 20px; padding: 30px; border: 1px solid var(--border); box-shadow: var(--shadow-pro); }
.shock-box { background: var(--header-bg); color: #fff; display: flex; align-items: center; gap: 20px; }
.shock-value { font-size: 48px; font-weight: 900; color: var(--gp-yellow); }

/* ============================================================
   5. MOBILE & HAMBURGER DRAWER
   ============================================================ */
.nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); display: none; z-index: 9999; backdrop-filter: blur(3px);
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    
    .header-menu {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px;
        height: 100vh; background: var(--header-bg); padding: 80px 30px;
        transition: right 0.4s cubic-bezier(0.77,0.2,0.05,1.0); z-index: 10000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .site-header.nav-open .header-menu { right: 0; }
    .site-header.nav-open .nav-overlay { display: block; }
    .site-header.nav-open .hamburger-inner { background-color: transparent; }
    .site-header.nav-open .hamburger-inner::before { transform: translateY(8px) rotate(45deg); }
    .site-header.nav-open .hamburger-inner::after { transform: translateY(-8px) rotate(-45deg); }

    .nav-list { flex-direction: column; gap: 25px; }
    .nav-list li a { font-size: 18px; }

    .districts-cards { grid-template-columns: 1fr; gap: 30px; }
    .home-hero-summary h1 { font-size: 22px; }
    .hero-stats-box { gap: 20px; }
    .hero-stat-item strong { font-size: 26px; }

    /* Ajustement recherche mobile */
    #districtSearch { padding: 18px 25px; font-size: 16px; }
}

/* ============================================================
   6. UTILS (FAB, BADGES, MAP)
   ============================================================ */
.mobile-report-fab {
    position: fixed; bottom: 30px; right: 25px; width: 65px; height: 65px;
    background: var(--gp-yellow); border-radius: 50%; display: flex;
    align-items: center; justify-content: center; z-index: 9998;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3); font-size: 28px; text-decoration: none;
}

.status-badge { padding: 5px 12px; border-radius: 20px; font-size: 10px; font-weight: 800; color: #fff !important; text-transform: uppercase; }
.status-electricity { background: var(--success); }
.status-outage { background: var(--danger); }

#gp-map-live { height: 500px; width: 100%; border-radius: 20px; overflow: hidden; }
/* ==========================================
   PUBLICITÉ HORIZONTALE RESPONSIVE
   ========================================== */
.ad-slot-horizontal {
    width: 100%;
    max-width: 1160px; /* Aligné sur ton Hero */
    margin: 0 auto 35px;
    padding: 0 20px; /* Marge de sécurité sur les côtés sur mobile */
    box-sizing: border-box;
    text-align: center;
}

.ad-slot-horizontal a {
    display: inline-block;
    width: 100%;
}

.ad-slot-horizontal img {
    /* --- FORCE LE RESPONSIVE --- */
    max-width: 100% !important; /* L'image ne dépasse jamais la largeur de l'écran */
    height: auto !important;    /* L'image garde ses proportions sans être écrasée */
    
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Ajustement pour les très petits écrans */
@media (max-width: 480px) {
    .ad-slot-horizontal {
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .ad-slot-horizontal small {
        font-size: 9px;
        margin-bottom: 3px;
    }
}
/* ==========================================
   DESIGN PLANNING SEEG (RESTAURATION)
   ========================================== */
.planning-pro-page { background-color: #f8fafc; padding-bottom: 60px; }

.planning-hero-dark {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white; text-align: center; padding: 60px 20px; margin-bottom: 50px;
}

.planning-search-container { max-width: 700px; margin: -30px auto 40px; padding: 0 20px; }
.search-box-pro input {
    width: 100%; padding: 18px 25px; border-radius: 50px; border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); font-size: 16px; outline: none;
}

/* Timeline Cards */
.planning-timeline { max-width: 850px; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; gap: 20px; }

.time-card {
    background: #fff; border-radius: 20px; display: flex; overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #edf2f7; transition: transform 0.2s;
}

/* --- LE STYLE ROUGE (ÉTAT ACTIF) --- */
.time-card.is-active {
    border: 2px solid #ef4444; /* Surlignage rouge */
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15);
    transform: scale(1.02);
}

.time-card.is-active .time-card-side { background: #fee2e2; border-right: 1px solid #fecaca; }
.time-card.is-active .t-start { color: #b91c1c; }

/* Côté Gauche (Heure) */
.time-card-side { background: #f8fafc; padding: 25px; min-width: 130px; display: flex; align-items: center; justify-content: center; border-right: 1px solid #edf2f7; }
.time-bubble { text-align: center; display: flex; flex-direction: column; }
.t-start { font-size: 22px; font-weight: 800; color: #1a202c; }
.t-divider { height: 2px; width: 20px; background: #cbd5e0; margin: 8px auto; }
.t-end { font-size: 14px; font-weight: 600; color: #718096; }

/* Côté Droit (Contenu) */
.time-card-content { padding: 25px; flex-grow: 1; }
.content-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

.badge-live {
    background: #ef4444; color: white; font-size: 10px; font-weight: 800; padding: 4px 12px; border-radius: 50px;
    animation: blink-red 1.5s infinite;
}
@keyframes blink-red { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

.badge-future { background: #edf2f7; color: #4a5568; font-size: 10px; font-weight: 800; padding: 4px 12px; border-radius: 50px; }
.label-zones { font-size: 11px; color: #a0aec0; text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; }
.neighborhoods-list { font-size: 15px; line-height: 1.6; color: #2d3748; font-weight: 500; }

/* Mobile */
@media (max-width: 600px) {
    .time-card { flex-direction: column; }
    .time-card-side { padding: 15px; border-right: none; border-bottom: 1px solid #edf2f7; }
    .time-bubble { flex-direction: row; gap: 10px; }
    .t-divider { width: 15px; height: 2px; margin: 0; }
}
/* ==========================================
   CORRECTION HERO BACKGROUND (BLEU NUIT)
   ========================================== */
.home-hero-summary {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%) !important; /* Force le bleu nuit */
    color: white !important;
    padding: 40px 20px;
    border-radius: 24px;
    margin: 20px auto 30px;
    max-width: 1160px;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.home-hero-summary h1, 
.home-hero-summary p {
    color: #ffffff !important;
}

/* ==========================================
   SECTION DERNIERS ARTICLES
   ========================================== */
.home-articles-section {
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header h2 { font-size: 22px; font-weight: 800; color: #1a202c; }
.section-header .view-all { color: #1877f2; text-decoration: none; font-weight: 700; font-size: 14px; }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.post-card-mini {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.post-card-mini:hover { transform: translateY(-5px); }

.post-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.post-content { padding: 20px; }
.post-content h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.3; }
.post-content h3 a { color: #1a202c; text-decoration: none; font-weight: 800; }
.post-content p { font-size: 14px; color: #718096; line-height: 1.5; }

@media (max-width: 768px) {
    .articles-grid { grid-template-columns: 1fr; }
}
/* ==========================================
   DYNAMIC ARTICLES SECTION (COMMAND CENTER STYLE)
   ========================================== */
.home-articles-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.section-header-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header-pro h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.yellow-dash {
    width: 8px;
    height: 24px;
    background: var(--gp-yellow);
    display: inline-block;
    margin-right: 12px;
    border-radius: 4px;
}

.btn-view-all {
    background: #f1f5f9;
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.btn-view-all:hover {
    background: var(--gp-yellow);
}

/* Grille alignée sur les quartiers (35px gap) */
.articles-dynamic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.news-card {
    background: #ffffff !important;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-pro);
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 40px -15px rgba(0,0,0,0.12);
}

/* Image avec Badge */
.news-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.08);
}

.news-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gp-yellow);
    color: #1a202c;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Contenu textuel */
.news-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
}

.news-body h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-body h3 a {
    color: var(--text-main);
    text-decoration: none;
}

.news-body p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.news-read-link {
    color: #1877f2;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-read-link .arrow {
    transition: transform 0.3s ease;
}

.news-read-link:hover .arrow {
    transform: translateX(5px);
}

/* Placeholder si pas d'image */
.news-placeholder {
    width: 100%;
    height: 100%;
    background: var(--dark-hero);
    color: var(--gp-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

@media (max-width: 768px) {
    .articles-dynamic-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* ==========================================
   DESIGN DES CARTES ARTICLES (UNIFIÉ)
   ========================================== */
.home-articles-section {
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.section-header-pro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header-pro h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
}

.btn-view-all {
    color: var(--confirm-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

/* Style spécifique pour la carte article */
.article-pro-card {
    padding: 0 !important; /* On enlève le padding pour que l'image colle aux bords en haut */
    overflow: hidden;
}

.article-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f1f5f9;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-pro-card:hover .article-card-image img {
    transform: scale(1.08);
}

/* Ajustement des textes internes (car on a enlevé le padding de la carte) */
.article-pro-card .card-header,
.article-pro-card .card-body,
.article-pro-card .card-footer-confirm {
    padding-left: 20px;
    padding-right: 20px;
}

.article-pro-card .card-header {
    margin-top: 15px;
}

.article-date {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.article-card-title {
    font-size: 18px !important;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.3;
    margin: 0;
}

/* Style du bouton "Lire l'article" */
.article-read-btn {
    display: block;
    text-decoration: none;
    background: #f1f5f9;
    color: var(--text-main) !important;
    text-align: center;
    margin-bottom: 20px;
}

.article-read-btn:hover {
    background: var(--gp-yellow);
    border-color: var(--gp-yellow);
}

.news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-hero);
    color: var(--gp-yellow);
    font-weight: 800;
}

@media (max-width: 768px) {
    .home-articles-section {
        margin-top: 50px;
    }
}
/* ==========================================
   CORRECTION PODIUM DE LA GALÈRE (COMPACT & VISIBLE)
   ========================================== */
.battle-section {
    max-width: 1160px;
    margin: 0 auto 30px; /* Espace réduit sous la section */
    padding: 0 15px;
}

.battle-card {
    background: #1a202c; /* Fond sombre garanti pour le contraste */
    border-radius: 20px;
    padding: 20px 15px; /* Padding réduit */
    color: white;
    text-align: center;
    box-shadow: var(--shadow-pro);
}

.battle-card h3 { 
    color: var(--gp-yellow); 
    font-size: 20px; 
    font-weight: 800; 
    margin-bottom: 5px; 
}

.battle-card p { 
    font-size: 12px; 
    color: #a0aec0; 
    margin-bottom: 20px; /* Espace réduit avant les barres */
}

.podium-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px; /* Espace réduit entre les colonnes */
    height: 130px; /* Hauteur totale réduite pour compacité */
    margin-bottom: 20px;
}

.podium-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 32%;
    max-width: 100px;
}

.podium-bar {
    width: 100%;
    border-radius: 8px 8px 4px 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.podium-count { 
    font-weight: 900; 
    font-size: 16px; 
    color: rgba(0,0,0,0.8); /* Chiffre sombre sur barre claire pour lisibilité */
}

.podium-name { 
    margin-top: 8px; 
    font-size: 11px; 
    font-weight: 700; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    width: 100%; 
    text-transform: uppercase;
}

/* --- COULEURS ET HAUTEURS PAR RANG --- */

/* 1er Place (Or) */
.rank-1 .podium-bar { height: 100%; background: #ffcc00; border: 2px solid #fff; }
.rank-1 .podium-name { color: #ffcc00; font-size: 12px; }

/* 2ème Place (Argent) */
.rank-2 .podium-bar { height: 70%; background: #e2e8f0; }
.rank-2 .podium-name { color: #e2e8f0; } /* Argenté/Gris clair visible */

/* 3ème Place (Bronze) */
.rank-3 .podium-bar { height: 45%; background: #ed8936; }
.rank-3 .podium-name { color: #ed8936; } /* Orangé/Bronze visible */

/* Mood Box compacte */
.mood-box {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}
.mood-box span { font-size: 11px; color: #718096; }
.mood-btns { display: flex; justify-content: center; gap: 15px; margin-top: 10px; }
.mood-btns button {
    background: rgba(255,255,255,0.05);
    border: none;
    font-size: 20px;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 400px) {
    .podium-container { height: 110px; }
    .podium-name { font-size: 9px; }
}