/* 
 * Стили для сайта МагнитБуря.РФ
 * 
 * Файл: assets/css/style.css
 * Версия: 1.0
 */

/* Переменные */
:root {
    --primary: #1a237e;
    --primary-light: #534bae;
    --primary-dark: #000051;
    --secondary: #ff6f00;
    --secondary-light: #ffa040;
    --secondary-dark: #c43e00;
    --alert-mild: #ffb74d;
    --alert-moderate: #ff9800;
    --alert-strong: #f44336;
    --alert-severe: #b71c1c;
    --text-light: #ffffff;
    --text-dark: #212121;
    --background-light: #f5f5f5;
    --background-dark: #263238;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-bg-dark: rgba(30, 30, 50, 0.85);
    --font-main: 'Roboto', Arial, sans-serif;
    --border-radius: 12px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    --transition-standard: all 0.3s ease;
}

/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--background-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}

/* Темная тема */
.dark-mode {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.dark-mode .card {
    background-color: var(--card-bg-dark);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
}

.dark-mode .header {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
}

.dark-mode .city-card {
    background-color: var(--card-bg-dark);
}

.dark-mode .nav-menu a {
    color: var(--text-light);
}

.dark-mode .section-title {
    color: var(--secondary-light);
}

.dark-mode .card-title {
    color: var(--secondary-light);
}

.dark-mode .info-item h3 {
    color: var(--secondary-light);
}

.dark-mode .city-detail-label {
    color: #aaa;
}

.dark-mode .probabilities-table table,
.dark-mode .hourly-forecast-table table,
.dark-mode .monthly-storms-table table {
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .probabilities-table th,
.dark-mode .hourly-forecast-table th,
.dark-mode .monthly-storms-table th {
    background-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .probabilities-table td,
.dark-mode .hourly-forecast-table td,
.dark-mode .monthly-storms-table td {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
.header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-light);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
}

.logo i {
    font-size: 30px;
    margin-right: 10px;
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-standard);
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-menu a i {
    margin-right: 5px;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-light);
}

.mode-toggle {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 20px;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition-standard);
}

.mode-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Главный баннер */
.hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1506936542231-b4ec0741c3ba?auto=format&fit=crop&w=1800&q=80') no-repeat center center;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 30, 0.7), rgba(0, 0, 30, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-standard);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    background-color: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Баннер города */
.city-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.city-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: 0;
}

.city-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 30, 0.5), rgba(0, 0, 30, 0.8));
    z-index: 1;
}

.city-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 20px;
}

.city-hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.city-hero-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.city-coord {
    display: flex;
    align-items: center;
    gap: 8px;
}

.city-coord i {
    color: var(--secondary);
}

.city-status .status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
}

.city-hero-kp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.city-hero-kp strong {
    font-size: 24px;
    color: var(--secondary);
}

/* Секции */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

/* Карточки */
.card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin-bottom: 30px;
    transition: var(--transition-standard);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.card-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 600;
}

/* Текущий статус магнитной бури */
.current-storm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.storm-indicator {
    display: flex;
    align-items: center;
}

.storm-status {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-light);
}

.status-calm {
    background-color: #4caf50;
}

.status-unstable {
    background-color: var(--alert-mild);
}

.status-storm-mild {
    background-color: var(--alert-moderate);
}

.status-storm-moderate {
    background-color: var(--alert-strong);
}

.status-storm-severe {
    background-color: var(--alert-severe);
}

.status-unknown {
    background-color: #607d8b;
}

.storm-details p {
    margin: 5px 0;
}

.storm-value {
    font-size: 24px;
    font-weight: 700;
}

/* Детали города */
.city-details-block {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: var(--border-radius);
}

.city-detail-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.city-detail-col {
    flex: 1;
    min-width: 250px;
}

.city-detail-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--primary);
}

.city-detail-col p {
    margin-bottom: 10px;
}

.dark-mode .city-detail-col h4 {
    color: var(--secondary-light);
}

/* Сетка городов */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.city-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: var(--transition-standard);
    cursor: pointer;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.city-card-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--text-light);
    padding: 15px;
    position: relative;
}

.city-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.city-coords {
    font-size: 14px;
    opacity: 0.8;
}

.city-card-body {
    padding: 20px;
}

.city-storm-status {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.city-storm-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 10px;
}

.city-storm-text {
    font-weight: 500;
}

.city-details {
    margin-top: 15px;
}

.city-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.city-detail-label {
    color: #666;
    font-size: 14px;
}

.city-detail-value {
    font-weight: 600;
}

/* Контейнеры для графиков */
.chart-container {
    height: 300px;
    margin-top: 20px;
    position: relative;
}

/* Шкала Kp индекса */
.kp-scale {
    display: flex;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.kp-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.kp-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 8px;
}

.kp-1 { background-color: #4caf50; }
.kp-3 { background-color: #8bc34a; }
.kp-5 { background-color: #ffc107; }
.kp-7 { background-color: #ff5722; }
.kp-9 { background-color: #9c27b0; }

/* Прогноз на ближайшие дни */
.forecast-days {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.forecast-day {
    flex: 1;
    min-width: 120px;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-standard);
}

.forecast-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.forecast-date {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.forecast-icon {
    font-size: 28px;
    margin: 10px 0;
}

.forecast-kp {
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0;
}

.forecast-status {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    color: var(--text-light);
}

/* Таблицы прогнозов */
.forecast-probabilities,
.hourly-forecast,
.monthly-table {
    margin-top: 40px;
}

.forecast-probabilities h4,
.hourly-forecast h4,
.monthly-table h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
}

.dark-mode .forecast-probabilities h4,
.dark-mode .hourly-forecast h4,
.dark-mode .monthly-table h4 {
    color: var(--secondary-light);
}

.probabilities-table,
.hourly-forecast-table,
.monthly-storms-table {
    overflow-x: auto;
    margin-top: 20px;
}

.probabilities-table table,
.hourly-forecast-table table,
.monthly-storms-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
}

.probabilities-table th,
.hourly-forecast-table th,
.monthly-storms-table th {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border: 1px solid #e0e0e0;
}

.probabilities-table td,
.hourly-forecast-table td,
.monthly-storms-table td {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
}

.status-badge-small {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
}

/* Информационные блоки */
.info-block {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.info-col {
    flex: 1;
    min-width: 300px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.info-item p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Рекомендации */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.recommendation-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: var(--border-radius);
    transition: var(--transition-standard);
}

.recommendation-item:hover {
    background-color: rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.recommendation-icon {
    font-size: 24px;
    color: var(--primary);
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
}

.dark-mode .recommendation-icon {
    color: var(--secondary-light);
}

.recommendation-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.recommendation-content p {
    font-size: 14px;
    line-height: 1.5;
}

/* Подвал */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-light);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0bec5;
    text-decoration: none;
    transition: var(--transition-standard);
}

.footer-links a:hover {
    color: var(--secondary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #b0bec5;
}

/* Анимации */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.loading-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--secondary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.aurora-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(50, 100, 200, 0.2) 0%, 
        rgba(70, 200, 140, 0.2) 35%, 
        rgba(130, 80, 190, 0.2) 65%, 
        rgba(50, 100, 200, 0.2) 100%);
    background-size: 400% 400%;
    animation: aurora 15s ease infinite;
    z-index: 1;
}

@keyframes aurora {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sun-animation {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #ffeb3b, #ff9800);
    border-radius: 50%;
    box-shadow: 0 0 50px #ff9800, 0 0 100px #ff5722;
    top: -30px;
    right: 10%;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.solar-flare {
    position: absolute;
    background: radial-gradient(ellipse at center, rgba(255, 255, 0, 0.5), transparent 70%);
    border-radius: 50%;
    animation: flare 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes flare {
    0% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 0.2; transform: scale(1); }
}

/* Карта */
#map-container {
    height: 500px;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 30px;
    box-shadow: var(--box-shadow);
}

.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    pointer-events: none;
    transform: translate(-50%, -100%);
    margin-top: -10px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s;
}

.map-tooltip {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}

/* Утилиты и вспомогательные классы */
.text-success { color: #4caf50; }
.text-warning { color: #ffc107; }
.text-orange { color: #ff9800; }
.text-danger { color: #f44336; }

/* Медиа-запросы */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 20px;
    }

    .nav-menu {
        margin-top: 20px;
        justify-content: center;
    }

    .current-storm {
        flex-direction: column;
        align-items: flex-start;
    }

    .storm-indicator {
        margin-bottom: 15px;
    }

    .forecast-days {
        justify-content: center;
    }

    .forecast-day {
        min-width: 140px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .city-hero-info {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .city-grid {
        grid-template-columns: 1fr;
    }

    .recommendations-grid {
        grid-template-columns: 1fr;
    }

    .info-block {
        flex-direction: column;
    }

    .forecast-days {
        flex-direction: column;
    }

    .forecast-day {
        width: 100%;
        max-width: none;
    }
}

/* Стили для страницы города */
.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    color: var(--text-light);
}

.status-badge.status-calm {
    background-color: #4caf50;
}

.status-badge.status-unstable {
    background-color: var(--alert-mild);
}

.status-badge.status-storm-mild {
    background-color: var(--alert-moderate);
}

.status-badge.status-storm-moderate {
    background-color: var(--alert-strong);
}

.status-badge.status-storm-severe {
    background-color: var(--alert-severe);
}

.status-badge.status-unknown {
    background-color: #607d8b;
}

/* Полезные модификаторы */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 1rem; }
.ml-4 { margin-left: 1.5rem; }
.ml-5 { margin-left: 3rem; }

.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 1rem; }
.mr-4 { margin-right: 1.5rem; }
.mr-5 { margin-right: 3rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.fw-bold { font-weight: bold; }
.fw-normal { font-weight: normal; }
.fw-light { font-weight: 300; }

.fs-sm { font-size: 0.875rem; }
.fs-md { font-size: 1rem; }
.fs-lg { font-size: 1.25rem; }
.fs-xl { font-size: 1.5rem; }
.fs-xxl { font-size: 2rem; }












/* Стили для логотипа */
.logo {
    position: relative;
    z-index: 10;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.logo a:hover {
    background-color: rgba(255, 111, 0, 0.1);
    color: #ff6f00;
}

.logo-svg {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo a:hover .logo-svg {
    transform: scale(1.05) rotate(2deg);
}

.logo a:active .logo-svg {
    transform: scale(0.98);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #cacaf4;
    transition: color 0.3s ease;
}

.logo a:hover .logo-text {
    color: #ff6f00;
}

/* Интерактивные эффекты для SVG элементов */
.logo a:hover .magnetosphere-line {
    stroke: #ff8f30;
    stroke-width: 2.5;
    transition: all 0.3s ease;
}

.logo a:hover .pole-point {
    fill: #ff8f30;
    r: 2.5;
    transition: all 0.3s ease;
}

.logo a:hover .satellite {
    fill: #ff8f30;
    r: 2;
    transition: all 0.3s ease;
}

/* Мобильная версия логотипа */
.logo-mobile {
    display: none;
}

.logo-svg-mobile {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-mobile a {
    display: block;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.logo-mobile a:hover {
    background-color: rgba(255, 111, 0, 0.1);
}

.logo-mobile a:hover .logo-svg-mobile {
    transform: scale(1.1);
}

/* Анимация при загрузке */
@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.logo-svg,
.logo-svg-mobile {
    animation: logoEntrance 0.8s ease-out;
}

/* Темная тема */
.dark-mode .logo-text {
    color: #ffffff;
}

.dark-mode .logo a:hover .logo-text {
    color: #ff6f00;
}

.dark-mode .logo a:hover,
.dark-mode .logo-mobile a:hover {
    background-color: rgba(255, 111, 0, 0.2);
}

.dark-mode .logo-svg #logoEarthGradient stop:first-child {
    stop-color: #0066cc;
}

.dark-mode .logo-svg #logoEarthGradient stop:last-child {
    stop-color: #004499;
}

.dark-mode .logo-svg-mobile #logoEarthGradientMobile stop:first-child {
    stop-color: #0066cc;
}

.dark-mode .logo-svg-mobile #logoEarthGradientMobile stop:last-child {
    stop-color: #004499;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 640px) {
    .logo {
        display: none;
    }
    
    .logo-mobile {
        display: block;
    }
}

@media (max-width: 480px) {
    .logo-svg-mobile {
        width: 32px;
        height: 32px;
    }
}

/* Дополнительные эффекты для профессионального вида */
.header-content {
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 111, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.logo:hover::before {
    width: 80px;
    height: 80px;
}

/* Анимация пульсации для активности */
@keyframes magneticPulse {
    0%, 100% { 
        stroke-width: 2; 
        opacity: 0.8; 
    }
    50% { 
        stroke-width: 2.5; 
        opacity: 1; 
    }
}

.magnetosphere-line {
    animation: magneticPulse 3s ease-in-out infinite;
}





.enhanced-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.city-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    z-index: 1;
}

.city-hero-content-enhanced {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    color: white;
}

.hero-main-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.city-hero-info-enhanced {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.city-hero-info-enhanced > div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.city-hero-info-enhanced i {
    opacity: 0.8;
}

.hero-status-summary {
    font-size: 1.1rem;
    opacity: 0.9;
}

.hero-kp-enhanced {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    min-width: 280px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kp-main-display {
    margin-bottom: 20px;
}

.kp-value-large {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.kp-unit {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.kp-explanation {
    margin-bottom: 15px;
}

.kp-explanation p {
    font-weight: 600;
    margin-bottom: 5px;
}

.kp-explanation small {
    opacity: 0.8;
    font-size: 0.85rem;
}

.quick-health-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .city-hero-content-enhanced {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-main-section h1 {
        font-size: 2rem;
    }
    
    .city-hero-info-enhanced {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-kp-enhanced {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}














.weather-informer-enhanced {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 25px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 30px;
    align-items: center;
    margin-bottom: 20px;
}

.current-conditions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.informer-icon {
    width: 64px;
    height: 64px;
}

.temp-main {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
    display: block;
}

.temp-feels {
    color: #666;
    font-size: 0.9rem;
    display: block;
}

.condition-text {
    color: #555;
    font-weight: 500;
    margin-top: 5px;
    display: block;
}

.informer-params {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.param-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.param-item i {
    font-size: 1.2rem;
    color: #667eea;
    width: 20px;
    text-align: center;
}

.param-content {
    display: flex;
    flex-direction: column;
}

.param-value {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.param-status,
.param-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.risk-indicator,
.magnetic-indicator {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 120px;
}

.magnetic-indicator {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.risk-level,
.magnetic-level {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.risk-title,
.magnetic-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    display: block;
}

.risk-value,
.magnetic-value {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

.risk-score,
.magnetic-status {
    font-size: 0.8rem;
    opacity: 0.8;
    display: block;
}

.quick-tips-enhanced {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.tip-item-main {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.tip-item-main.positive {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.tip-item-main.moderate {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.tip-item-main.warning {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.additional-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.tip-factor {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #555;
    border-left: 3px solid #667eea;
}

.tip-factor i {
    color: #667eea;
    font-size: 0.9rem;
}

/* Цветовая индикация для параметров */
.pressure-success { color: #28a745; }
.pressure-warning { color: #fd7e14; }
.pressure-danger { color: #dc3545; }

.uv-low { color: #28a745; }
.uv-moderate { color: #ffc107; }
.uv-high { color: #dc3545; }

.risk-низкий { background: linear-gradient(135deg, #28a745, #20c997); }
.risk-умеренный { background: linear-gradient(135deg, #ffc107, #fd7e14); }
.risk-высокий { background: linear-gradient(135deg, #dc3545, #e83e8c); }
.risk-очень-высокий { background: linear-gradient(135deg, #6f42c1, #e83e8c); }

/* Адаптивность */
@media (max-width: 992px) {
    .weather-informer-enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .informer-params {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .informer-params {
        grid-template-columns: 1fr;
    }
    
    .additional-tips {
        grid-template-columns: 1fr;
    }
    
    .temp-main {
        font-size: 2.5rem;
    }
}












.article-navigation-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0;
    border-bottom: 1px solid #dee2e6;
}

.article-nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.nav-header {
    text-align: center;
    margin-bottom: 35px;
}

.nav-header h2 {
    color: #495057;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.nav-header p {
    color: #6c757d;
    font-size: 1rem;
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.nav-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.3s ease;
}

.nav-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
    text-decoration: none;
    color: inherit;
}

.nav-item:hover::before {
    width: 6px;
}

.nav-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
    position: relative;
}

.current-section .nav-icon { 
    background: linear-gradient(135deg, #667eea, #764ba2); 
}
.current-section::before { background: linear-gradient(135deg, #667eea, #764ba2); }

.weather-section .nav-icon { 
    background: linear-gradient(135deg, #fd79a8, #e84393); 
}
.weather-section::before { background: linear-gradient(135deg, #fd79a8, #e84393); }

.forecast-section .nav-icon { 
    background: linear-gradient(135deg, #74b9ff, #0984e3); 
}
.forecast-section::before { background: linear-gradient(135deg, #74b9ff, #0984e3); }

.analysis-section .nav-icon { 
    background: linear-gradient(135deg, #55a3ff, #3742fa); 
}
.analysis-section::before { background: linear-gradient(135deg, #55a3ff, #3742fa); }

.future-section .nav-icon { 
    background: linear-gradient(135deg, #00b894, #00a085); 
}
.future-section::before { background: linear-gradient(135deg, #00b894, #00a085); }

.extended-section .nav-icon { 
    background: linear-gradient(135deg, #a8edea, #fed6e3); 
    color: #333; 
}
.extended-section::before { background: linear-gradient(135deg, #a8edea, #fed6e3); }

.nav-content {
    flex: 1;
}

.nav-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
}

.nav-content p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 12px;
    line-height: 1.5;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 500;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.analysis-indicator,
.hourly-indicator,
.periods-indicator,
.days-indicator,
.extended-indicator {
    font-size: 0.9rem;
}

.content-preview {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.content-preview h4 {
    color: #495057;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #495057;
    border-left: 3px solid #667eea;
}

.preview-item i {
    color: #667eea;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Цвета статусов */
.status-calm { background: #28a745; }
.status-unstable { background: #ffc107; }
.status-storm-mild { background: #fd7e14; }
.status-storm-moderate { background: #dc3545; }
.status-storm-severe { background: #6f42c1; }

/* Адаптивность */
@media (max-width: 768px) {
    .nav-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .nav-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .nav-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .nav-content h3 {
        font-size: 1.2rem;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .article-navigation-section {
        padding: 30px 0;
    }
    
    .nav-header h2 {
        font-size: 1.5rem;
    }
    
    .nav-item {
        padding: 15px;
    }
    
    .content-preview {
        padding: 20px;
    }
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Подсветка активного раздела при скролле */
.nav-item.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #fff, #f8f9ff);
}

.nav-item.active::before {
    width: 6px;
}





/* Стили для упрощенного блока ГМО */
.gmo-main-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    margin-bottom: 2rem;
}

.gmo-header-section {
    margin-bottom: 1.5rem;
}

.gmo-description {
    opacity: 0.9;
    margin-bottom: 0;
}

.current-gmo-status {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.gmo-main-indicator {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    min-width: 300px;
}

.gmo-status-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
}

.gmo-status-circle i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.gmo-kp-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.gmo-status-details h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.gmo-status-description {
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.gmo-additional-indices {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gmo-index-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.index-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.index-value {
    font-size: 1.1rem;
    font-weight: bold;
}

/* Прогноз по дням */
.gmo-forecast-section {
    display: grid;
    gap: 1.5rem;
}

.gmo-today-card {
    background: #f8f9fa;
}

.gmo-day-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    margin-bottom: 1rem;
}

/* Табличное представление сегодня */
.gmo-table-container {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.daily-stats-simple {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    justify-content: center;
}

.stat-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.stat-value {
    font-weight: bold;
    font-size: 1.1rem;
}

.gmo-hourly-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.gmo-hourly-table th {
    background: #f8f9fa;
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
}

.gmo-hourly-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #dee2e6;
}

.current-hour-row {
    background: rgba(0, 123, 255, 0.05);
    border-left: 3px solid #007bff;
}

.hour-cell {
    font-weight: 600;
    position: relative;
}

.current-badge-simple {
    display: inline-block;
    background: #007bff;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
}

.kp-cell {
    text-align: center;
}

.status-cell {
    text-align: center;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.recommendation-cell {
    text-align: center;
    font-size: 0.85rem;
}

.simple-legend {
    padding: 1rem;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.legend-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #495057;
}

.legend-items {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.no-data-simple {
    padding: 2rem;
    text-align: center;
    color: #6c757d;
}

/* Горизонтальный прогноз */
.forecast-section-title {
    text-align: center;
    color: #495057;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.forecast-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.forecast-day-horizontal {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    background: white;
}

.forecast-day-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.forecast-day-header h4 {
    margin: 0 0 0.5rem 0;
    color: #495057;
    font-size: 1.2rem;
}

.forecast-day-header p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.forecast-day-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.day-kp-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kp-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.kp-value-large {
    font-size: 1.5rem;
    font-weight: bold;
}

.day-status-simple {
    text-align: right;
}

.forecast-details-table {
    width: 100%;
    margin-bottom: 1rem;
}

.forecast-details-table td {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.forecast-details-table td:first-child {
    color: #6c757d;
    width: 40%;
}

.impact-good { color: #28a745; font-weight: 600; }
.impact-moderate { color: #ffc107; font-weight: 600; }
.impact-warning { color: #fd7e14; font-weight: 600; }
.impact-danger { color: #dc3545; font-weight: 600; }

.forecast-hourly-simple {
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.hourly-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #495057;
}

.hourly-values {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hourly-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.hour-label {
    font-size: 0.75rem;
    color: #6c757d;
}

.hour-kp {
    font-weight: bold;
    font-size: 0.9rem;
}

.forecast-probabilities-simple {
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

.prob-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #495057;
}

.prob-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.prob-item {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Адаптивность */
@media (max-width: 768px) {
    .current-gmo-status {
        flex-direction: column;
        align-items: stretch;
    }
    
    .gmo-main-indicator {
        flex-direction: column;
        text-align: center;
        min-width: auto;
    }
    
    .gmo-additional-indices {
        justify-content: center;
    }
    
    .daily-stats-simple {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .gmo-hourly-table {
        font-size: 0.8rem;
    }
    
    .gmo-hourly-table th,
    .gmo-hourly-table td {
        padding: 8px 4px;
    }
    
    .legend-items {
        justify-content: center;
    }
    
    .forecast-horizontal {
        grid-template-columns: 1fr;
    }
    
    .forecast-day-main {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hourly-values {
        justify-content: center;
    }
    
    .prob-list {
        justify-content: center;
    }
}

/* Темная тема */
.dark-mode .gmo-today-card {
    background: #2c3e50;
    color: #ecf0f1;
}

.dark-mode .gmo-table-container {
    background: #34495e;
}

.dark-mode .gmo-hourly-table th {
    background: #2c3e50;
    color: #ecf0f1;
}

.dark-mode .gmo-hourly-table td {
    border-bottom-color: #485563;
}

.dark-mode .forecast-day-horizontal {
    background: #34495e;
    border-color: #485563;
    color: #ecf0f1;
}