/* ==========================================================================
   NangCuc V2 - Modern Dark Theme CSS
   Background: #0c0d10 | Cards: #1a1c22 | Accent: #e8734a
   ========================================================================== */

:root {
    --bg-body: #0c0d10;
    --bg-header: #0f1014;
    --bg-card: #1a1c22;
    --bg-card-hover: #22252d;
    --bg-section: #111318;
    --bg-footer: #0a0b0e;
    --text-primary: #e8e8e8;
    --text-secondary: #a0a3ab;
    --text-muted: #6b6e76;
    --accent: #fea511;
    --accent-hover: #ffb83d;
    --accent-soft: rgba(254, 165, 17, 0.15);
    --border-color: #2a2d35;
    --radius: 8px;
    --radius-sm: 4px;
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
    --container: 1600px;
    --gap: 12px;
    --header-height: 56px;
    --transition: 0.25s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--bg-body);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--text-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-weight: 600; line-height: 1.3; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}
.site-logo img { height: 32px; width: auto; }
.site-logo a {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 800;
    color: #f5c518;
    text-decoration: none;
    font-style: italic;
}
.site-logo span { color: #fff; }


/* Navigation */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a,
.main-nav li a {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ccc;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.main-nav a:hover,
.main-nav a.active,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
    color: #fff;
}
.main-nav li { list-style: none; display: inline-block; }

/* Search */
.header-search {
    position: relative;
    width: 200px;
}
.header-search input {
    width: 100%;
    background: #1a1c22;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 7px 32px 7px 12px;
    color: #ccc;
    font-size: 13px;
    outline: none;
    transition: border-color var(--transition);
}
.header-search input::placeholder { color: #666; }
.header-search input:focus { border-color: #555; }
.header-search button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
}
.header-search button:hover { color: #fff; }

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
}


/* ==========================================================================
   SECTIONS & CONTENT
   ========================================================================== */
.site-main { padding: 24px 0; }

.section {
    margin-bottom: 40px;
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
}
.section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    padding-left: 12px;
    border-left: 3px solid var(--accent);
}
.section-title i { display: none; }
.section-more {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}
.section-more:hover { color: var(--accent-hover); }

/* ==========================================================================
   FILM GRID
   ========================================================================== */
.film-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
}

.film-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    transition: transform var(--transition), box-shadow var(--transition);
}
.film-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.film-card a { display: block; }
.film-card .card-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.film-card .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}
.film-card:hover .card-thumb img { opacity: 0.85; }


/* Card badges */
.card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    gap: 4px;
    z-index: 2;
}
.badge {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    line-height: 1.4;
    text-transform: uppercase;
}
.badge-quality { background: var(--accent); color: #000; }
.badge-episode { background: rgba(0,0,0,0.7); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.badge-hd { background: #2196f3; color: #fff; }

/* Card number overlay - disabled */
.card-number {
    display: none;
}

/* Play overlay */
.card-play {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 3;
}
.card-play i {
    font-size: 40px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.film-card:hover .card-play { opacity: 1; }

/* Card info */
.card-info {
    padding: 10px 12px;
}
.card-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: 2.8em;
}
.card-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    display: flex;
    gap: 8px;
}


/* ==========================================================================
   SINGLE FILM PAGE
   ========================================================================== */
.single-hero {
    background: var(--bg-section);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
}
.player-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}
.player-wrapper iframe,
.player-wrapper video,
.player-wrapper .player-placeholder {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}
.player-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
}
.player-placeholder img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }

/* Episode list */
.episode-list {
    padding: 16px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}
.episode-list h3 { font-size: 14px; margin-bottom: 10px; color: var(--text-secondary); }
.episode-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.ep-btn {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    background: var(--bg-body);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}
.ep-btn:hover, .ep-btn.current {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

/* Film detail info */
.film-detail {
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    margin-bottom: 24px;
}
.film-detail-header {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}
.film-poster {
    width: 160px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
}
.film-poster img { width: 100%; height: auto; }
.film-info { flex: 1; }
.film-info h1 {
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--accent);
}
.film-info .film-name-en {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.film-meta-table {
    display: grid;
    gap: 8px;
}
.film-meta-row {
    display: flex;
    font-size: 13px;
}
.film-meta-row dt {
    width: 100px;
    flex-shrink: 0;
    color: var(--text-muted);
    font-weight: 500;
}
.film-meta-row dd { color: var(--text-primary); }
.film-meta-row dd a { color: var(--accent); }
.film-meta-row dd a:hover { text-decoration: underline; }

.film-description {
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Tags */
.film-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}
.film-tags a {
    padding: 4px 10px;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
}
.film-tags a:hover { border-color: var(--accent); color: var(--accent); }


/* ==========================================================================
   PAGINATION
   ========================================================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.pagination a,
.pagination span {
    display: inline-block;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
    min-width: 44px;
    text-align: center;
}
.pagination a:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}
.pagination span.current {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}
.pagination .dots {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 8px 6px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--bg-footer);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
    margin-top: 40px;
}

/* Row 1: Brand + Columns */
.footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}
.footer-columns {
    display: flex;
    gap: 24px;
}
.footer-col {
    flex: 1;
}
.footer-col h4,
.footer-col h2,
.footer-col h3,
.footer-col .widget-title,
.footer-col .wp-block-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    padding-left: 10px;
    border-left: 3px solid var(--accent);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li { list-style: none; }
.footer-col a {
    font-size: 13px;
    color: var(--text-secondary);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-col p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Row 2: Contact + Partners */
.footer-middle {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}
.footer-contact {
    flex-shrink: 0;
}
.footer-contact h4,
.footer-partners h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer-contact p {
    font-size: 13px;
    color: var(--text-secondary);
}
.footer-contact a { color: var(--accent); }
.footer-partners { flex: 1; }
.partner-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.partner-badge {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    transition: all var(--transition);
}
.partner-badge:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Row 3: Copyright */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: var(--text-muted); }

/* ==========================================================================
   SEARCH RESULTS / ARCHIVE
   ========================================================================== */
.archive-header {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
}
.archive-header h1 {
    font-size: 20px;
    color: var(--text-primary);
}
.archive-header p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 6px;
}

/* ==========================================================================
   404 / NO CONTENT
   ========================================================================== */
.no-content {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
}
.no-content h2 { font-size: 24px; margin-bottom: 12px; }
.no-content p { color: var(--text-secondary); margin-bottom: 20px; }


/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
    cursor: pointer;
    text-decoration: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent-hover); color: #fff; transform: translateY(-3px); }

/* ==========================================================================
   KEYWORDS / HOT TAGS
   ========================================================================== */
.hot-keywords {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    font-size: 12px;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.hot-keywords span { font-weight: 600; }
.hot-keywords a {
    padding: 3px 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
}
.hot-keywords a:hover { border-color: var(--accent); color: var(--accent); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .film-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-height: 50px; }
    .main-nav { display: none; }
    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0; right: 0;
        background: var(--bg-header);
        border-bottom: 1px solid var(--border-color);
        padding: 12px;
        z-index: 999;
    }
    .menu-toggle { display: block; }
    .header-search { width: 160px; }
    .film-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .film-detail-header { flex-direction: column; }
    .film-poster { width: 120px; }

    /* Hero section nhỏ lại trên mobile */
    .hero-section { padding: 24px 16px 20px; margin-bottom: 20px; }
    .hero-title { font-size: 20px; }
    .hero-subtitle { font-size: 12px; margin-bottom: 14px; }
    .hero-search input { padding: 10px 12px; font-size: 13px; }
    .hero-search button { padding: 10px 14px; font-size: 13px; }
    .hot-keywords { font-size: 11px; gap: 6px; }
    .hot-keywords a { padding: 3px 8px; font-size: 11px; }

    /* Badge nhỏ lại trên mobile */
    .badge { padding: 2px 6px; font-size: 10px; }
}

@media (max-width: 480px) {
    .film-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .header-search { width: 120px; }
    .header-search input { padding: 6px 30px 6px 10px; font-size: 12px; }
    .section-title { font-size: 15px; }
    .footer-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   SINGLE PHIM - REDESIGNED (matching nangcuc.cv layout)
   Player → Server buttons → Title + Meta → Tags → Description → Related
   ========================================================================== */

.single-player-section {
    margin: 0 -16px;
    background: #000;
}
.single-player-section .player-wrapper {
    max-width: 100%;
    margin: 0 auto;
}
.player-wrapper iframe,
.player-wrapper video {
    position: absolute;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

/* Server buttons section */
.server-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}
.server-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}
.server-label i { margin-right: 4px; }
.server-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.server-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.server-btn:hover,
.server-btn.active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}
.server-btn i { font-size: 14px; }

/* Film info section */
.film-info-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}
.film-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.film-meta-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.meta-badge {
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}
.meta-badge.badge-quality {
    background: var(--accent);
    color: #000;
}
.meta-item {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.meta-item i { font-size: 14px; }

.film-tags-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag-pill {
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 500;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all var(--transition);
}
.tag-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
}

/* Description section */
.film-description-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}
.film-description-section h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.film-description-section h4 i {
    color: var(--accent);
    margin-right: 6px;
}
.film-desc-content {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}
.film-desc-content p {
    margin-bottom: 10px;
}

/* Override for single page - remove old styles if any */
.single-phim-page .single-hero,
.single-phim-page .film-detail {
    display: none; /* hide old design blocks */
}


/* ==========================================================================
   ARCHIVE / TAXONOMY PAGE - Title style matching nangcuc.cv
   ========================================================================== */
.archive-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}
.archive-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 6px;
}


/* ==========================================================================
   HERO SECTION (Homepage banner with title + search + hot keywords)
   ========================================================================== */
.hero-section {
    text-align: center;
    padding: 50px 20px 40px;
    margin: 0 -16px 30px;
    background: linear-gradient(180deg, #131418 0%, var(--bg-body) 100%);
}
.hero-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}
.hero-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.hero-search {
    max-width: 540px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    background: #1a1c22;
    border: 1px solid #333;
    border-radius: 6px;
    overflow: hidden;
}
.hero-search input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
}
.hero-search input::placeholder { color: #666; }
.hero-search button {
    background: var(--accent);
    border: none;
    color: #000;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}
.hero-search button:hover { background: var(--accent-hover); color: #000; }
.hero-search button i { margin-right: 5px; }

.hot-keywords {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.hot-keywords span { font-weight: 500; white-space: nowrap; }
.hot-keywords a {
    padding: 4px 12px;
    background: #1e2028;
    border: 1px solid #333;
    border-radius: 20px;
    font-size: 12px;
    color: #ccc;
    transition: all var(--transition);
}
.hot-keywords a:hover { border-color: var(--accent); color: var(--accent); }


/* ==========================================================================
   PAGE (trang tĩnh) - Dark style matching theme
   ========================================================================== */
.page-content-section {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
}
.page-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}
.page-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}
.page-body p { margin-bottom: 14px; }
.page-body a { color: var(--accent); }
.page-body a:hover { text-decoration: underline; }
.page-body h2, .page-body h3, .page-body h4 {
    color: var(--text-primary);
    margin: 20px 0 10px;
}
.page-body h2 { font-size: 20px; }
.page-body h3 { font-size: 17px; }
.page-body h4 { font-size: 15px; }
.page-body ul, .page-body ol {
    padding-left: 20px;
    margin-bottom: 14px;
}
.page-body li { margin-bottom: 6px; }
.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 16px 0;
}
.page-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 12px 20px;
    margin: 16px 0;
    background: var(--bg-body);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-style: italic;
}


/* ==========================================================================
   ACTORS in single page
   ========================================================================== */
.film-actors {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.actors-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.actor-link {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}
.actor-link:hover {
    text-decoration: underline;
}


/* Footer responsive */
@media (max-width: 768px) {
    .footer-top { flex-direction: column; gap: 24px; }
    .footer-brand { width: 100%; }
    .footer-columns { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-middle { flex-direction: column; gap: 20px; }
    .partner-list { gap: 8px; }
    .partner-badge { padding: 6px 12px; font-size: 12px; }
}
@media (max-width: 480px) {
    .footer-columns { grid-template-columns: 1fr; }
}
