/* Editorial Video Site - Bold Red & White Newspaper Style */

:root {
    --clr-accent: #d42b2b;
    --clr-accent-dark: #b01f1f;
    --clr-accent2: #1a1a2e;
    --clr-accent-light: rgba(212, 43, 43, 0.08);
    --clr-fg: #111111;
    --clr-fg-soft: #444444;
    --clr-fg-muted: #888888;
    --clr-bg: #f5f5f0;
    --clr-bg-white: #ffffff;
    --clr-bg-panel: #fafaf8;
    --clr-line: #e0ddd8;
    --clr-line-strong: #cccccc;
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.07);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.09);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --rd: 6px;
    --rd-sm: 4px;
    --ease: all 0.25s ease;
    --cover-ratio: calc(350 / 600 * 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--clr-bg);
    color: var(--clr-fg);
    line-height: 1.55;
    font-size: 15px;
    overflow-x: hidden;
}

/* ===================== HEADER ===================== */
.site-header {
    background: var(--clr-accent);
    padding: 10px 0 8px;
}

.site-header .wrap {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

.brand-logo {
    text-decoration: none;
    display: inline-block;
}

.brand-name {
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Georgia', serif;
    letter-spacing: -0.5px;
    line-height: 1;
    border-bottom: none;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.brand-name:hover {
    opacity: 0.9;
}

.domain-strip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 3px;
    padding: 4px 12px;
}

.domain-tag {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    font-family: sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.domain-val {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.2px;
}

/* ===================== LAYOUT ===================== */
.wrap {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-gap {
    padding: 10px 0;
}

/* ===================== NAV ===================== */
.nav-wrap {
    background: var(--clr-bg-white);
    border-bottom: 1px solid var(--clr-line);
    box-shadow: var(--shadow-xs);
    margin-bottom: 8px;
}

.nav-wrap .wrap {
    padding: 0 15px;
}

.nav-band {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--clr-line);
}

.nav-band:last-child {
    border-bottom: none;
}

.nav-zone-tag {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-bg-white);
    background: var(--clr-accent);
    white-space: nowrap;
    width: 10%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 6px;
    flex-shrink: 0;
    font-family: sans-serif;
}

.nav-items {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 8px 8px;
    align-items: center;
}

.nav-items a {
    display: inline-block;
    color: var(--clr-fg-soft);
    text-decoration: none;
    padding: 5px 4px;
    border-radius: var(--rd-sm);
    transition: var(--ease);
    background: var(--clr-bg);
    border: 1px solid var(--clr-line);
    white-space: nowrap;
    text-align: center;
    font-size: 13px;
    font-family: sans-serif;
    width: calc((100% - 35px) / 8);
    flex-shrink: 0;
    flex-grow: 0;
}

.nav-items a:hover,
.nav-items a.active {
    background: var(--clr-accent);
    color: #ffffff;
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

/* ===================== SEARCH ===================== */
.search-panel {
    background: var(--clr-bg-white);
    border-radius: var(--rd);
    padding: 12px;
    margin-bottom: 8px;
    border: 1px solid var(--clr-line);
    box-shadow: var(--shadow-xs);
}

.search-panel form {
    display: flex;
    gap: 7px;
    flex-wrap: nowrap;
    align-items: center;
}

.search-panel input[type="text"] {
    flex: 1;
    min-width: 160px;
    padding: 9px 13px;
    border: 2px solid var(--clr-line-strong);
    border-radius: var(--rd-sm);
    background: var(--clr-bg);
    color: var(--clr-fg);
    font-size: 14px;
    transition: var(--ease);
    outline: none;
    font-family: sans-serif;
}

.search-panel input[type="text"]:focus {
    border-color: var(--clr-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 43, 43, 0.1);
}

.search-panel input[type="text"]::placeholder {
    color: var(--clr-fg-muted);
}

.search-panel button {
    padding: 9px 15px;
    border: none;
    border-radius: var(--rd-sm);
    background: var(--clr-accent);
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
    font-family: sans-serif;
    letter-spacing: 0.3px;
}

.search-panel button:hover {
    background: var(--clr-accent-dark);
    box-shadow: var(--shadow-sm);
}

/* ===================== TAG CLOUD ===================== */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    list-style: none;
    padding: 12px;
    background: var(--clr-bg-white);
    border-radius: var(--rd);
    margin-bottom: 8px;
    border: 1px solid var(--clr-line);
    box-shadow: var(--shadow-xs);
}

.tag-item {
    padding: 5px 13px;
    background: var(--clr-bg);
    border-radius: 3px;
    color: var(--clr-fg-soft);
    text-decoration: none;
    font-size: 13px;
    transition: var(--ease);
    border: 1px solid var(--clr-line);
    font-family: sans-serif;
}

.tag-item:hover {
    background: var(--clr-accent);
    color: #ffffff;
    border-color: var(--clr-accent);
}

/* ===================== SECTION HEADING ===================== */
.blk {
    margin-bottom: 16px;
}

.blk-inner {
    background: var(--clr-bg-white);
    border-radius: var(--rd);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--clr-line);
    padding: 15px;
    padding-top: 0;
}

.blk-hd {
    margin-bottom: 12px;
    padding: 10px 0 10px;
    border-bottom: 3px solid var(--clr-accent);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.blk-hd::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 20px;
    background: var(--clr-accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.blk-title {
    font-size: 19px;
    font-weight: 700;
    margin: 0;
    color: var(--clr-fg);
    font-family: sans-serif;
    letter-spacing: -0.2px;
}

.blk-title a {
    color: var(--clr-fg);
    text-decoration: none;
    transition: var(--ease);
}

.blk-title a:hover {
    color: var(--clr-accent);
}

/* ===================== FILM GRID ===================== */
.film-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
}

.film-list li {
    position: relative;
    animation: fadeUp 0.5s ease backwards;
}

.film-list li:nth-child(1) { animation-delay: 0.04s; }
.film-list li:nth-child(2) { animation-delay: 0.08s; }
.film-list li:nth-child(3) { animation-delay: 0.12s; }
.film-list li:nth-child(4) { animation-delay: 0.16s; }
.film-list li:nth-child(5) { animation-delay: 0.20s; }
.film-list li:nth-child(6) { animation-delay: 0.24s; }
.film-list li:nth-child(7) { animation-delay: 0.28s; }
.film-list li:nth-child(8) { animation-delay: 0.32s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.film-thumb {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--rd-sm);
    padding-top: var(--cover-ratio);
    background: var(--clr-bg);
    border: 1px solid var(--clr-line);
}

.film-thumb img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.film-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.film-thumb:hover::after {
    opacity: 1;
}

.film-meta {
    padding: 8px 2px 0;
}

.film-meta h5 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    font-family: sans-serif;
}

.film-meta h5 a {
    color: var(--clr-fg);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--ease);
}

.film-meta h5 a:hover {
    color: var(--clr-accent);
}

/* ===================== VIDEO PLAYER ===================== */
.player-wrap {
    width: 100%;
    height: 640px;
    max-height: 640px;
    margin-bottom: 16px;
    background: #000;
    border-radius: var(--rd);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.player-wrap iframe,
.player-wrap video,
.player-wrap #video-container {
    width: 100%;
    height: 100%;
    border: none;
}

.MacPlayer {
    background: #000;
    border-radius: var(--rd);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--shadow-md);
}

/* ===================== TORRENT CAPTURES ===================== */
.capture-frame {
    width: 100%;
}

.capture-frame picture,
.capture-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--rd-sm);
    border: 1px solid var(--clr-line);
}

/* ===================== DOWNLOAD BUTTONS ===================== */
.dl-zone {
    text-align: center;
    padding: 14px;
    background: var(--clr-bg-white);
    border-radius: var(--rd);
    margin: 14px 0;
    border: 1px solid var(--clr-line);
    box-shadow: var(--shadow-xs);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.down_btn {
    display: inline-block;
    padding: 10px 22px;
    background: var(--clr-accent);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--rd-sm);
    font-weight: 700;
    font-size: 14px;
    transition: var(--ease);
    margin: 0;
    border: 2px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: sans-serif;
    cursor: pointer;
}

.down_btn:hover {
    background: var(--clr-accent-dark);
    box-shadow: var(--shadow-md);
}

/* ===================== SHARE SECTION ===================== */
.share-section {
    background: var(--clr-bg-white);
    border-radius: var(--rd);
    padding: 16px;
    margin: 14px 0;
    border: 1px solid var(--clr-line);
    box-shadow: var(--shadow-xs);
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-url-display {
    background: var(--clr-bg);
    border: 1px solid var(--clr-line-strong);
    border-radius: var(--rd-sm);
    padding: 10px 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.share-label {
    font-weight: 700;
    font-size: 12px;
    color: var(--clr-accent);
    white-space: nowrap;
    flex-shrink: 0;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-url {
    font-size: 12px;
    color: var(--clr-fg-soft);
    font-family: 'Courier New', monospace;
    word-break: break-all;
    flex: 1;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
}

.share-copy-btn {
    padding: 10px 20px;
    background: var(--clr-accent);
    color: #ffffff;
    border: none;
    border-radius: var(--rd-sm);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: sans-serif;
}

.share-copy-btn:hover {
    background: var(--clr-accent-dark);
    box-shadow: var(--shadow-sm);
}

.share-copy-btn:active {
    transform: scale(0.97);
}

.share-icon {
    font-size: 16px;
}

/* ===================== PAGINATION ===================== */
.page_info_div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    padding: 18px 0;
}

.a_page_info,
.page_info_focus {
    display: inline-block;
    padding: 7px 13px;
    border-radius: var(--rd-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--ease);
    min-width: 36px;
    text-align: center;
    font-family: sans-serif;
}

.a_page_info {
    background: var(--clr-bg-white);
    color: var(--clr-fg);
    border: 1px solid var(--clr-line-strong);
}

.a_page_info:hover {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: #ffffff;
}

.page_info_focus {
    background: var(--clr-accent);
    color: #ffffff;
    border: 1px solid var(--clr-accent-dark);
    cursor: default;
}

/* ===================== FOOTER ===================== */
.site-footer {
    padding: 22px 0;
    text-align: center;
    border-top: 3px solid var(--clr-accent);
    margin-top: 24px;
    background: var(--clr-accent2);
}

.site-footer p {
    margin: 7px 0;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    font-family: sans-serif;
}

.site-footer a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: var(--ease);
}

.site-footer a:hover {
    color: #fff;
}

.friend-links {
    padding: 12px;
    background: var(--clr-bg-white);
    border-radius: var(--rd);
    border: 1px solid var(--clr-line);
    box-shadow: var(--shadow-xs);
}

.friend-links dl {
    margin: 0;
}

.friend-links dd {
    display: inline-block;
    margin: 3px 5px;
}

.friend-links a {
    color: var(--clr-fg-soft);
    text-decoration: none;
    font-size: 13px;
    font-family: sans-serif;
    transition: var(--ease);
}

.friend-links a:hover {
    color: var(--clr-accent);
}

/* ===================== HOT TAG SECTION HEADING ===================== */
.blk-inner-plain {
    background: var(--clr-bg-white);
    border-radius: var(--rd);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--clr-line);
    padding: 10px 15px 14px;
}

.blk-inner-plain h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--clr-fg);
    font-family: sans-serif;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--clr-accent);
}

/* ===================== MHLLESET COMPAT ===================== */
.mhlleset {
    margin-bottom: 12px;
}

.mhlleset-main {}

.mhlleset-heading {
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--clr-accent);
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.mhlleset-heading::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--clr-accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.mhlleset-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--clr-fg);
    font-family: sans-serif;
}

.mhlleset-title a {
    color: var(--clr-fg);
    text-decoration: none;
    transition: var(--ease);
}

.mhlleset-title a:hover {
    color: var(--clr-accent);
}

/* COMPAT: thumbnail2-group -> use film-list styles */
.thumbnail2-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
}

.thumbnail2-group li {
    position: relative;
    animation: fadeUp 0.5s ease backwards;
}

.thumbnail2-group li:nth-child(1) { animation-delay: 0.04s; }
.thumbnail2-group li:nth-child(2) { animation-delay: 0.08s; }
.thumbnail2-group li:nth-child(3) { animation-delay: 0.12s; }
.thumbnail2-group li:nth-child(4) { animation-delay: 0.16s; }
.thumbnail2-group li:nth-child(5) { animation-delay: 0.20s; }
.thumbnail2-group li:nth-child(6) { animation-delay: 0.24s; }
.thumbnail2-group li:nth-child(7) { animation-delay: 0.28s; }
.thumbnail2-group li:nth-child(8) { animation-delay: 0.32s; }

.thumbnail2 {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--rd-sm);
    padding-top: var(--cover-ratio);
    background: var(--clr-bg);
    border: 1px solid var(--clr-line);
}

.thumbnail2 img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.thumbnail2:hover img {
    transform: scale(1.07);
}

.thumbnail2::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail2:hover::after {
    opacity: 1;
}

.video-info {
    padding: 7px 2px 0;
}

.video-info h5 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    font-family: sans-serif;
}

.video-info h5 a {
    color: var(--clr-fg);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--ease);
}

.video-info h5 a:hover {
    color: var(--clr-accent);
}

/* grid-container compat */
.grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.grid-item {
    padding: 5px 12px;
    background: var(--clr-bg);
    border-radius: 3px;
    color: var(--clr-fg-soft);
    text-decoration: none;
    font-size: 13px;
    transition: var(--ease);
    border: 1px solid var(--clr-line);
    font-family: sans-serif;
}

.grid-item:hover {
    background: var(--clr-accent);
    color: #ffffff;
    border-color: var(--clr-accent);
}

/* ===================== DOWNLOAD COMPAT ===================== */
.download {
    text-align: center;
    padding: 14px;
    background: var(--clr-bg-white);
    border-radius: var(--rd);
    margin: 14px 0;
    border: 1px solid var(--clr-line);
    box-shadow: var(--shadow-xs);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

/* ===================== VIDEO CONTAINER ===================== */
.video-container {
    width: 100%;
    height: 640px;
    max-height: 640px;
    margin-bottom: 16px;
    background: #000;
    border-radius: var(--rd);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.video-container iframe,
.video-container video,
.video-container #video-container {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===================== TORRENT CAPTURE GRID ===================== */
.torrent-capture-grid {
    width: 100%;
}

.torrent-capture-grid img,
.torrent-capture-grid .img_item img {
    width: 100%;
    height: auto;
    border-radius: var(--rd-sm);
    border: 1px solid var(--clr-line);
    display: block;
}

.torrent-capture-grid .img_item {
    width: 100%;
}

.torrent-capture-grid picture {
    display: block;
    width: 100%;
}

.torrent-capture-grid picture img {
    width: 100%;
}

/* ===================== HIDE UTILITIES ===================== */
.hide_mobile {
    display: block;
}

.hide_pc {
    display: block;
}

@media (max-width: 768px) {
    .hide_mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide_pc {
        display: none !important;
    }
}

/* ===================== CLEARFIX ===================== */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

img[data-original] {
    background: var(--clr-bg);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .wrap,
    .container {
        padding: 0 8px;
    }

    .brand-name {
        font-size: 22px;
    }

    .domain-strip {
        padding: 3px 9px;
        gap: 5px;
    }

    .domain-tag {
        font-size: 9px;
    }

    .domain-val {
        font-size: 13px;
    }

    .section-gap {
        padding: 7px 0;
    }

    /* Mobile nav: label 15%, links 85%, 4 per row */
    .nav-band {
        display: flex;
        align-items: stretch;
    }

    .nav-zone-tag {
        width: 15%;
        font-size: 10px;
        padding: 7px 3px;
        letter-spacing: 0;
        word-break: keep-all;
        writing-mode: horizontal-tb;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .nav-items {
        width: 85%;
        font-size: 12px;
        gap: 4px;
        padding: 7px 4px;
    }

    .nav-items a {
        font-size: 12px;
        padding: 4px 2px;
        width: calc((100% - 12px) / 4);
    }

    .thumbnail2-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .film-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .player-wrap,
    .video-container {
        height: 56.25vw;
        max-height: 380px;
        margin-bottom: 12px;
    }

    .mhlleset {
        margin-bottom: 10px;
    }

    .mhlleset-title {
        font-size: 16px;
    }

    .blk-title {
        font-size: 16px;
    }

    .down_btn {
        padding: 9px 14px;
        font-size: 13px;
    }

    .download {
        padding: 11px 7px;
        gap: 7px;
    }

    .share-section {
        padding: 11px;
        gap: 7px;
        flex-wrap: nowrap;
    }

    .share-url-display {
        padding: 9px 10px;
        gap: 6px;
    }

    .share-label {
        font-size: 10px;
    }

    .share-url {
        font-size: 10px;
    }

    .share-copy-btn {
        padding: 9px 11px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .share-icon {
        font-size: 14px;
    }

    .page_info_div {
        padding: 13px 0;
        gap: 4px;
    }

    .a_page_info,
    .page_info_focus {
        padding: 6px 11px;
        font-size: 12px;
        min-width: 32px;
    }

    .site-footer {
        padding: 18px 0;
        margin-top: 18px;
    }
}

/* Large phones */
@media (min-width: 481px) and (max-width: 768px) {
    .nav-items a {
        font-size: 14px;
    }

    .nav-zone-tag {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 19px;
    }

    .domain-tag {
        font-size: 8px;
    }

    .domain-val {
        font-size: 12px;
    }

    .nav-zone-tag {
        width: 15%;
        font-size: 10px;
        padding: 6px 2px;
    }

    .nav-items {
        width: 85%;
        gap: 3px;
        padding: 6px 3px;
    }

    .nav-items a {
        font-size: 12px;
        padding: 3px 1px;
        width: calc((100% - 9px) / 4);
    }

    .thumbnail2-group,
    .film-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .video-info h5,
    .film-meta h5 {
        font-size: 12px;
    }

    .mhlleset-title,
    .blk-title {
        font-size: 15px;
    }

    .down_btn {
        padding: 8px 10px;
        font-size: 12px;
    }

    .share-section {
        padding: 8px;
        gap: 5px;
    }

    .share-url-display {
        padding: 7px 8px;
    }
}

/* PC: 4 columns thumbnail */
@media (min-width: 769px) {
    .thumbnail2-group {
        grid-template-columns: repeat(4, 1fr);
    }

    .film-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .nav-zone-tag {
        font-size: 14px;
    }

    .nav-items a {
        font-size: 13px;
    }
}
