/* ============================================================
   Thời Tiết Hải Phòng — Bright & Fresh Theme
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

    /* Text */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;

    /* Accents */
    --accent-blue: #3b82f6;
    --accent-sky: #0ea5e9;
    --accent-teal: #14b8a6;
    --accent-green: #10b981;
    --accent-amber: #f59e0b;
    --accent-orange: #f97316;
    --accent-rose: #f43f5e;
    --accent-violet: #8b5cf6;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-bg-hover: rgba(255, 255, 255, 0.94);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-border-hover: rgba(255, 255, 255, 0.7);
    --glass-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --glass-shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.06);

    /* Shapes */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Night Mode ---------- */
body.night-mode {
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #64748b;
    --glass-bg: rgba(15, 23, 42, 0.88);
    --glass-bg-hover: rgba(15, 23, 42, 0.94);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.14);
    --glass-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --glass-shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-main); color: var(--text-primary); overflow-x: hidden; background: #e2e8f0; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.2); }

/* ============================================================
   Layout
   ============================================================ */
#map { position: fixed; inset: 0; z-index: 1; }

#weatherEffects { position: fixed; inset: 0; z-index: 3; pointer-events: none; }

.weather-overlay {
    position: fixed; top: 0; left: 0;
    width: 420px; height: 100vh;
    z-index: 10;
    overflow-y: auto; overflow-x: hidden;
    padding: 14px; display: flex; flex-direction: column; gap: 12px;
    background: transparent;
}

/* ============================================================
   Glass Card
   ============================================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    padding: 18px;
    transition: all var(--transition-smooth);
    animation: slideInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-1px);
}

/* Stagger entrance */
.glass-card:nth-child(1) { animation-delay: 0s; }
.glass-card:nth-child(2) { animation-delay: 0.06s; }
.glass-card:nth-child(3) { animation-delay: 0.12s; }
.glass-card:nth-child(4) { animation-delay: 0.18s; }
.glass-card:nth-child(5) { animation-delay: 0.24s; }
.glass-card:nth-child(6) { animation-delay: 0.30s; }
.glass-card:nth-child(7) { animation-delay: 0.36s; }

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

/* ============================================================
   Section Title
   ============================================================ */
.section-title {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 14px; padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-transform: uppercase; letter-spacing: 0.4px;
}
.section-title svg { color: var(--accent-sky); flex-shrink: 0; }
body.night-mode .section-title { border-bottom-color: rgba(255,255,255,0.06); }

/* ============================================================
   Header
   ============================================================ */
.header-card { padding: 14px 18px !important; }
.header-top { display: flex; justify-content: space-between; align-items: center; }
.header-left { display: flex; align-items: center; gap: 10px; }

.logo-icon-wrap {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(59,130,246,0.12));
    border-radius: 12px;
    animation: logoGlow 4s ease-in-out infinite;
}
@keyframes logoGlow {
    0%, 100% { box-shadow: 0 0 6px rgba(14,165,233,0.15); }
    50% { box-shadow: 0 0 18px rgba(14,165,233,0.3); }
}

.logo-title {
    font-size: 15px; font-weight: 800;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1.2;
}
.logo-subtitle { font-size: 10px; color: var(--text-tertiary); font-weight: 500; letter-spacing: 0.2px; }

.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }

.live-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 3px 10px;
    background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    font-size: 9px; font-weight: 700; color: var(--accent-green); letter-spacing: 1px;
}
.live-dot {
    width: 6px; height: 6px; background: var(--accent-green);
    border-radius: 50%; animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

.update-time { font-size: 10px; color: var(--text-tertiary); font-family: var(--font-mono); }

/* Social Media Bar */
.social-bar {
    display: flex; align-items: center; gap: 4px;
    margin-top: 12px; padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
    flex-wrap: wrap;
}
body.night-mode .social-bar { border-top-color: rgba(255,255,255,0.06); }

.social-link {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    color: #fff;
    transition: all var(--transition-fast);
    text-decoration: none;
    font-size: 0;
}
.social-link:hover { transform: translateY(-2px) scale(1.1); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

.social-facebook { background: #1877f2; }
.social-youtube { background: #ff0000; }
.social-tiktok { background: #010101; }
.social-linkedin { background: #0a66c2; }
.social-pinterest { background: #e60023; }
.social-tumblr { background: #36465d; }
.social-vimeo { background: #1ab7ea; }
.social-soundcloud { background: #ff5500; }
.social-spotify { background: #1db954; }

body.night-mode .social-tiktok { background: #25f4ee; color: #000; }

/* ============================================================
   Current Weather
   ============================================================ */
.current-main { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }

.current-temp-section { display: flex; flex-direction: column; align-items: center; min-width: 130px; }

.weather-icon-large { width: 74px; height: 74px; display: flex; align-items: center; justify-content: center; margin-bottom: 2px; }

.temp-display { display: flex; align-items: flex-start; line-height: 1; }
.temp-value {
    font-size: 54px; font-weight: 900; letter-spacing: -2px;
    background: linear-gradient(180deg, var(--text-primary) 30%, var(--text-secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.temp-unit { font-size: 20px; font-weight: 300; color: var(--text-secondary); margin-top: 8px; }

.feels-like { font-size: 11px; color: var(--text-tertiary); margin-top: 3px; }

.current-desc-section { flex: 1; display: flex; flex-direction: column; gap: 6px; }

.weather-condition { font-size: 17px; font-weight: 700; color: var(--accent-blue); }

.location-info {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px; color: var(--text-secondary);
}
.location-info svg { color: var(--accent-sky); flex-shrink: 0; }

.temp-range { display: flex; gap: 12px; font-size: 13px; font-weight: 600; }
.temp-high { color: var(--accent-orange); }
.temp-low { color: var(--accent-blue); }

/* Details Grid */
.weather-details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

.detail-item {
    display: flex; align-items: center; gap: 7px;
    padding: 9px 8px;
    background: rgba(0,0,0,0.025); border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all var(--transition-fast);
}
.detail-item:hover { background: rgba(0,0,0,0.05); transform: scale(1.02); }
body.night-mode .detail-item { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.05); }
body.night-mode .detail-item:hover { background: rgba(255,255,255,0.08); }

.detail-icon {
    width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; flex-shrink: 0;
}
.di-blue { background: rgba(59,130,246,0.1); color: var(--accent-blue); }
.di-teal { background: rgba(20,184,166,0.1); color: var(--accent-teal); }
.di-violet { background: rgba(139,92,246,0.1); color: var(--accent-violet); }
.di-sky { background: rgba(14,165,233,0.1); color: var(--accent-sky); }
.di-amber { background: rgba(245,158,11,0.1); color: var(--accent-amber); }
.di-rose { background: rgba(244,63,94,0.1); color: var(--accent-rose); }

.detail-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.detail-label { font-size: 9px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.3px; font-weight: 500; }
.detail-value { font-size: 12px; font-weight: 600; font-family: var(--font-mono); color: var(--text-primary); }

/* ============================================================
   Hourly Forecast
   ============================================================ */
.hourly-scroll {
    display: flex; gap: 6px;
    overflow-x: auto; padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.hourly-scroll::-webkit-scrollbar { display: none; }

.hourly-item {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    min-width: 54px; padding: 9px 5px;
    background: rgba(0,0,0,0.02); border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.03);
    scroll-snap-align: start; transition: all var(--transition-fast); cursor: default;
}
.hourly-item:hover { background: rgba(14,165,233,0.06); border-color: rgba(14,165,233,0.15); transform: translateY(-2px); }
.hourly-item.now { background: rgba(14,165,233,0.08); border-color: rgba(14,165,233,0.2); }
body.night-mode .hourly-item { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.04); }

.hourly-time { font-size: 10px; color: var(--text-tertiary); font-weight: 500; }
.hourly-item.now .hourly-time { color: var(--accent-sky); font-weight: 700; }
.hourly-icon { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; }
.hourly-temp { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.hourly-precip { font-size: 9px; color: var(--accent-blue); font-weight: 500; }

/* ============================================================
   Daily Forecast
   ============================================================ */
.daily-list { display: flex; flex-direction: column; gap: 5px; }

.daily-item {
    display: grid; grid-template-columns: 75px 30px 1fr 44px;
    align-items: center; gap: 8px;
    padding: 9px 10px;
    background: rgba(0,0,0,0.02); border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all var(--transition-fast); cursor: default;
}
.daily-item:hover { background: rgba(0,0,0,0.04); }
.daily-item.today { background: rgba(14,165,233,0.06); border-color: rgba(14,165,233,0.12); }
body.night-mode .daily-item { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.04); }

.daily-day { font-size: 12px; font-weight: 500; color: var(--text-primary); }
.daily-day small { display: block; font-size: 10px; color: var(--text-tertiary); font-weight: 400; }
.daily-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; }

.daily-temp-bar { display: flex; align-items: center; gap: 6px; font-size: 11px; }
.daily-temp-low { color: var(--accent-blue); font-weight: 500; min-width: 26px; text-align: right; font-family: var(--font-mono); }
.daily-temp-high { color: var(--accent-orange); font-weight: 500; min-width: 26px; font-family: var(--font-mono); }

.temp-bar-track { flex: 1; height: 5px; background: rgba(0,0,0,0.06); border-radius: 3px; overflow: hidden; position: relative; }
body.night-mode .temp-bar-track { background: rgba(255,255,255,0.08); }
.temp-bar-fill {
    position: absolute; height: 100%; border-radius: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-sky), var(--accent-amber), var(--accent-orange));
    transition: all 0.6s ease;
}

.daily-precip {
    font-size: 11px; color: var(--accent-blue); text-align: right; font-weight: 500;
    display: flex; align-items: center; gap: 2px; justify-content: flex-end;
}

/* ============================================================
   Sun Arc
   ============================================================ */
.sun-arc-container { display: flex; justify-content: center; margin-bottom: 4px; }
.sun-arc-svg { width: 100%; max-width: 240px; height: auto; }

.sun-times { display: flex; justify-content: space-around; }
.sun-time-item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.sun-time-label { font-size: 10px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.3px; }
.sun-time-value { font-size: 16px; font-weight: 700; font-family: var(--font-mono); }

/* ============================================================
   AQI
   ============================================================ */
.aqi-display { display: flex; gap: 16px; align-items: center; }

.aqi-gauge { position: relative; flex-shrink: 0; }
.aqi-gauge-svg { width: 130px; height: auto; }

.aqi-value-display { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); text-align: center; }
.aqi-number { font-size: 26px; font-weight: 800; font-family: var(--font-mono); display: block; line-height: 1; color: var(--accent-green); }
.aqi-label { font-size: 10px; color: var(--text-tertiary); display: block; margin-top: 1px; }

.aqi-details { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; flex: 1; }
.aqi-detail-item {
    padding: 7px 9px;
    background: rgba(0,0,0,0.025); border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.03);
}
body.night-mode .aqi-detail-item { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.05); }
.aqi-detail-label { font-size: 9px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.3px; display: block; }
.aqi-detail-value { font-size: 13px; font-weight: 600; font-family: var(--font-mono); display: block; margin-top: 1px; }

/* ============================================================
   About Card
   ============================================================ */
.about-text { font-size: 12px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 14px; }
.about-text strong { color: var(--accent-blue); font-weight: 700; }

.about-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.about-meta-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 11px; color: var(--text-secondary);
}
.about-meta-item svg { color: var(--accent-sky); flex-shrink: 0; }

.about-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.tag {
    padding: 3px 10px; border-radius: 20px;
    background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(59,130,246,0.08));
    border: 1px solid rgba(14,165,233,0.12);
    font-size: 10px; font-weight: 600; color: var(--accent-sky);
    transition: all var(--transition-fast);
}
.tag:hover { background: rgba(14,165,233,0.15); transform: scale(1.05); }

.about-links-title {
    font-size: 11px; font-weight: 600; color: var(--text-tertiary);
    text-transform: uppercase; letter-spacing: 0.3px;
    margin-bottom: 8px;
}
.links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.link-item {
    display: flex; align-items: center; gap: 6px;
    padding: 7px 10px; border-radius: var(--radius-sm);
    background: rgba(0,0,0,0.02); border: 1px solid rgba(0,0,0,0.03);
    font-size: 11px; font-weight: 500; color: var(--text-secondary);
    text-decoration: none; transition: all var(--transition-fast);
}
.link-item:hover { background: rgba(14,165,233,0.06); color: var(--accent-sky); border-color: rgba(14,165,233,0.15); }
.link-item svg { color: var(--accent-sky); flex-shrink: 0; }
body.night-mode .link-item { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.05); }

/* ============================================================
   Footer
   ============================================================ */
.weather-footer {
    text-align: center; padding: 16px 8px; font-size: 11px; color: var(--text-tertiary); line-height: 1.8;
}
.footer-main { font-size: 12px; }
.footer-main strong { color: var(--text-secondary); }
.footer-sub { font-size: 9px; opacity: 0.7; }
.footer-sub a { color: var(--accent-sky); text-decoration: none; }

.footer-social {
    display: flex; justify-content: center; gap: 8px; margin-top: 8px;
}
.footer-social a {
    padding: 3px 10px; border-radius: 6px;
    background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.04);
    font-size: 10px; font-weight: 700; color: var(--text-tertiary);
    text-decoration: none; letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}
.footer-social a:hover { background: rgba(14,165,233,0.1); color: var(--accent-sky); }
body.night-mode .footer-social a { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.05); }

/* ============================================================
   Map Popup (dark on satellite)
   ============================================================ */
.map-weather-popup .leaflet-popup-content-wrapper {
    background: rgba(15, 23, 42, 0.92) !important; backdrop-filter: blur(14px);
    color: #fff; border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important;
    border: 1px solid rgba(255,255,255,0.1) !important; padding: 0 !important;
}
.map-weather-popup .leaflet-popup-content { margin: 0 !important; width: auto !important; }
.map-weather-popup .leaflet-popup-tip { background: rgba(15, 23, 42, 0.92) !important; border: 1px solid rgba(255,255,255,0.1); }

.popup-content { padding: 14px 18px; text-align: center; min-width: 170px; }
.popup-temp { font-size: 32px; font-weight: 800; font-family: var(--font-mono); color: #fff; line-height: 1; }
.popup-condition { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 4px; font-weight: 500; }
.popup-details { display: flex; gap: 14px; justify-content: center; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.08); }
.popup-detail { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.popup-detail-label { font-size: 8px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; }
.popup-detail-value { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); font-family: var(--font-mono); }

/* ============================================================
   Leaflet Overrides
   ============================================================ */
.leaflet-control-zoom { border: none !important; box-shadow: var(--glass-shadow) !important; border-radius: 12px !important; overflow: hidden; }
.leaflet-control-zoom a {
    background: var(--glass-bg) !important; backdrop-filter: blur(12px);
    color: var(--text-primary) !important;
    border: 1px solid var(--glass-border) !important;
    width: 34px !important; height: 34px !important; line-height: 34px !important; font-size: 16px !important;
    transition: all var(--transition-fast);
}
.leaflet-control-zoom a:hover { background: var(--glass-bg-hover) !important; }
.leaflet-control-zoom-in { border-radius: 12px 12px 0 0 !important; }
.leaflet-control-zoom-out { border-radius: 0 0 12px 12px !important; }

.leaflet-control-attribution {
    background: rgba(255,255,255,0.6) !important; backdrop-filter: blur(8px);
    color: var(--text-tertiary) !important; border-radius: 6px 0 0 0;
    font-size: 9px !important; padding: 2px 8px !important;
}
.leaflet-control-attribution a { color: var(--text-secondary) !important; }

/* ============================================================
   Weather Animations
   ============================================================ */
.weather-anim-sun { animation: rotateSun 20s linear infinite; }
@keyframes rotateSun { to { transform: rotate(360deg); } }

.weather-anim-cloud { animation: floatCloud 6s ease-in-out infinite; }
@keyframes floatCloud { 50% { transform: translateX(4px); } }

.weather-anim-rain { animation: rainDrop 0.8s linear infinite; }
@keyframes rainDrop { 0% { transform: translateY(-5px); opacity:0; } 50% { opacity:1; } 100% { transform: translateY(8px); opacity:0; } }

.weather-anim-snow { animation: snowFall 2s ease-in-out infinite; }
@keyframes snowFall { 0% { transform: translateY(-5px) rotate(0); opacity:0; } 50% { opacity:1; } 100% { transform: translateY(8px) rotate(180deg); opacity:0; } }

.weather-anim-thunder { animation: thunderFlash 3s ease-in-out infinite; }
@keyframes thunderFlash { 0%, 90%, 100% { opacity: 0.3; } 92%, 94% { opacity: 1; } }

/* Marker pulse */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(14,165,233,0.5); }
    50% { box-shadow: 0 0 22px rgba(14,165,233,0.8), 0 0 44px rgba(14,165,233,0.3); }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
    .weather-overlay {
        width: 100%; height: auto; position: relative;
        padding-bottom: 40px;
    }
    #map { height: 42vh; position: relative; }
    .weather-details-grid { grid-template-columns: repeat(2, 1fr); }
    .daily-item { grid-template-columns: 65px 26px 1fr 38px; }
    .aqi-display { flex-direction: column; }
    .links-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .weather-overlay { padding: 8px; gap: 8px; }
    .header-top { flex-direction: column; gap: 8px; align-items: flex-start; }
    .header-right { flex-direction: row; align-items: center; gap: 8px; width: 100%; justify-content: space-between; }
    .temp-value { font-size: 44px; }
    .current-main { flex-direction: column; text-align: center; }
    .current-desc-section { align-items: center; }
    .social-bar { justify-content: center; }
}
