        :root {
            --header-bg: #1a1f2e;
            --header-text: #ffffff;
            --bg-primary: #ffffff;
            --bg-secondary: #f8f9fa;
            --bg-card: #ffffff;
            --text-primary: #1a202c;
            --text-secondary: #4a5568;
            --text-muted: #718096;
            --accent-teal: #2b6cb0;
            --accent-coral: #996060;
            --accent-warm: #c05621;
            --accent-green: #2f855a;
            --border: #e2e8f0;
            --shadow: 0 1px 3px rgba(0,0,0,0.08);
            --coral-critical: #d90429;
            --coral-severe: #ef476f;
            --coral-moderate: #f4845f;
            --coral-low: #ffd166;
        }

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

        body {
            font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
            background: var(--bg-secondary);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
        }

        body.ja {
            font-family: 'Noto Sans JP', 'DM Sans', sans-serif;
        }

        /* Language toggle CSS - same as sst.html */
        [data-lang="ja"] { display: none; }
        body.ja [data-lang="en"] { display: none; }
        body.ja [data-lang="ja"] { display: inline; }
        div[data-lang="ja"], li[data-lang="ja"], p[data-lang="ja"], span.block[data-lang="ja"], h1[data-lang="ja"], h2[data-lang="ja"], h3[data-lang="ja"], h4[data-lang="ja"] { display: none; }
        body.ja div[data-lang="en"], body.ja li[data-lang="en"], body.ja p[data-lang="en"], body.ja span.block[data-lang="en"], body.ja h1[data-lang="en"], body.ja h2[data-lang="en"], body.ja h3[data-lang="en"], body.ja h4[data-lang="en"] { display: none; }
        body.ja div[data-lang="ja"] { display: block; }
        body.ja li[data-lang="ja"] { display: list-item; }
        body.ja p[data-lang="ja"] { display: block; }
        body.ja span.block[data-lang="ja"] { display: block; }
        body.ja h1[data-lang="ja"], body.ja h2[data-lang="ja"], body.ja h3[data-lang="ja"], body.ja h4[data-lang="ja"] { display: block; }

        /* Header */
        header {
            background: var(--header-bg);
            color: var(--header-text);
            padding: 0.75rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

        .logo {
            margin-right: 2rem;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: -0.01em;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: inherit;
        }

        .logo-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #5b9a94 0%, #2b6cb0 100%);
            border-radius: 6px;
            overflow: hidden;
        }

        .logo-icon img { width: 100%; height: 100%; object-fit: cover; }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #ffffff;
        }

        .header-controls {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .lang-switch {
            display: flex;
            gap: 0.25rem;
        }

        .lang-switch button {
            background: none;
            border: none;
            color: rgba(255,255,255,0.6);
            font-size: 0.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
        }

        .lang-switch button:hover { color: rgba(255,255,255,0.9); }
        .lang-switch button.active { color: #ffffff; background: rgba(255,255,255,0.15); }

        /* Main */
        main {
            max-width: 900px;
            margin: 0 auto;
            padding: 2.5rem 2rem;
        }

        .breadcrumb {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .breadcrumb a {
            color: var(--accent-teal);
            text-decoration: none;
        }

        /* Hero Section with Map */
        .hero-section {
            background: linear-gradient(135deg, rgba(26, 31, 46, 0.95), rgba(26, 58, 92, 0.9)), url("../img/iStock-964888346.jpg");
            color: white;
            border-radius: 12px;
            margin-bottom: 2.5rem;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }

        .hero-header {
            padding: 2rem 2rem 1rem;
            text-align: center;
        }

        .hero-tagline {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        body.ja .hero-tagline {
            font-size: 1.4rem;
        }

        .hero-subtitle {
            font-size: 0.95rem;
            opacity: 0.85;
        }

        /* Map Container */
        .map-container {
            position: relative;
            width: 100%;
        }

        .map-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .hotspots-layer {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .hotspot {
            position: absolute;
            pointer-events: auto;
            cursor: pointer;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hotspot:hover {
            transform: scale(1.3);
            z-index: 10;
        }

        .hotspot-glow {
            position: absolute;
            border-radius: 50%;
            animation: pulse 3s ease-in-out infinite;
        }

        .hotspot-core {
            position: relative;
            border-radius: 50%;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.4; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.15); }
        }

        .hotspot-tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(10, 22, 40, 0.95);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            padding: 0.75rem 1rem;
            min-width: 180px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
            margin-bottom: 10px;
            z-index: 20;
            text-align: left;
            color: white;
        }

        .hotspot:hover .hotspot-tooltip {
            opacity: 1;
            transform: translateX(-50%) translateY(-5px);
        }

        .hotspot-tooltip h4 {
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 0.3rem;
        }

        .hotspot-tooltip p {
            font-size: 0.55rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.4;
        }

        .hotspot-tooltip .year {
            font-size: 0.7rem;
            color: var(--coral-severe);
            margin-top: 0.3rem;
        }

        .severity-critical .hotspot-glow { background: var(--coral-critical); }
        .severity-critical .hotspot-core { background: var(--coral-critical); }
        .severity-severe .hotspot-glow { background: var(--coral-severe); }
        .severity-severe .hotspot-core { background: var(--coral-severe); }
        .severity-moderate .hotspot-glow { background: var(--coral-moderate); }
        .severity-moderate .hotspot-core { background: var(--coral-moderate); }
        .severity-low .hotspot-glow { background: var(--coral-low); }
        .severity-low .hotspot-core { background: var(--coral-low); }

        .map-legend {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: rgba(10, 22, 40, 0.85);
            border-radius: 8px;
            padding: 0.75rem 1rem;
        }

        .map-legend h5 {
            font-size: 0.7rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: white;
        }

        .legend-items {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 0.75rem;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.55rem;
            color: rgba(255,255,255,0.8);
        }

        .legend-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .legend-dot.critical { background: var(--coral-critical); }
        .legend-dot.severe { background: var(--coral-severe); }
        .legend-dot.moderate { background: var(--coral-moderate); }
        .legend-dot.low { background: var(--coral-low); }

        .data-source {
            position: absolute;
            bottom: 15px;
            right: 15px;
            font-size: 0.5rem;
            color: rgba(255,255,255,0.4);
        }

        /* Content Sections */
        .content-section {
            margin-bottom: 2.5rem;
        }

        .content-section h2 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }

        /* Introduction */
        .intro-text {
            font-size: 0.95rem;
            line-height: 1.8;
            color: var(--text-secondary);
        }

        .intro-text p {
            margin-bottom: 1rem;
        }

        .intro-text p:last-child {
            margin-bottom: 0;
        }

        /* Key Stats */
        .key-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        @media (max-width: 640px) {
            .key-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .key-stat {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.25rem;
            text-align: center;
        }

        .key-stat-value {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.75rem;
            font-weight: 500;
            color: var(--coral-severe);
        }

        .key-stat-label {
            font-size: 0.55rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        /* Timeline */
        .timeline-visual {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 1.5rem 0;
            position: relative;
            margin-bottom: 1.5rem;
        }

        .timeline-visual::before {
            content: '';
            position: absolute;
            top: 2rem;
            left: 5%;
            right: 5%;
            height: 3px;
            background: var(--border);
        }

        .timeline-point {
            text-align: center;
            position: relative;
            z-index: 1;
            cursor: pointer;
            flex: 1;
        }

        .timeline-dot {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            margin: 0 auto 0.75rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .timeline-point:hover .timeline-dot {
            transform: scale(1.2);
        }

        .timeline-dot.active {
            box-shadow: 0 0 0 4px rgba(217, 4, 41, 0.3);
            animation: dotPulse 2s ease-in-out infinite;
        }

        @keyframes dotPulse {
            0%, 100% { box-shadow: 0 0 0 4px rgba(217, 4, 41, 0.3); }
            50% { box-shadow: 0 0 0 8px rgba(217, 4, 41, 0.1); }
        }

        .timeline-year {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .timeline-label {
            font-size: 0.55rem;
            color: var(--text-muted);
        }

        .timeline-status {
            font-size: 0.7rem;
            color: var(--coral-critical);
            margin-top: 0.25rem;
        }

        /* Event Cards */
        .event-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }

        .event-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .event-card-header {
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--bg-secondary);
        }

        .event-card-title {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .event-card-title .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .event-card-title h3 {
            font-size: 1rem;
            font-weight: 600;
        }

        .event-card-title .impact {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-left: 0.5rem;
        }

        .event-card-toggle {
            display: inline-block;
            font-size: 1rem;
            color: var(--text-muted);
            transition: transform 0.3s;
        }

        .event-card.open .event-card-toggle {
            display: inline-block;
            transform: rotate(180deg);
        }

        .event-card-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .event-card.open .event-card-content {
            max-height: 1500px;
        }

        .event-card-body {
            padding: 1.5rem;
        }

        .event-description {
            font-size: 0.9rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .event-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        @media (max-width: 640px) {
            .event-stats {
                grid-template-columns: 1fr;
            }
        }

        .event-stat {
            text-align: center;
            padding: 1rem;
            background: var(--bg-secondary);
            border-radius: 8px;
        }

        .event-stat-value {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--coral-severe);
        }

        .event-stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        .event-details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        @media (max-width: 640px) {
            .event-details-grid {
                grid-template-columns: 1fr;
            }
        }

        .event-detail-section h4 {
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }

        .event-detail-section ul {
            list-style: none;
        }

        .event-detail-section li {
            font-size: 0.85rem;
            color: var(--text-secondary);
            padding: 0.4rem 0;
            border-bottom: 1px solid var(--border);
        }

        .event-detail-section li:last-child {
            border-bottom: none;
        }

        /* Frequency Chart */
        .frequency-note {
            background: #fef2f2;
            border: 1px solid #fecaca;
            border-radius: 8px;
            padding: 1rem 1.25rem;
            margin-top: 1.5rem;
        }

        .frequency-note-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--coral-critical);
            margin-bottom: 0.5rem;
        }

        .frequency-note p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Hope Section */
        .hope-section {
            background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
            border: 1px solid #a7f3d0;
            border-radius: 8px;
            padding: 1.5rem;
        }

        .hope-section h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--accent-green);
            margin-bottom: 1rem;
        }

        .hope-items {
            display: grid;
            gap: 0.75rem;
        }

        .hope-item {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
        }

        .hope-icon {
            font-size: 1rem;
            flex-shrink: 0;
        }

        .hope-text {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Source Info */
        .source-info {
            font-size: 0.8rem;
            color: var(--text-muted);
            padding: 1.25rem;
            background: var(--bg-secondary);
            border-radius: 6px;
            line-height: 1.8;
        }
        .source-info a { color: var(--accent-teal); text-decoration: none; }
        .source-info a:hover { text-decoration: underline; }
        .source-info ul { margin-top: 0.75rem; padding-left: 1.25rem; }
        .source-info li { margin-bottom: 0.5rem; }

        /* Footer */
        footer {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
            text-align: center;
            font-size: 0.55rem;
            color: var(--text-muted);
            border-top: 1px solid var(--border);
        }

        footer a {
            color: var(--accent-teal);
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            main {
                padding: 1.5rem 1rem;
            }

            .hero-header {
                padding: 1.5rem 1rem 0.75rem;
            }

            .hero-tagline {
                font-size: 1.25rem;
            }

            .map-legend {
                position: absolute;
                bottom: 8px;
                left: 8px;
                font-size: 0.5rem; padding: 0.5rem 0.6rem;
                border-radius: 6px;
            }
        }

        .event-card-toggle-text {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .event-card-toggle-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Desktop/Mobile visibility toggle */
        .mobile-only {
            display: none;
        }


        @media (max-width: 768px) {
            .desktop-only {
                display: none !important;
            }
            .mobile-only {
                display: block;
            }
            /* Mobile legend styling - horizontal inline */
            .map-legend.mobile-only {
                position: static;
                background: transparent;
                padding: 0.5rem 0;
                margin: 0.5rem 0 0 0;
            }
            .map-legend.mobile-only h5 {
                display: none;
            }
            .map-legend.mobile-only .legend-items {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5rem 1rem;
            }
            .map-legend.mobile-only .legend-item {
                font-size: 0.7rem;
                color: rgba(255,255,255,0.7);
            }
            .data-source.mobile-only {
                position: static;
                font-size: 0.5rem;
                color: rgba(255,255,255,0.4);
                text-align: center;
                margin: 0.25rem 0 0.5rem 0;
            }
            /* Mobile hotspot - larger tap area */
            .hotspot::before {
                content: '';
                position: absolute; width: 44px; height: 44px; top: 50%; left: 50%; transform: translate(-50%, -50%);
            }
            /* Mobile tooltip - smaller and constrained */
            .hotspot-tooltip {
                min-width: 140px;
                max-width: 140px;
                padding: 0.5rem 0.75rem;
            }
            .hotspot-tooltip h4 {
                font-size: 0.65rem;
            }
            .hotspot-tooltip p {
                font-size: 0.55rem;
                line-height: 1.3;
            }
            .hotspot-tooltip .year {
                font-size: 0.5rem;
            }
            /* Mobile: show tooltip on tap */
            .hotspot:active .hotspot-tooltip,
            .hotspot:focus .hotspot-tooltip {
                opacity: 1;
                transform: translateX(-50%) translateY(-5px);
            }
        }

/* ENSO Page Specific Styles */

/* ONI Chart Container */
.oni-chart-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.oni-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.oni-chart-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.oni-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.oni-status.el-nino {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.oni-status.la-nina {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.oni-status.neutral {
    background: rgba(156, 163, 175, 0.1);
    color: #6b7280;
}

.oni-chart-wrapper {
    position: relative;
    height: 300px;
}

@media (max-width: 640px) {
    .oni-chart-wrapper {
        height: 250px;
    }
}

/* NOAA Image Section */
.noaa-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .noaa-images {
        grid-template-columns: 1fr;
    }
}

.noaa-image-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.noaa-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.noaa-image-caption {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--bg-secondary);
}

/* ENSO Explanation Cards */
.enso-explainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .enso-explainer {
        grid-template-columns: 1fr;
    }
}

.enso-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem;
}

.enso-card.el-nino {
    border-left: 4px solid #ef4444;
}

.enso-card.la-nina {
    border-left: 4px solid #3b82f6;
}

.enso-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.enso-card.el-nino h4 {
    color: #dc2626;
}

.enso-card.la-nina h4 {
    color: #2563eb;
}

.enso-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.enso-card ul {
    margin-top: 0.75rem;
    padding-left: 1.25rem;
}

.enso-card li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

/* Typhoon Mechanism Section */
.mechanism-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.mechanism-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.mechanism-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.mechanism-flow .arrow {
    color: #3b82f6;
    font-weight: bold;
}

.mechanism-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ONI Legend */
.oni-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.oni-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.oni-legend-color {
    width: 16px;
    height: 12px;
    border-radius: 2px;
}

.oni-legend-color.el-nino { background: #ef4444; }
.oni-legend-color.la-nina { background: #3b82f6; }
.oni-legend-color.neutral { background: #9ca3af; }

/* Loading state */
.chart-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Hero ENSO Badge */
.hero-enso-badge {
    margin-top: 1.5rem;
}

.hero-enso-loading {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.hero-enso-error {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.hero-enso-content {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-enso-content.el-nino {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
}

.hero-enso-content.la-nina {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.hero-enso-content.neutral {
    background: rgba(156, 163, 175, 0.2);
    border-color: rgba(156, 163, 175, 0.3);
}

.hero-enso-icon {
    font-size: 1.1rem;
}

.hero-enso-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-enso-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.hero-enso-period {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.hero-enso-status {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
}

@media (max-width: 640px) {
    .hero-enso-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }
    
    .hero-enso-label {
        display: none;
    }
    
    .hero-enso-value {
        font-size: 1.1rem;
    }
}

/* 2024 Case Study Section */
.case-study-2024 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .case-study-2024 {
        grid-template-columns: 1fr;
    }
}

.case-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
}

.case-stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.case-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--coral-severe);
    line-height: 1;
}

.case-unit {
    font-size: 1rem;
    color: var(--coral-severe);
    font-weight: 500;
}

.case-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Typhoon Table */
.typhoon-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.typhoon-table th,
.typhoon-table td {
    padding: 0.5rem 0.75rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.typhoon-table th {
    background: rgba(30, 64, 175, 0.1);
    font-weight: 600;
    color: var(--text-primary);
}

.typhoon-table td {
    color: var(--text-secondary);
}

.typhoon-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.typhoon-table td.critical {
    color: var(--coral-severe);
    font-weight: 700;
    background: rgba(239, 68, 68, 0.1);
}

.typhoon-table .average-row td {
    background: var(--bg-secondary);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Field Voices Section */
.voice-from-field {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.voice-from-field h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.field-quote {
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent-teal);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    margin: 0 0 1rem 0;
}

.field-quote:last-of-type {
    margin-bottom: 0;
}

.field-quote p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.field-quote cite {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-style: normal;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.6rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table th:first-child {
    width: 40%;
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--text-primary);
}

@media (max-width: 640px) {
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}

/* Hero ENSO Risk Message */
.hero-enso-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-enso-risk {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 640px) {
    .hero-enso-risk {
        font-size: 0.8rem;
    }
}

/* Fix: Case study numbers - match other pages */
.case-number {
    font-size: 2rem;
    font-weight: 500;
}

.case-unit {
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 640px) {
    .case-number {
        font-size: 1.75rem;
    }
}

/* Fix: Typhoon table mobile overflow */
.mechanism-box {
    overflow-x: auto;
}

.typhoon-table {
    min-width: 500px;
}

@media (max-width: 640px) {
    .typhoon-table {
        font-size: 0.75rem;
    }
    
    .typhoon-table th,
    .typhoon-table td {
        padding: 0.4rem 0.5rem;
    }
}

/* Approximate symbol before number */
.case-approx {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--coral-severe);
    margin-right: 0.1rem;
}

@media (max-width: 640px) {
    .case-approx {
        font-size: 1.25rem;
    }
}

/* Inline unit (%) next to number */
.case-unit-inline {
    font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--coral-severe);
}

@media (max-width: 640px) {
    .case-unit-inline {
        font-size: 1.25rem;
    }
}

/* Hero data info line */
.hero-enso-data-info {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
}

@media (max-width: 640px) {
    .hero-enso-data-info {
        font-size: 0.75rem;
    }
}

/* ===== New Sections: Deep Considerations (2026-01-10) ===== */

/* Recovery Interval Section */
.recovery-interval-viz {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .recovery-interval-viz {
        grid-template-columns: 1fr;
    }
}

.interval-comparison {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
}

.interval-comparison h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.interval-bar {
    height: 20px;
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    margin: 0.5rem 0;
    position: relative;
}

.interval-bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.interval-bar-fill.recovery {
    background: var(--accent-green);
}

.interval-bar-fill.bleaching {
    background: var(--coral-severe);
}

.interval-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.interval-value.green { color: var(--accent-green); }
.interval-value.red { color: var(--coral-severe); }

.interval-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Japan Bleaching Timeline */
.japan-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.timeline-year-badge {
    background: var(--coral-severe);
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    position: relative;
}

.timeline-year-badge::after {
    content: attr(data-interval);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.timeline-year-badge.severe {
    background: var(--coral-critical);
}

/* PDO Section */
.pdo-explainer {
    background: linear-gradient(135deg, #fef3c7, #fef9c3);
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.pdo-explainer h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.75rem;
}

.pdo-explainer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.climate-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 640px) {
    .climate-matrix {
        grid-template-columns: 1fr;
    }
}

.matrix-cell {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
}

.matrix-cell h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.matrix-cell.danger {
    border-left: 4px solid var(--coral-critical);
}

.matrix-cell.danger h5 {
    color: var(--coral-critical);
}

.matrix-cell.moderate {
    border-left: 4px solid var(--coral-moderate);
}

.matrix-cell.moderate h5 {
    color: var(--accent-warm);
}

.matrix-cell.low {
    border-left: 4px solid var(--accent-green);
}

.matrix-cell.low h5 {
    color: var(--accent-green);
}

.matrix-cell p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* IOD Section */
.iod-box {
    background: linear-gradient(135deg, #fae8ff, #f5d0fe);
    border: 1px solid #e879f9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.iod-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #86198f;
    margin-bottom: 0.75rem;
}

.iod-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Prediction Section */
.prediction-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.prediction-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-teal), var(--coral-moderate));
    border-radius: 2px;
    transform: translateY(-50%);
    z-index: 0;
}

.prediction-point {
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    padding: 0.5rem;
}

.prediction-point .icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.prediction-point .label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.prediction-point .time {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

@media (max-width: 640px) {
    .prediction-timeline {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .prediction-timeline::before {
        width: 4px;
        height: 80%;
        left: 50%;
        top: 10%;
        bottom: 10%;
        transform: translateX(-50%);
    }
}

/* Adaptation Hope Section */
.adaptation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (max-width: 640px) {
    .adaptation-stats {
        grid-template-columns: 1fr;
    }
}

.adaptation-stat {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #6ee7b7;
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
}

.adaptation-stat .value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-green);
}

.adaptation-stat .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Future Projection */
.future-scenarios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (max-width: 640px) {
    .future-scenarios {
        grid-template-columns: 1fr;
    }
}

.scenario-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.scenario-card.optimistic::before {
    background: var(--accent-green);
}

.scenario-card.pessimistic::before {
    background: var(--coral-critical);
}

.scenario-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.scenario-card.optimistic h5 {
    color: var(--accent-green);
}

.scenario-card.pessimistic h5 {
    color: var(--coral-critical);
}

.scenario-card .temp {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.scenario-card.optimistic .temp {
    color: var(--accent-green);
}

.scenario-card.pessimistic .temp {
    color: var(--coral-critical);
}

.scenario-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Warning callout */
.warning-callout {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid var(--coral-critical);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.warning-callout h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--coral-critical);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-callout p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Key insight box */
.key-insight {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #7dd3fc;
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1rem 0;
}

.key-insight h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0369a1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.key-insight p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================================================
   Climate Mode Dashboard
   ============================================================================= */

.climate-dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .climate-dashboard {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.climate-dashboard-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.climate-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.climate-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.climate-card-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.climate-card-value {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 0.25rem;
}

.climate-card-phase {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.climate-card-period {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Phase colors */
.climate-card.la-nina .climate-card-value,
.climate-card.la-nina .climate-card-phase {
    color: #4fc3f7;
}

.climate-card.el-nino .climate-card-value,
.climate-card.el-nino .climate-card-phase {
    color: #ff8a65;
}

.climate-card.neutral .climate-card-value,
.climate-card.neutral .climate-card-phase {
    color: #a5d6a7;
}

.climate-card.negative .climate-card-value,
.climate-card.negative .climate-card-phase {
    color: #4fc3f7;
}

.climate-card.positive .climate-card-value,
.climate-card.positive .climate-card-phase {
    color: #ff8a65;
}

/* Phase indicator dots */
.phase-indicator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.phase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.phase-dot.active {
    background: currentColor;
}

/* =============================================================================
   Risk Assessment
   ============================================================================= */

.risk-assessment {
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-header {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    text-align: center;
}

.risk-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .risk-content {
        flex-direction: column;
        gap: 1rem;
    }
}

.risk-gauge {
    flex: 1;
    position: relative;
}

.risk-gauge-fill {
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, 
        #4caf50 0%, 
        #4caf50 30%, 
        #ffeb3b 30%, 
        #ffeb3b 50%, 
        #ff9800 50%, 
        #ff9800 70%, 
        #f44336 70%, 
        #f44336 100%
    );
    position: relative;
}

.risk-gauge-fill::after {
    content: '';
    position: absolute;
    top: -4px;
    left: var(--risk-position, 0%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: translateX(-50%);
    transition: left 0.5s ease;
}

.risk-gauge-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
}

.risk-score {
    text-align: center;
    min-width: 80px;
}

.risk-score-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    display: block;
}

.risk-score-label {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Risk level colors */
.risk-assessment.low .risk-score-value,
.risk-assessment.low .risk-score-label {
    color: #4caf50;
}

.risk-assessment.moderate .risk-score-value,
.risk-assessment.moderate .risk-score-label {
    color: #ffeb3b;
}

.risk-assessment.elevated .risk-score-value,
.risk-assessment.elevated .risk-score-label {
    color: #ff9800;
}

.risk-assessment.high .risk-score-value,
.risk-assessment.high .risk-score-label {
    color: #f44336;
}

.risk-summary {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    text-align: center;
}

.risk-updated {
    margin-top: 0.75rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* =============================================================================
   ENSO Forecast Section
   ============================================================================= */

.enso-forecast {
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.forecast-header {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    text-align: center;
}

.forecast-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.forecast-bar-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.forecast-bar-label {
    width: 80px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
}

.forecast-bar-container {
    flex: 1;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.forecast-bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.forecast-bar-fill.el-nino {
    background: linear-gradient(90deg, #ff8a65, #ff5722);
}

.forecast-bar-fill.neutral {
    background: linear-gradient(90deg, #a5d6a7, #66bb6a);
}

.forecast-bar-fill.la-nina {
    background: linear-gradient(90deg, #4fc3f7, #03a9f4);
}

.forecast-bar-value {
    width: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    color: rgba(255, 255, 255, 0.9);
}

.forecast-issued {
    margin-top: 0.75rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

/* =============================================================================
   Typhoon Tracker Section
   ============================================================================= */

.typhoon-tracker {
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.typhoon-header {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    text-align: center;
}

.typhoon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    text-align: center;
}

@media (max-width: 480px) {
    .typhoon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.typhoon-cell {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.typhoon-cell-month {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.typhoon-cell-value {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.typhoon-cell-value.zero {
    color: #4caf50;
}

.typhoon-cell-value.low {
    color: #ffeb3b;
}

.typhoon-cell-value.normal {
    color: #a5d6a7;
}

.typhoon-cell-value.pending {
    color: rgba(255, 255, 255, 0.3);
}

.typhoon-cell.total {
    background: rgba(255, 255, 255, 0.1);
}

.typhoon-cell.total .typhoon-cell-value {
    color: #fff;
}

.typhoon-note {
    margin-top: 0.75rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.typhoon-climatology {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    text-align: center;
}
