/* ============================================================
   Moban 8-10-19 — main.css
   Đêm Xanh & Hồng (Midnight #1A1A2E x Rose #E94560)
   Dòng thời gian chữ Z + điều hướng toàn màn hình
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Be+Vietnam+Pro:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

html, body { overflow-x: hidden; }

:root {
    --midnight: #1A1A2E;
    --midnight-2: #16213E;
    --deep: #0F0F1E;
    --rose: #E94560;
    --rose-soft: #FF7A8E;
    --ember: #FF8A5C;
    --fog: #F5F5F7;
    --white: #FFFFFF;
    --muted: #6F6F88;
    --line: rgba(26, 26, 46, 0.09);
    --radius: 16px;
    --grad-rose: linear-gradient(135deg, #E94560 0%, #FF8A5C 100%);
    --grad-night: linear-gradient(150deg, #1A1A2E 0%, #16213E 55%, #34163B 100%);
    --shadow-card: 0 18px 45px rgba(26, 26, 46, 0.14);
    --shadow-rose: 0 14px 34px rgba(233, 69, 96, 0.35);
    --font-display: 'Bungee', cursive;
    --font-body: 'Be Vietnam Pro', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--midnight);
    background-color: var(--fog);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose); }
a:hover { color: var(--midnight); }
h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 0.6em; font-weight: 700; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

.text-grad {
    background: var(--grad-rose);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-rose { background: var(--grad-rose); color: #fff; box-shadow: var(--shadow-rose); }
.btn-rose:hover { color: #fff; box-shadow: 0 20px 42px rgba(233, 69, 96, 0.5); }
.btn-ghost { background: transparent; border-color: rgba(26, 26, 46, 0.25); color: var(--midnight); }
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); }
.btn-login { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.28); color: #fff; padding: 9px 20px; font-size: 14px; }
.btn-login:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }
.btn-register { background: var(--grad-rose); color: #fff; padding: 9px 20px; font-size: 14px; box-shadow: var(--shadow-rose); }
.btn-register:hover { color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn-xl { padding: 18px 44px; font-size: 18px; }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 150;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.92) 0%, rgba(26, 26, 46, 0.82) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(233, 69, 96, 0.22);
    transition: background 0.4s ease;
}
body.menu-open .site-header { background: transparent; border-bottom-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
.site-logo { display: flex; align-items: center; z-index: 2; }
.logo-img { max-height: 46px; width: auto; }
.header-actions { display: flex; gap: 10px; margin-left: auto; }

.nav-toggle {
    position: relative;
    z-index: 210;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.nav-toggle:hover { border-color: var(--rose); }
.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.35s ease, opacity 0.3s ease;
}
body.menu-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--rose); }
body.menu-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--rose); }

/* ---------- Fullscreen overlay navigation ---------- */
.overlay-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--grad-night);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-28px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    overflow: hidden;
}
body.menu-open .overlay-nav { opacity: 1; visibility: visible; transform: none; }
body.menu-open { overflow: hidden; }
.overlay-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(560px 420px at 82% 18%, rgba(233, 69, 96, 0.28), transparent 70%),
        radial-gradient(480px 400px at 12% 86%, rgba(22, 33, 62, 0.9), transparent 72%);
    pointer-events: none;
}
.overlay-inner { position: relative; text-align: center; padding: 90px 24px 40px; }
.overlay-menu { list-style: none; margin: 0 0 40px; padding: 0; }
.overlay-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
body.menu-open .overlay-item { opacity: 1; transform: none; }
body.menu-open .overlay-item:nth-child(1) { transition-delay: 0.10s; }
body.menu-open .overlay-item:nth-child(2) { transition-delay: 0.18s; }
body.menu-open .overlay-item:nth-child(3) { transition-delay: 0.26s; }
body.menu-open .overlay-item:nth-child(4) { transition-delay: 0.34s; }
body.menu-open .overlay-item:nth-child(5) { transition-delay: 0.42s; }
.overlay-index {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--rose);
    margin-bottom: 2px;
}
.overlay-item a {
    font-family: var(--font-display);
    font-size: clamp(26px, 4.6vw, 50px);
    color: #fff;
    text-decoration: none;
    line-height: 1.35;
    display: inline-block;
    padding: 4px 10px;
    transition: color 0.3s ease, transform 0.3s ease, letter-spacing 0.3s ease;
}
.overlay-item a:hover { color: var(--rose); transform: translateX(8px); letter-spacing: 1px; }
.overlay-cta { opacity: 0; transition: opacity 0.5s ease 0.5s; }
body.menu-open .overlay-cta { opacity: 1; }

/* ---------- Hero ---------- */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: var(--deep);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift { from { transform: scale(1.06) translateY(0); } to { transform: scale(1.12) translateY(-14px); } }
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 460px at 78% 30%, rgba(233, 69, 96, 0.24), transparent 70%),
        linear-gradient(180deg, rgba(15, 15, 30, 0.62) 0%, rgba(26, 26, 46, 0.82) 60%, var(--fog) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 140px 20px 90px; max-width: 1180px; }
.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rose-soft);
    border: 1px solid rgba(233, 69, 96, 0.5);
    border-radius: 999px;
    padding: 7px 18px;
    margin-bottom: 22px;
    background: rgba(233, 69, 96, 0.1);
}
.hero-title { font-family: var(--font-display); font-size: clamp(32px, 5.4vw, 62px); margin-bottom: 20px; text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45); }
.hero-desc { max-width: 640px; font-size: 17px; color: rgba(255, 255, 255, 0.85); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-section .btn-ghost { border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.hero-section .btn-ghost:hover { border-color: var(--rose); color: var(--rose); }
.hero-scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 2px; height: 56px; background: rgba(255, 255, 255, 0.2); border-radius: 2px; overflow: hidden; }
.hero-scroll-hint span { display: block; width: 100%; height: 22px; background: var(--rose); animation: hintSlide 1.8s ease-in-out infinite; }
@keyframes hintSlide { 0% { transform: translateY(-24px); } 100% { transform: translateY(60px); } }

/* ---------- Section headings ---------- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 12px;
}
.section-title { font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 38px); margin-bottom: 14px; }
.section-desc { color: var(--muted); margin: 0; }

/* ---------- Z-Timeline ---------- */
.timeline-section { padding: 96px 0 60px; }
.z-timeline { position: relative; max-width: 1040px; margin: 0 auto; padding: 10px 0 30px; }
.timeline-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    margin-left: -1.5px;
    border-radius: 3px;
    background: repeating-linear-gradient(to bottom, rgba(233, 69, 96, 0.55) 0 14px, transparent 14px 26px);
}
.tl-node {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 84px 1fr;
    grid-template-areas: ". mid card";
    align-items: center;
    margin-bottom: 58px;
}
.tl-node.tl-right { grid-template-areas: "card mid ."; }
.tl-node::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 130px;
    border-top: 3px dashed rgba(233, 69, 96, 0.5);
    z-index: 1;
    pointer-events: none;
}
.tl-node.tl-left::before { right: calc(50% + 22px); transform-origin: 100% 50%; transform: rotate(28deg); }
.tl-node.tl-right::before { left: calc(50% + 22px); transform-origin: 0 50%; transform: rotate(-28deg); }
.tl-dot {
    grid-area: mid;
    justify-self: center;
    z-index: 3;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--midnight);
    border: 2px solid var(--rose);
    color: #fff;
    font-family: var(--font-display);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(233, 69, 96, 0.14), 0 0 26px rgba(233, 69, 96, 0.45);
    animation: dotPulse 2.6s ease-in-out infinite;
}
@keyframes dotPulse { 0%, 100% { box-shadow: 0 0 0 6px rgba(233, 69, 96, 0.14), 0 0 26px rgba(233, 69, 96, 0.45); } 50% { box-shadow: 0 0 0 10px rgba(233, 69, 96, 0.08), 0 0 34px rgba(233, 69, 96, 0.6); } }
.tl-card {
    grid-area: card;
    display: grid;
    grid-template-columns: 250px 1fr;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--line);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.tl-card:hover { transform: translateY(-6px); box-shadow: 0 26px 55px rgba(26, 26, 46, 0.22); }
.tl-media { position: relative; overflow: hidden; }
.tl-img { width: 100%; height: 100%; object-fit: cover; min-height: 210px; }
.tl-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--grad-rose);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 999px;
    padding: 4px 12px;
    box-shadow: var(--shadow-rose);
}
.tl-body { padding: 26px 26px 24px; }
.tl-step { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--rose); }
.tl-title { font-family: var(--font-display); font-size: 20px; margin: 8px 0 10px; }
.tl-desc { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }

/* ---------- Poster cards ---------- */
.poster-section { padding: 60px 0 90px; }
.poster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.poster-card {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    text-decoration: none;
    border: 1px solid rgba(233, 69, 96, 0.28);
    box-shadow: var(--shadow-card);
}
.poster-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.poster-card:hover .poster-img { transform: scale(1.07); }
.poster-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 15, 30, 0) 42%, rgba(15, 15, 30, 0.88) 100%); }
.poster-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; color: #fff; }
.poster-name { font-family: var(--font-display); font-size: 22px; margin-bottom: 4px; color: #fff; }
.poster-time { display: block; font-size: 13px; color: rgba(255, 255, 255, 0.72); margin-bottom: 10px; }
.poster-cta {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--rose-soft);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.poster-card:hover .poster-cta { opacity: 1; transform: none; }

/* ---------- News ---------- */
.news-section { padding: 30px 0 90px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 26px 55px rgba(26, 26, 46, 0.2); }
.news-link { display: block; text-decoration: none; color: inherit; }
.news-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--midnight-2); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-thumb img { transform: scale(1.06); }
.news-body { padding: 20px 22px 24px; }
.news-date { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rose); }
.news-title { font-size: 17px; margin: 8px 0; }
.news-title:hover { color: var(--rose); }
.news-excerpt { color: var(--muted); font-size: 14px; margin: 0; }
.news-more { text-align: center; margin-top: 42px; }
.empty-note { color: var(--muted); text-align: center; padding: 30px 0; }

/* ---------- Download CTA ---------- */
.cta-section { padding: 20px 0 100px; }
.cta-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    background: var(--grad-night);
    border: 1px solid rgba(233, 69, 96, 0.35);
    border-radius: var(--radius);
    padding: 52px 56px;
    color: #fff;
}
.cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(420px 260px at 88% 20%, rgba(233, 69, 96, 0.35), transparent 70%);
    pointer-events: none;
}
.cta-title { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); margin-bottom: 10px; color: #fff; }
.cta-desc { color: rgba(255, 255, 255, 0.78); margin: 0; max-width: 520px; }
.cta-panel .btn { position: relative; z-index: 1; }

/* ---------- Page hero (archive / single / page) ---------- */
.page-hero {
    position: relative;
    background: var(--grad-night);
    color: #fff;
    padding: 140px 0 64px;
    margin-bottom: 56px;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(500px 300px at 85% 10%, rgba(233, 69, 96, 0.3), transparent 70%),
        radial-gradient(420px 300px at 8% 95%, rgba(233, 69, 96, 0.14), transparent 72%);
    pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .section-kicker { color: var(--rose-soft); }
.page-hero-title { font-family: var(--font-display); font-size: clamp(28px, 4.4vw, 46px); margin-bottom: 12px; }
.page-hero .section-desc { color: rgba(255, 255, 255, 0.72); }

/* ---------- Content layout (grid areas) ---------- */
.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    grid-template-areas: "main side";
    gap: 40px;
    padding-bottom: 90px;
}
.content-main { grid-area: main; min-width: 0; }
.content-sidebar { grid-area: side; }

/* Post grid */
.post-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.post-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 26px 55px rgba(26, 26, 46, 0.2); }
.post-thumb { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--midnight-2); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-thumb img { transform: scale(1.06); }
.post-card-body { padding: 20px 22px 24px; }
.post-date { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rose); }
.post-title { font-size: 18px; margin: 8px 0 10px; }
.post-title a { color: var(--midnight); text-decoration: none; }
.post-title a:hover { color: var(--rose); }
.post-excerpt { color: var(--muted); font-size: 14px; }
.post-more { font-size: 14px; font-weight: 700; text-decoration: none; }
.pagination-bar { margin-top: 44px; text-align: center; }
.pagination-bar .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination-bar .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 10px 14px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    color: var(--midnight);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}
.pagination-bar .page-numbers.current, .pagination-bar .page-numbers:hover { background: var(--grad-rose); color: #fff; border-color: transparent; box-shadow: var(--shadow-rose); }

/* Sidebar */
.sidebar-widget {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    padding: 24px;
    margin-bottom: 26px;
}
.widget-title {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px dashed rgba(233, 69, 96, 0.4);
}
.sidebar-search { display: flex; gap: 8px; }
.search-input {
    flex: 1;
    min-width: 0;
    padding: 11px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--fog);
    outline: none;
    transition: border-color 0.25s ease;
}
.search-input:focus { border-color: var(--rose); }
.search-btn {
    border: none;
    border-radius: var(--radius);
    background: var(--grad-rose);
    color: #fff;
    padding: 0 16px;
    cursor: pointer;
    transition: transform 0.25s ease;
}
.search-btn:hover { transform: scale(1.06); }
.sidebar-cat-list { list-style: none; margin: 0; padding: 0; }
.sidebar-cat-list li { border-bottom: 1px dashed var(--line); }
.sidebar-cat-list li:last-child { border-bottom: none; }
.sidebar-cat-list a {
    display: block;
    padding: 10px 2px;
    color: var(--midnight);
    text-decoration: none;
    font-size: 14.5px;
    transition: color 0.25s ease, padding-left 0.25s ease;
}
.sidebar-cat-list a:hover { color: var(--rose); padding-left: 8px; }
.sidebar-dl p { color: var(--muted); font-size: 14px; }

/* ---------- Single article ---------- */
.single-article {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    padding: 34px;
}
.single-thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.entry-content { font-size: 16px; color: #33334d; }
.entry-content img { border-radius: 12px; }
.entry-content a { color: var(--rose); }
.entry-content h2, .entry-content h3 { margin-top: 1.4em; }
.entry-content blockquote {
    margin: 1.6em 0;
    padding: 18px 24px;
    border-left: 4px solid var(--rose);
    background: rgba(233, 69, 96, 0.06);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.single-dl-box {
    margin-top: 34px;
    padding: 26px;
    border-radius: var(--radius);
    background: var(--grad-night);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.single-dl-box p { margin: 0; color: rgba(255, 255, 255, 0.82); }

/* Mini timeline (related posts) */
.related-section { margin-top: 54px; }
.related-section .section-title { font-size: 24px; }
.mini-timeline { position: relative; padding-left: 30px; }
.mini-timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, rgba(233, 69, 96, 0.55) 0 10px, transparent 10px 18px);
}
.mini-node {
    position: relative;
    display: block;
    padding: 12px 18px;
    margin-bottom: 12px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--midnight);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.mini-node:hover { transform: translateX(8px); border-color: rgba(233, 69, 96, 0.5); box-shadow: var(--shadow-card); color: var(--midnight); }
.mini-dot {
    position: absolute;
    left: -29px;
    top: 22px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--rose);
    box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.18);
}
.mini-date { display: block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); }
.mini-title { display: block; font-weight: 600; font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep); color: rgba(255, 255, 255, 0.72); padding: 64px 0 36px; border-top: 1px solid rgba(233, 69, 96, 0.25); }
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "fw1 fw2 fw3";
    gap: 40px;
    margin-bottom: 44px;
}
.footer-widget:nth-child(1) { grid-area: fw1; }
.footer-widget:nth-child(2) { grid-area: fw2; }
.footer-widget:nth-child(3) { grid-area: fw3; }
.site-footer .widget-title { color: #fff; border-bottom-color: rgba(233, 69, 96, 0.45); }
.site-footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.site-footer a:hover { color: var(--rose-soft); }
.footer-bottom { border-top: 1px dashed rgba(255, 255, 255, 0.14); padding-top: 30px; text-align: center; }
.disclaimer-text { font-size: 13.5px; color: rgba(255, 255, 255, 0.55); max-width: 760px; margin: 18px auto 0; line-height: 1.8; }

/* ---------- Lazy reveal animations ---------- */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js img.lazy-img { opacity: 0; transition: opacity 0.9s ease; }
.js img.lazy-img.is-loaded { opacity: 1; }

/* ---------- WordPress core classes ---------- */
.alignwide { margin-left: -40px; margin-right: -40px; max-width: calc(100% + 80px); }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--muted); text-align: center; padding: 8px 0; }
.sticky { display: block; }
.screen-reader-text {
    border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
    height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
}
