    /* ── Hora en Japón – visual redesign ──────────────────────────── */
    .hora-hero {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        min-height: var(--hero-h);
        display: flex;
        align-items: flex-end;
        margin-bottom: 2rem;
        background: #020617;
    }
    .hora-hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hora-hero-overlay {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 2.5rem 2rem 2rem;
    }
    .hora-hero-overlay h1 {
        color: #fff;
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        line-height: 1.15;
        margin: 0 0 0.5rem;
        text-shadow: 0 2px 10px rgba(0,0,0,.65), 0 1px 3px rgba(0,0,0,.45);
    }
    .hora-hero-overlay p {
        color: rgba(255,255,255,0.92);
        font-size: 1rem;
        margin: 0;
        max-width: 38rem;
        text-shadow: 0 1px 6px rgba(0,0,0,.6);
    }
    /* Live clock card */
    .hora-clock-card {
        background: var(--bg-card);
        border-radius: var(--radius-lg);
        padding: 2rem;
        text-align: center;
        max-width: 560px;
        margin: 0 auto 2rem;
        box-shadow: 0 12px 28px rgba(0,0,0,0.07);
        border: 1px solid var(--border-subtle);
    }
    .hora-clock-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: var(--text-muted);
        margin-bottom: 0.5rem;
    }
    .hora-clock-value {
        font-size: clamp(3rem, 10vw, 5rem);
        font-weight: 700;
        color: var(--primary-color);
        letter-spacing: -0.02em;
        line-height: 1;
        margin: 0.25rem 0;
    }
    .hora-clock-date {
        font-size: 1rem;
        color: var(--text-muted);
        margin: 0.5rem 0 0.75rem;
    }
    .hora-clock-diff {
        font-size: 0.9rem;
        color: var(--text-main);
        font-style: italic;
        background: var(--primary-soft);
        border-radius: 0.4rem;
        padding: 0.4rem 0.75rem;
        display: inline-block;
        margin: 0.5rem 0 0;
    }
    /* Converter */
    .time-converter {
        background: var(--bg-card);
        border: 1px solid var(--border-subtle);
        border-top: 3px solid var(--primary-color);
        border-radius: var(--radius-lg);
        padding: 1.5rem 2rem;
        margin-top: 1.5rem;
        transition: box-shadow 0.2s ease;
    }
    .time-converter:hover {
        box-shadow: 0 6px 20px rgba(0,0,0,0.09);
    }
    .time-converter h3 {
        margin: 0 0 1rem;
        font-size: 1.05rem;
        font-weight: 600;
    }
    .converter-row {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .converter-row label {
        font-size: 0.9rem;
        color: var(--text-muted);
        white-space: nowrap;
    }
    .converter-input {
        font-size: 1.4rem;
        font-weight: 700;
        border: 2px solid var(--border-subtle);
        border-radius: 8px;
        padding: 0.3rem 0.75rem;
        width: 10rem;
        min-width: 10rem;
        text-align: center;
        background: var(--bg-card);
        color: var(--text-main);
    }
    .converter-arrow {
        font-size: 1.4rem;
        color: var(--primary-color);
    }
    .converter-result {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-color);
        min-width: 5rem;
    }
    .converter-note {
        font-size: 0.82rem;
        color: var(--text-muted);
        margin-top: 0.5rem;
    }
    /* Offset table */
    .offset-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    .offset-table th,
    .offset-table td {
        padding: 0.55rem 0.9rem;
        border: 1px solid var(--border-subtle);
        text-align: center;
    }
    .offset-table th {
        background: var(--bg-card);
        font-weight: 600;
    }
    .offset-table tr:nth-child(even) td {
        background: #fafafa;
    }
    .offset-badge {
        display: inline-block;
        background: var(--primary-color);
        color: #fff;
        border-radius: 4px;
        padding: 0.1rem 0.45rem;
        font-size: 0.78rem;
        font-weight: 700;
    }
    /* Local country highlight card */
    .local-tz-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: var(--primary-soft);
        border: 1px solid rgba(190,137,166,0.3);
        border-left: 4px solid var(--primary-color);
        border-radius: var(--radius-lg);
        padding: 1rem 1.25rem;
        margin-bottom: 1.25rem;
    }
    .local-tz-body { flex: 1; min-width: 0; }
    .local-tz-name { font-weight: 700; font-size: 1.05rem; color: var(--text-main); }
    .local-tz-detail { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; }
    .local-tz-badge { margin-left: auto; font-size: 1.6rem; font-weight: 700; color: var(--primary-color); flex-shrink: 0; padding-left: 1rem; }
    /* Collapsible countries table */
    details.countries-details { margin-top: 0.5rem; }
    details.countries-details > summary {
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--primary-color);
        padding: 0.65rem 0;
        border-top: 1px solid var(--border-subtle);
        user-select: none;
    }
    details.countries-details > summary::-webkit-details-marker { display: none; }
    details.countries-details > summary::before {
        content: '▶';
        font-size: 0.65rem;
        transition: transform 0.2s ease;
        display: inline-block;
    }
    details.countries-details[open] > summary::before { transform: rotate(90deg); }
    details.countries-details > summary:hover { opacity: 0.8; }
    @media (max-width: 600px) {
        .hora-hero { min-height: var(--hero-h-mobile); }
.offset-table { font-size: 0.78rem; }
        .offset-table th, .offset-table td { padding: 0.4rem 0.5rem; }
        .local-tz-badge { font-size: 1.2rem; }
    }
