/* ============================================================
   Moban 8-10-16 — main.css
   Thiết kế: Dòng thời gian dọc (D-Class Timeline / Roadmap)
   Bảng màu: mận tím #6B2D5C · vàng kim #E9C46A · kem ấm #F9F5F0
   ============================================================ */

html, body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Biến & nền tảng ---------- */
:root {
    --plum: #6B2D5C;
    --plum-deep: #4a1d40;
    --plum-ink: #341229;
    --gold: #E9C46A;
    --gold-deep: #c9a24a;
    --cream: #F9F5F0;
    --cream-soft: #fdfbf7;
    --ink: #3a2433;
    --ink-soft: #6f5a68;
    --card-radius: 10px;
    --font-display: 'Playfair Display', 'Times New Roman', serif;
    --font-body: 'Be Vietnam Pro', 'Segoe UI', Tahoma, sans-serif;
    --shadow-soft: 0 10px 30px rgba(107, 45, 92, 0.12);
    --shadow-lift: 0 18px 44px rgba(52, 18, 41, 0.22);
    --nav-width: 244px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--cream);
    background-image:
        radial-gradient(circle at 12% 8%, rgba(233, 196, 106, 0.10) 0, transparent 34%),
        radial-gradient(circle at 88% 90%, rgba(107, 45, 92, 0.07) 0, transparent 40%);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--plum);
    line-height: 1.22;
    margin: 0 0 0.55em;
}

a {
    color: var(--plum);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--gold-deep);
}

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

/* ---------- Bố cục tổng thể: nav trái + nội dung ---------- */
.layout-shell {
    display: grid;
    grid-template-columns: var(--nav-width) minmax(0, 1fr);
    grid-template-areas: "nav main";
    min-height: 100vh;
}

.site-main-wrap {
    grid-area: main;
    min-width: 0;
}

/* ---------- Điều hướng dọc bên trái ---------- */
.side-nav {
    grid-area: nav;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background: linear-gradient(178deg, var(--plum) 0%, var(--plum-deep) 62%, var(--plum-ink) 100%);
    color: var(--cream);
    padding: 34px 26px 28px;
    display: flex;
    flex-direction: column;
    z-index: 120;
    box-shadow: 6px 0 24px rgba(52, 18, 41, 0.18);
}

.side-nav-inner {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.site-logo .logo-img {
    max-height: 62px;
    width: auto;
    display: block;
}

.side-nav .site-logo {
    margin-bottom: 34px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(233, 196, 106, 0.28);
}

.main-nav {
    flex: 1 1 auto;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-menu li a {
    display: block;
    position: relative;
    padding: 11px 14px 11px 26px;
    color: rgba(249, 245, 240, 0.82);
    font-weight: 500;
    font-size: 0.96rem;
    letter-spacing: 0.02em;
    border-radius: 8px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-menu li a::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(233, 196, 106, 0.35);
    transform: translateY(-50%);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    color: var(--gold);
    background: rgba(233, 196, 106, 0.09);
    transform: translateX(3px);
}

.nav-menu li a:hover::before,
.nav-menu li.current-menu-item a::before,
.nav-menu li.current_page_item a::before {
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(233, 196, 106, 0.18);
}

.side-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
}

.side-nav-ornament {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 26px 0 14px;
}

.ornament-line {
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 196, 106, 0.55), transparent);
}

.ornament-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.side-nav-note {
    margin: 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(233, 196, 106, 0.75);
    text-align: center;
}

/* Thanh trên cùng + nút burger (chỉ hiện ở mobile) */
.mobile-topbar {
    display: none;
}

.nav-overlay {
    display: none;
}

.nav-toggle {
    background: none;
    border: 0;
    padding: 10px;
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Nút bấm ---------- */
.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: var(--plum-ink);
    box-shadow: 0 8px 22px rgba(233, 196, 106, 0.4);
}

.btn-gold:hover {
    color: var(--plum-ink);
    box-shadow: 0 12px 28px rgba(233, 196, 106, 0.55);
}

.btn-outline {
    border-color: var(--plum);
    color: var(--plum);
    background: transparent;
}

.btn-outline:hover {
    background: var(--plum);
    color: var(--cream);
}

.btn-ghost {
    border-color: rgba(249, 245, 240, 0.55);
    color: var(--cream);
    background: rgba(249, 245, 240, 0.06);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.86rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-login {
    border-color: rgba(233, 196, 106, 0.6);
    color: var(--gold);
    background: transparent;
}

.btn-login:hover {
    background: rgba(233, 196, 106, 0.12);
    color: var(--gold);
}

.btn-register {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: var(--plum-ink);
}

.btn-register:hover {
    color: var(--plum-ink);
    box-shadow: 0 8px 20px rgba(233, 196, 106, 0.4);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--cream);
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 18% 30%, rgba(107, 45, 92, 0.62) 0%, transparent 58%),
        linear-gradient(96deg, rgba(52, 18, 41, 0.92) 0%, rgba(74, 29, 64, 0.78) 46%, rgba(52, 18, 41, 0.38) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 90px;
}

.hero-eyebrow {
    margin: 0 0 14px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    margin: 0 0 20px;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 800;
    color: var(--cream);
    text-shadow: 0 4px 30px rgba(52, 18, 41, 0.5);
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    max-width: 560px;
    margin: 0 0 30px;
    font-size: 1.06rem;
    color: rgba(249, 245, 240, 0.86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    list-style: none;
    margin: 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(233, 196, 106, 0.3);
}

.hero-stats li {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
}

.hero-stats span {
    font-size: 0.85rem;
    color: rgba(249, 245, 240, 0.72);
}

/* ---------- Tiêu đề khối ---------- */
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.section-kicker {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    margin-bottom: 12px;
}

.section-sub {
    margin: 0;
    color: var(--ink-soft);
}

/* ---------- Tab lọc dòng thời gian ---------- */
.timeline-section {
    padding: 84px 0 40px;
}

.tl-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 56px;
}

.tl-tab {
    padding: 10px 26px;
    border-radius: 999px;
    border: 1px solid rgba(107, 45, 92, 0.35);
    background: var(--cream-soft);
    color: var(--plum);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.tl-tab:hover {
    border-color: var(--gold);
    color: var(--gold-deep);
    transform: translateY(-2px);
}

.tl-tab.is-active {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
    border-color: var(--plum);
    color: var(--gold);
    box-shadow: 0 8px 20px rgba(107, 45, 92, 0.35);
}

/* ---------- Dòng thời gian: trục giữa + nút xen kẽ ---------- */
.tl-track {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.tl-track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent 0%, rgba(107, 45, 92, 0.45) 6%, rgba(107, 45, 92, 0.45) 94%, transparent 100%);
    border-radius: 3px;
}

.tl-node {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 76px 1fr;
    grid-template-areas: "card spine side";
    margin-bottom: 44px;
}

.tl-node:nth-child(even) {
    grid-template-areas: "side spine card";
}

.tl-node.is-hidden {
    display: none;
}

.tl-dot {
    grid-area: spine;
    justify-self: center;
    align-self: start;
    width: 18px;
    height: 18px;
    margin-top: 34px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--cream);
    box-shadow: 0 0 0 3px var(--gold), 0 4px 14px rgba(233, 196, 106, 0.6);
    z-index: 2;
}

.tl-card {
    grid-area: card;
    background: var(--cream-soft);
    border-radius: var(--card-radius);
    border: 1px solid rgba(107, 45, 92, 0.12);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tl-media {
    height: 190px;
    overflow: hidden;
    background: var(--plum-deep);
}

.tl-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.tl-card:hover .tl-media img {
    transform: scale(1.06);
}

.tl-body {
    padding: 22px 26px 26px;
}

.tl-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tl-tag-sukien {
    background: rgba(107, 45, 92, 0.12);
    color: var(--plum);
}

.tl-tag-phienban {
    background: rgba(233, 196, 106, 0.25);
    color: var(--gold-deep);
}

.tl-tag-khuyenmai {
    background: rgba(163, 58, 58, 0.12);
    color: #a33a3a;
}

.tl-date {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gold-deep);
    margin-bottom: 8px;
}

.tl-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tl-title a {
    color: var(--plum);
}

.tl-title a:hover {
    color: var(--gold-deep);
}

.tl-excerpt {
    margin: 0 0 16px;
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.tl-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--plum);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

.tl-link:hover {
    color: var(--gold-deep);
}

/* ---------- Game đề xuất ---------- */
.games-section {
    padding: 70px 0;
    background:
        linear-gradient(180deg, rgba(107, 45, 92, 0.045), rgba(107, 45, 92, 0.045));
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.game-card {
    background: var(--cream-soft);
    border-radius: var(--card-radius);
    border: 1px solid rgba(107, 45, 92, 0.12);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.game-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--plum-deep);
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.game-card:hover .game-thumb img {
    transform: scale(1.07);
}

.game-score {
    position: absolute;
    top: 12px;
    right: 12px;
    min-width: 44px;
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--plum-ink);
    font-weight: 800;
    font-size: 0.86rem;
    text-align: center;
    box-shadow: 0 6px 14px rgba(52, 18, 41, 0.35);
}

.game-info {
    padding: 18px 20px 22px;
    text-align: center;
}

.game-name {
    font-size: 1.12rem;
    margin-bottom: 4px;
}

.game-genre {
    margin: 0 0 14px;
    font-size: 0.82rem;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ---------- Tin tức ---------- */
.news-section {
    padding: 76px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.news-card {
    background: var(--cream-soft);
    border-radius: var(--card-radius);
    border: 1px solid rgba(107, 45, 92, 0.12);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.news-card-link {
    display: block;
    color: inherit;
}

.news-thumb {
    height: 160px;
    overflow: hidden;
    background: var(--plum-deep);
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-card:hover .news-thumb img {
    transform: scale(1.06);
}

.news-body {
    padding: 18px 20px 22px;
}

.news-date {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold-deep);
    margin-bottom: 8px;
}

.news-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--plum);
}

.news-excerpt {
    margin: 0;
    font-size: 0.88rem;
    color: var(--ink-soft);
}

.news-more {
    text-align: center;
    margin-top: 36px;
}

.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--ink-soft);
}

/* ---------- CTA ---------- */
.cta-section {
    padding: 20px 0 90px;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 48px 54px;
    border-radius: var(--card-radius);
    background: linear-gradient(120deg, var(--plum) 0%, var(--plum-deep) 58%, var(--plum-ink) 100%);
    box-shadow: var(--shadow-lift);
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233, 196, 106, 0.28) 0%, transparent 70%);
}

.cta-title {
    color: var(--cream);
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.cta-desc {
    margin: 0;
    color: rgba(249, 245, 240, 0.78);
}

.cta-banner .btn {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* ---------- Trang hero phụ (archive/index/page) ---------- */
.page-hero {
    padding: 66px 0 46px;
    text-align: center;
    background: linear-gradient(180deg, rgba(107, 45, 92, 0.09), transparent);
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
}

.page-sub {
    margin: 0 auto;
    max-width: 560px;
    color: var(--ink-soft);
}

.archive-section {
    padding: 20px 0 80px;
}

/* ---------- Phân trang ---------- */
.pagination-wrap {
    margin-top: 46px;
    text-align: center;
}

.pagination-wrap .nav-links {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(107, 45, 92, 0.3);
    background: var(--cream-soft);
    color: var(--plum);
    font-weight: 600;
    transition: all 0.25s ease;
}

.pagination-wrap .page-numbers:hover {
    border-color: var(--gold);
    color: var(--gold-deep);
}

.pagination-wrap .page-numbers.current {
    background: var(--plum);
    border-color: var(--plum);
    color: var(--gold);
}

/* ---------- Trạng thái trống ---------- */
.empty-state {
    text-align: center;
    padding: 70px 20px;
    background: var(--cream-soft);
    border-radius: var(--card-radius);
    border: 1px dashed rgba(107, 45, 92, 0.3);
}

.empty-state h2 {
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--ink-soft);
    margin: 0 0 22px;
}

/* ---------- Trang chi tiết (single) ---------- */
.single-header {
    padding: 60px 0 34px;
    background: linear-gradient(180deg, rgba(107, 45, 92, 0.09), transparent);
}

.single-breadcrumb {
    font-size: 0.84rem;
    color: var(--ink-soft);
    margin-bottom: 16px;
}

.single-breadcrumb a {
    color: var(--ink-soft);
}

.single-breadcrumb a:hover {
    color: var(--gold-deep);
}

.bc-sep {
    margin: 0 8px;
    color: var(--gold);
    font-size: 0.6rem;
    vertical-align: middle;
}

.single-title {
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    margin-bottom: 14px;
}

.single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.single-banner {
    margin-bottom: 34px;
}

.single-banner img {
    width: 100%;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-soft);
}

.single-content-wrap {
    padding-bottom: 60px;
}

.single-content,
.entry-content {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.02rem;
}

.entry-content p {
    margin: 0 0 1.2em;
}

.entry-content h2,
.entry-content h3 {
    margin-top: 1.6em;
}

.entry-content img {
    border-radius: var(--card-radius);
}

.entry-content blockquote {
    margin: 1.6em 0;
    padding: 18px 26px;
    border-left: 4px solid var(--gold);
    background: rgba(233, 196, 106, 0.12);
    border-radius: 0 var(--card-radius) var(--card-radius) 0;
    font-style: italic;
    color: var(--plum);
}

.single-download-card {
    max-width: 780px;
    margin: 40px auto;
    padding: 34px 38px;
    text-align: center;
    border-radius: var(--card-radius);
    background: linear-gradient(120deg, var(--plum), var(--plum-deep));
    box-shadow: var(--shadow-lift);
}

.single-download-card h3 {
    color: var(--gold);
    margin-bottom: 8px;
}

.single-download-card p {
    color: rgba(249, 245, 240, 0.8);
    margin: 0 0 20px;
}

.single-pager {
    max-width: 780px;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "prev next";
    gap: 20px;
}

.pager-item {
    padding: 18px 22px;
    background: var(--cream-soft);
    border: 1px solid rgba(107, 45, 92, 0.12);
    border-radius: var(--card-radius);
}

.pager-prev {
    grid-area: prev;
}

.pager-next {
    grid-area: next;
    text-align: right;
}

.pager-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 6px;
}

.pager-item a {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--plum);
}

.pager-item a:hover {
    color: var(--gold-deep);
}

.related-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, rgba(107, 45, 92, 0.05), transparent);
}

.comments-container {
    padding-bottom: 70px;
}

/* ---------- Trang tĩnh (page) ---------- */
.static-page-section {
    padding: 10px 0 80px;
}

.static-page-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 44px 48px;
    background: var(--cream-soft);
    border-radius: var(--card-radius);
    border: 1px solid rgba(107, 45, 92, 0.12);
    box-shadow: var(--shadow-soft);
}

.static-page-banner {
    margin-bottom: 26px;
}

.static-page-banner img {
    border-radius: var(--card-radius);
    width: 100%;
}

.static-page-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(107, 45, 92, 0.14);
}

/* ---------- Footer ---------- */
.site-footer {
    background: linear-gradient(180deg, var(--plum-deep) 0%, var(--plum-ink) 100%);
    color: rgba(249, 245, 240, 0.8);
    padding: 60px 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas: "w1 w2 w3";
    gap: 36px;
    margin-bottom: 36px;
}

.footer-widget {
    grid-area: auto;
}

.footer-widget:nth-child(1) { grid-area: w1; }
.footer-widget:nth-child(2) { grid-area: w2; }
.footer-widget:nth-child(3) { grid-area: w3; }

.widget-title {
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.site-footer a {
    color: rgba(249, 245, 240, 0.8);
}

.site-footer a:hover {
    color: var(--gold);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
    padding: 22px 0;
    border-top: 1px solid rgba(233, 196, 106, 0.2);
    border-bottom: 1px solid rgba(233, 196, 106, 0.2);
    margin-bottom: 28px;
    font-size: 0.92rem;
}

.footer-bottom {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(249, 245, 240, 0.72);
    margin: 18px 0 10px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(249, 245, 240, 0.5);
    margin: 14px 0 0;
}

/* ---------- Hiệu ứng cuộn (scroll reveal) ---------- */
.js .scroll-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
