/* z0002 - Netflix Dark Cinema Theme */
/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    background-color: #141414;
    color: #e5e5e5;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ========================================
   Utility
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   Header
   ======================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(20,20,20,0.95) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #E50914;
    white-space: nowrap;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo:hover {
    color: #ff1a25;
}

/* Main Nav */
.main-nav {
    flex: 1;
    min-width: 0;
}

.main-nav > ul {
    display: flex;
    gap: 4px;
    align-items: center;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 8px 14px;
    font-size: 0.9rem;
    color: #b3b3b3;
    border-radius: 4px;
    transition: color 0.2s, background-color 0.2s;
    white-space: nowrap;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.current {
    color: #ffffff;
    background-color: rgba(255,255,255,0.08);
}

.main-nav > ul > li > a.current {
    color: #E50914;
}

/* Sub Nav (dropdown) */
.has-sub:hover .sub-nav {
    display: block;
}

.sub-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 8px 0;
    min-width: 140px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    z-index: 100;
}

.sub-nav li a {
    display: block;
    padding: 8px 18px;
    font-size: 0.85rem;
    color: #b3b3b3;
    transition: color 0.2s, background-color 0.2s;
}

.sub-nav li a:hover,
.sub-nav li a.current {
    color: #ffffff;
    background-color: rgba(229,9,20,0.15);
}

/* Header Search */
.header-search {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.header-search input {
    width: 200px;
    height: 36px;
    padding: 0 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: #ffffff;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s, background-color 0.2s;
}

.header-search input:focus {
    border-color: #E50914;
    background: rgba(255,255,255,0.12);
}

.header-search input::placeholder {
    color: #666;
}

.header-search button {
    height: 36px;
    padding: 0 16px;
    background: #E50914;
    border: 1px solid #E50914;
    border-radius: 0 4px 4px 0;
    color: #ffffff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.header-search button:hover {
    background: #ff1a25;
}

/* Mobile buttons */
.mobile-btns {
    display: none;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.mobile-btns button {
    background: none;
    border: none;
    color: #e5e5e5;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.mobile-btns button:hover {
    background: rgba(255,255,255,0.1);
}

/* Search Panel (mobile) */
.search-panel {
    display: none;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.search-panel.show {
    display: block;
}

.search-panel-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    gap: 0;
}

.search-panel-inner input {
    flex: 1;
    height: 40px;
    padding: 0 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
}

.search-panel-inner input:focus {
    border-color: #E50914;
}

.search-panel-inner input::placeholder {
    color: #666;
}

.search-panel-inner button {
    height: 40px;
    padding: 0 20px;
    background: #E50914;
    border: 1px solid #E50914;
    border-radius: 0 4px 4px 0;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-panel-inner button:hover {
    background: #ff1a25;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.show {
    display: block;
    max-height: 500px;
    overflow-y: auto;
}

.mobile-nav ul {
    padding: 8px 0;
}

.mobile-nav li a {
    display: block;
    padding: 10px 24px;
    color: #b3b3b3;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.2s, background-color 0.2s;
}

.mobile-nav li a:hover {
    color: #ffffff;
    background: rgba(229,9,20,0.1);
}

.mobile-nav li.sub-item a {
    padding-left: 44px;
    font-size: 0.88rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    margin-bottom: 40px;
}

.hero-slider {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    max-width: 1400px;
    margin: 0 auto;
    height: clamp(280px, 30vw, 440px);
}

.hero-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.hero-card:first-child {
    grid-row: span 2;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-card:hover img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 16px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.hero-overlay h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-card:first-child .hero-overlay h2 {
    font-size: 1.6rem;
}

.hero-overlay .badge {
    display: inline-block;
    background: #E50914;
    color: #ffffff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 500;
}

/* ========================================
   Content Sections
   ======================================== */
.content-section {
    max-width: 1400px;
    margin: 0 auto 48px;
    padding: 0 24px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    padding-left: 14px;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: #E50914;
    border-radius: 2px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.more-link {
    font-size: 0.88rem;
    color: #999;
    transition: color 0.2s;
}

.more-link:hover {
    color: #E50914;
}

/* ========================================
   Video Grid
   ======================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #1a1a1a;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    z-index: 10;
}

.item a {
    display: block;
    color: inherit;
}

.item-thumb {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #222;
}

.item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.item:hover .item-thumb img {
    transform: scale(1.08);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
    pointer-events: none;
}

.item .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #E50914;
    color: #ffffff;
    font-size: 0.72rem;
    padding: 2px 7px;
    border-radius: 3px;
    font-weight: 500;
    z-index: 2;
}

.item .info {
    padding: 10px 10px 12px;
}

.item .info h3 {
    font-size: 0.88rem;
    font-weight: 500;
    color: #e5e5e5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.3;
}

.item:hover .info h3 {
    color: #ffffff;
}

/* ========================================
   List Page
   ======================================== */
.list-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

.list-layout {
    display: flex;
    gap: 32px;
}

.sidebar {
    width: 200px;
    flex-shrink: 0;
}

.sidebar-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    padding: 12px 0;
    border-bottom: 2px solid #E50914;
    margin-bottom: 8px;
}

.sidebar-section ul li a {
    display: block;
    padding: 8px 12px;
    font-size: 0.88rem;
    color: #999;
    border-radius: 4px;
    transition: color 0.2s, background-color 0.2s;
}

.sidebar-section ul li a:hover,
.sidebar-section ul li a.current {
    color: #ffffff;
    background: rgba(229,9,20,0.12);
}

.sidebar-section ul li a.current {
    color: #E50914;
}

.sidebar-section ul li.sub-item a {
    padding-left: 28px;
    font-size: 0.82rem;
}

.list-content {
    flex: 1;
    min-width: 0;
}

.list-content .video-grid {
    grid-template-columns: repeat(5, 1fr);
}

/* ========================================
   Breadcrumb
   ======================================== */
.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    font-size: 0.85rem;
    color: #666;
}

.breadcrumb a {
    color: #999;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #E50914;
}

.breadcrumb em {
    font-style: normal;
    margin: 0 6px;
    color: #555;
}

.breadcrumb span {
    color: #e5e5e5;
}

/* ========================================
   Archive (Detail) Page
   ======================================== */
.archive-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.archive-page .breadcrumb {
    padding-left: 0;
    padding-right: 0;
}

.detail-section {
    margin-bottom: 40px;
}

.detail-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.detail-poster {
    width: 260px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.detail-poster img {
    width: 100%;
    display: block;
}

.detail-info {
    flex: 1;
    min-width: 0;
}

.detail-info h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.detail-info h1 small {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #FFD700;
    background: rgba(255,215,0,0.12);
    padding: 3px 10px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
}

.meta-list {
    margin-bottom: 24px;
}

.meta-item {
    display: flex;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.92rem;
    line-height: 1.8;
}

.meta-label {
    color: #888;
    flex-shrink: 0;
    min-width: 48px;
}

.meta-value {
    color: #ccc;
    word-break: break-all;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    display: inline-block;
    background: rgba(229,9,20,0.12);
    color: #E50914;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(229,9,20,0.25);
    transition: background-color 0.2s;
}

.tag:hover {
    background: rgba(229,9,20,0.25);
}

/* Play button */
.play-action {
    margin-top: 8px;
}

.btn-play {
    display: inline-block;
    padding: 12px 40px;
    background: #E50914;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.btn-play:hover {
    background: #ff1a25;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-play.current {
    background: #444;
    cursor: default;
    color: #999;
}

.btn-play.current:hover {
    transform: none;
    background: #444;
    color: #999;
}

/* Vod section */
.vod-section,
.episode-section {
    margin-bottom: 40px;
}

.vod-group {
    margin-bottom: 20px;
}

.vod-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 10px;
}

.episode-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.episode-btn {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.08);
    color: #ccc;
    font-size: 0.82rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.episode-btn:hover {
    background: rgba(229,9,20,0.2);
    color: #E50914;
    border-color: rgba(229,9,20,0.4);
}

.episode-btn.current {
    background: #E50914;
    color: #ffffff;
    border-color: #E50914;
}

/* Description */
.desc-section {
    margin-bottom: 40px;
}

.description {
    font-size: 0.92rem;
    color: #999;
    line-height: 1.8;
}

/* Related section */
.related-section {
    margin-bottom: 40px;
}

/* ========================================
   Video Play Page
   ======================================== */
.play-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.play-page .breadcrumb {
    padding-left: 0;
    padding-right: 0;
}

.play-page h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Player */
.player-section {
    margin-bottom: 32px;
}

.player-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.player-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #000;
    z-index: 5;
    color: #999;
    font-size: 0.9rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(229,9,20,0.2);
    border-top-color: #E50914;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.video-player {
    width: 100%;
    height: 100%;
}

.video-player iframe,
.video-player video,
.video-player embed,
.video-player object {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   Search Page
   ======================================== */
.search-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

.search-result-section {
    margin-bottom: 40px;
}

.search-count {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.search-count strong {
    color: #E50914;
}

.no-result {
    text-align: center;
    padding: 60px 20px;
}

.no-result-icon {
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-result p {
    font-size: 1rem;
    color: #999;
    margin-bottom: 8px;
}

.no-result strong {
    color: #E50914;
}

.no-result-tip {
    font-size: 0.88rem;
    color: #666;
}

.guess-section {
    margin-top: 48px;
}

/* ========================================
   Paging
   ======================================== */
.paging {
    margin: 40px 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.paging a,
.paging span,
.paging ul > li > a,
.paging ul > li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 0.88rem;
    color: #b3b3b3;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.paging a:hover,
.paging ul > li > a:hover {
    color: #ffffff;
    background: rgba(229,9,20,0.2);
    border-color: rgba(229,9,20,0.4);
}

.paging a.current,
.paging span.current,
.paging ul > li > a.current,
.paging ul > li > span.current,
.paging .active a,
.paging .active span {
    color: #ffffff;
    background: #E50914;
    border-color: #E50914;
}

.paging a.disabled,
.paging span.disabled,
.paging ul > li > a.disabled {
    color: #555;
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
}

.paging ul {
    display: flex;
    gap: 6px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 32px 0 24px;
    margin-top: 48px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin-bottom: 16px;
}

.site-footer nav a {
    font-size: 0.85rem;
    color: #666;
    transition: color 0.2s;
}

.site-footer nav a:hover {
    color: #E50914;
}

.site-footer p {
    font-size: 0.8rem;
    color: #444;
}

/* ========================================
   Responsive: Tablet (<=1024px)
   ======================================== */
@media (max-width: 1024px) {
    .header-inner {
        gap: 16px;
    }

    .header-search input {
        width: 160px;
    }

    .video-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .list-content .video-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-slider {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        height: clamp(200px, 25vw, 320px);
    }

    .hero-card:first-child {
        grid-row: span 1;
    }

    .hero-card:nth-child(3) {
        display: none;
    }

    .detail-poster {
        width: 200px;
    }

    .detail-info h1 {
        font-size: 1.5rem;
    }

    .sidebar {
        width: 170px;
    }
}

/* ========================================
   Responsive: Mobile (<=768px)
   ======================================== */
@media (max-width: 768px) {
    .header-inner {
        padding: 0 16px;
        height: 56px;
        gap: 12px;
    }

    .main-nav {
        display: none;
    }

    .header-search {
        display: none;
    }

    .mobile-btns {
        display: flex;
    }

    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .list-content .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-slider {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        gap: 2px;
        height: clamp(180px, 45vw, 260px);
    }

    .hero-card:first-child {
        grid-row: span 1;
    }

    .hero-card:nth-child(2),
    .hero-card:nth-child(3) {
        display: none;
    }

    .hero-card:first-child .hero-overlay h2 {
        font-size: 1.2rem;
    }

    .content-section {
        padding: 0 16px;
        margin-bottom: 32px;
    }

    .section-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .list-page {
        padding: 16px;
    }

    .list-layout {
        flex-direction: column;
        gap: 20px;
    }

    .sidebar {
        width: 100%;
    }

    .sidebar-section ul {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }

    .sidebar-section ul li.sub-item a {
        padding-left: 12px;
    }

    .detail-layout {
        flex-direction: column;
        gap: 20px;
    }

    .detail-poster {
        width: 180px;
        margin: 0 auto;
    }

    .detail-info h1 {
        font-size: 1.3rem;
        text-align: center;
    }

    .detail-info h1 small {
        display: block;
        margin: 8px auto 0;
        width: fit-content;
    }

    .meta-item {
        font-size: 0.85rem;
    }

    .play-action {
        text-align: center;
    }

    .archive-page {
        padding: 0 16px 32px;
    }

    .play-page {
        padding: 0 16px 32px;
    }

    .play-page h1 {
        font-size: 1.2rem;
    }

    .breadcrumb {
        padding: 12px 16px;
        font-size: 0.8rem;
    }

    .search-page {
        padding: 16px;
    }

    .paging a,
    .paging span,
    .paging ul > li > a,
    .paging ul > li > span {
        min-width: 34px;
        height: 34px;
        padding: 0 8px;
        font-size: 0.82rem;
    }

    .site-footer {
        padding: 24px 0 20px;
        margin-top: 32px;
    }

    .site-footer nav {
        gap: 6px 16px;
    }

    .site-footer nav a {
        font-size: 0.8rem;
    }

    .item .info {
        padding: 8px 8px 10px;
    }

    .item .info h3 {
        font-size: 0.82rem;
    }
}

/* ========================================
   Responsive: Small (<=480px)
   ======================================== */
@media (max-width: 480px) {
    .logo {
        font-size: 1.15rem;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .list-content .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-section {
        padding: 0 12px;
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 1rem;
    }

    .item .info {
        padding: 6px 6px 8px;
    }

    .item .info h3 {
        font-size: 0.78rem;
    }

    .item .badge {
        font-size: 0.65rem;
        padding: 1px 5px;
        top: 5px;
        right: 5px;
    }

    .detail-poster {
        width: 150px;
    }

    .detail-info h1 {
        font-size: 1.15rem;
    }

    .btn-play {
        padding: 10px 32px;
        font-size: 0.9rem;
    }

    .episode-btn {
        padding: 5px 12px;
        font-size: 0.78rem;
    }

    .list-page {
        padding: 12px;
    }

    .archive-page {
        padding: 0 12px 24px;
    }

    .play-page {
        padding: 0 12px 24px;
    }

    .play-page h1 {
        font-size: 1.05rem;
    }

    .breadcrumb {
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    .search-page {
        padding: 12px;
    }

    .no-result {
        padding: 40px 12px;
    }

    .footer-inner {
        padding: 0 12px;
    }

    .site-footer nav {
        gap: 4px 12px;
    }

    .site-footer nav a {
        font-size: 0.75rem;
    }

    .site-footer p {
        font-size: 0.72rem;
    }

    .paging {
        margin: 24px 0 16px;
    }
}
