:root {
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-solid: #0f172a;
    --panel-soft: rgba(30, 41, 59, 0.62);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --cyan: #06b6d4;
    --cyan-deep: #0891b2;
    --yellow: #eab308;
    --shadow: 0 18px 45px rgba(8, 145, 178, 0.16);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 8%, rgba(6, 182, 212, 0.14), transparent 28rem),
        radial-gradient(circle at 80% 18%, rgba(37, 99, 235, 0.14), transparent 30rem),
        linear-gradient(135deg, #020617 0%, #0f172a 46%, #020617 100%);
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    color: white;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--cyan), #2563eb);
    box-shadow: 0 0 28px rgba(6, 182, 212, 0.38);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-title {
    font-size: 22px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-subtitle {
    font-size: 12px;
    color: var(--muted);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    position: relative;
    color: var(--muted-strong);
    font-size: 15px;
    font-weight: 650;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    border-radius: 999px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: white;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 14px;
    color: white;
    background: rgba(30, 41, 59, 0.85);
    cursor: pointer;
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: white;
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.98);
}

.mobile-nav.is-open {
    display: grid;
    gap: 8px;
    padding: 14px 16px 18px;
}

.mobile-nav-link {
    padding: 12px 14px;
    color: var(--muted-strong);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.5);
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: white;
    background: rgba(30, 41, 59, 0.9);
}

.hero {
    position: relative;
    min-height: 68vh;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s ease;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.62) 42%, rgba(2, 6, 23, 0.1) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.1) 45%, rgba(2, 6, 23, 0.56) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    min-height: 68vh;
    padding: 68px 0 118px;
}

.hero-copy {
    width: min(640px, 100%);
}

.hero-badges,
.detail-meta,
.card-stats,
.hero-extra {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: white;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(8px);
}

.hero-badges span:first-child,
.detail-meta span:first-child {
    color: white;
    background: linear-gradient(135deg, var(--cyan), #2563eb);
    border: 0;
}

.hero-copy h1 {
    margin: 18px 0 16px;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.hero-copy p {
    margin: 0;
    max-width: 600px;
    color: var(--muted-strong);
    font-size: 17px;
    line-height: 1.8;
}

.hero-extra {
    margin-top: 20px;
    color: var(--muted-strong);
}

.hero-extra span:first-child {
    color: var(--yellow);
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-button {
    color: white;
    background: linear-gradient(135deg, var(--cyan), #2563eb);
    box-shadow: 0 12px 28px rgba(6, 182, 212, 0.25);
}

.ghost-button {
    color: white;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(226, 232, 240, 0.22);
    backdrop-filter: blur(8px);
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: white;
    font-size: 34px;
    background: rgba(0, 0, 0, 0.42);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.68);
    transform: translateY(-50%) scale(1.05);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 82px;
    z-index: 4;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--cyan);
}

.hero-search {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 4;
    display: flex;
    width: min(680px, calc(100% - 32px));
    padding: 8px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(148, 163, 184, 0.22);
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
}

.hero-search input,
.filter-search-row input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: white;
    background: transparent;
}

.hero-search input {
    min-height: 44px;
    padding: 0 14px;
}

.hero-search button {
    flex: 0 0 auto;
    min-width: 92px;
    border: 0;
    border-radius: 12px;
    color: white;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), #2563eb);
    cursor: pointer;
}

.main-stack,
.page-shell {
    padding-top: 48px;
    padding-bottom: 72px;
}

.main-stack {
    display: grid;
    gap: 72px;
}

.home-section {
    position: relative;
}

.section-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-title-row h2,
.page-hero h1,
.detail-card h1 {
    margin: 0;
    color: white;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.section-title-row h2 {
    font-size: clamp(24px, 3vw, 36px);
}

.section-more {
    color: var(--cyan);
    font-weight: 800;
}

.video-grid {
    display: grid;
    gap: 18px;
}

.grid-eight {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-six {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-card {
    min-width: 0;
}

.card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card-link:hover {
    border-color: rgba(6, 182, 212, 0.42);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.poster-frame {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #020617;
}

.video-card-small .poster-frame {
    height: 190px;
}

.poster-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.2s ease;
}

.card-link:hover img {
    transform: scale(1.1);
}

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22) 42%, transparent);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.card-link:hover .poster-frame::after {
    opacity: 0.96;
}

.poster-region,
.poster-year,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 8px;
    color: white;
    font-size: 12px;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(8px);
}

.poster-region {
    left: 10px;
    top: 10px;
}

.poster-year {
    right: 10px;
    top: 10px;
}

.rank-badge {
    left: 10px;
    bottom: 10px;
    color: #020617;
    background: var(--yellow);
}

.play-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: white;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), #2563eb);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.card-link:hover .play-hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.card-body {
    padding: 14px;
}

.card-body h3 {
    margin: 0 0 8px;
    overflow: hidden;
    color: white;
    font-size: 16px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.card-link:hover h3 {
    color: var(--cyan);
}

.card-meta,
.card-desc {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.card-desc {
    display: -webkit-box;
    min-height: 40px;
    margin-top: 7px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-stats {
    justify-content: space-between;
    margin-top: 12px;
    color: var(--muted);
    font-size: 12px;
}

.card-stats span:first-child {
    color: var(--yellow);
    font-weight: 900;
}

.category-grid,
.category-list-grid {
    display: grid;
    gap: 18px;
}

.category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-tile {
    display: block;
    min-height: 178px;
    padding: 24px;
    overflow: hidden;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(37, 99, 235, 0.1)),
        rgba(15, 23, 42, 0.76);
    border: 1px solid rgba(6, 182, 212, 0.18);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-card-large a:hover {
    border-color: rgba(6, 182, 212, 0.42);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.category-tile span,
.category-card-body span {
    color: var(--cyan);
    font-weight: 900;
}

.category-tile strong,
.category-card-body h2 {
    display: block;
    margin: 12px 0 10px;
    color: white;
    font-size: 24px;
    line-height: 1.25;
}

.category-tile em,
.category-card-body p {
    color: var(--muted-strong);
    font-style: normal;
    line-height: 1.75;
}

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

.compact-card {
    position: relative;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 10px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(148, 163, 184, 0.12);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.compact-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-3px);
}

.compact-card img {
    width: 74px;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
}

.compact-info {
    min-width: 0;
}

.compact-info strong,
.compact-info em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-info strong {
    color: white;
    font-size: 15px;
}

.compact-info em {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.compact-rank {
    position: absolute;
    right: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    color: #020617;
    font-size: 12px;
    font-weight: 900;
    background: var(--yellow);
}

.page-shell {
    min-height: 60vh;
}

.page-hero-card,
.detail-card,
.side-card,
.filter-panel {
    border-radius: 24px;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

.page-hero-card {
    padding: 36px;
    margin-bottom: 32px;
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 54px);
}

.page-hero p {
    max-width: 820px;
    margin: 16px 0 0;
    color: var(--muted-strong);
    line-height: 1.85;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--cyan);
}

.category-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-card-large a {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: var(--panel);
    border: 1px solid var(--line);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-covers {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    height: 170px;
    overflow: hidden;
}

.category-covers img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card-body {
    padding: 24px;
}

.filter-panel {
    padding: 18px;
    margin-bottom: 24px;
}

.filter-search-row {
    min-height: 54px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.42);
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.filter-buttons button {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(15, 23, 42, 0.64);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-buttons button:hover,
.filter-buttons button.is-active {
    color: white;
    background: linear-gradient(135deg, var(--cyan), #2563eb);
    border-color: transparent;
}

.search-empty {
    display: none;
    padding: 24px 0 10px;
    color: var(--muted);
    text-align: center;
}

.search-empty.is-visible {
    display: block;
}

.catalog-grid [hidden] {
    display: none !important;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
}

.breadcrumb-wrap {
    margin-bottom: 22px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: white;
    background:
        radial-gradient(circle at center, rgba(6, 182, 212, 0.28), transparent 28%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
    cursor: pointer;
}

.player-overlay[hidden] {
    display: none !important;
}

.player-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    padding-left: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), #2563eb);
    box-shadow: 0 0 34px rgba(6, 182, 212, 0.35);
    font-size: 30px;
}

.player-overlay strong {
    font-size: clamp(20px, 3vw, 34px);
}

.player-overlay em {
    color: var(--muted-strong);
    font-style: normal;
}

.detail-card {
    margin-top: 24px;
    padding: 28px;
}

.detail-card h1 {
    font-size: clamp(28px, 4vw, 44px);
}

.detail-card h2,
.side-card h2 {
    margin: 28px 0 12px;
    color: white;
    font-size: 22px;
}

.detail-card p {
    margin: 0;
    color: var(--muted-strong);
    line-height: 1.9;
}

.detail-card .lead-text {
    margin: 20px 0 0;
    color: white;
    font-size: 18px;
}

.detail-meta {
    margin-top: 18px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.tag-list a,
.footer-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--muted-strong);
    background: rgba(30, 41, 59, 0.8);
    transition: color 0.2s ease, background 0.2s ease;
}

.tag-list a:hover,
.footer-tags a:hover {
    color: white;
    background: rgba(6, 182, 212, 0.7);
}

.detail-side {
    display: grid;
    gap: 18px;
    align-content: start;
}

.side-poster {
    overflow: hidden;
    border-radius: 22px;
    background: var(--panel-solid);
    border: 1px solid var(--line);
}

.side-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.side-card {
    padding: 22px;
}

.side-card h2 {
    margin-top: 0;
}

.info-list {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px 14px;
    margin: 0;
}

.info-list dt {
    color: var(--muted);
}

.info-list dd {
    margin: 0;
    color: white;
}

.side-list {
    display: grid;
    gap: 12px;
}

.side-list .compact-card {
    grid-template-columns: 58px 1fr;
    padding: 8px;
}

.side-list .compact-card img {
    width: 58px;
    height: 76px;
}

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
    padding: 44px 0;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: white;
    font-size: 20px;
}

.site-footer p,
.footer-links a {
    color: var(--muted);
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: white;
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 20px 16px;
    color: var(--muted);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

@media (max-width: 1180px) {
    .grid-eight,
    .grid-six,
    .grid-five {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .compact-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .header-inner {
        height: 68px;
    }

    .hero,
    .hero-content {
        min-height: 72vh;
    }

    .hero-content {
        padding-bottom: 128px;
    }

    .hero-arrow {
        display: none;
    }

    .detail-grid,
    .footer-grid,
    .category-list-grid {
        grid-template-columns: 1fr;
    }

    .detail-side {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand-icon {
        width: 38px;
        height: 38px;
        border-radius: 14px;
    }

    .brand-title {
        font-size: 18px;
    }

    .brand-subtitle {
        display: none;
    }

    .hero-copy p {
        font-size: 15px;
    }

    .hero-search {
        flex-direction: column;
        gap: 8px;
    }

    .hero-search button {
        min-height: 42px;
    }

    .grid-eight,
    .grid-six,
    .grid-five,
    .grid-four,
    .category-grid,
    .compact-grid,
    .detail-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .poster-frame {
        height: 220px;
    }

    .video-card-small .poster-frame {
        height: 180px;
    }

    .compact-grid,
    .detail-side {
        grid-template-columns: 1fr;
    }

    .page-hero-card,
    .detail-card,
    .side-card {
        padding: 20px;
        border-radius: 20px;
    }

    .section-title-row {
        align-items: start;
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 440px) {
    .grid-eight,
    .grid-six,
    .grid-five,
    .grid-four,
    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .poster-frame,
    .video-card-small .poster-frame {
        height: 190px;
    }

    .card-body {
        padding: 11px;
    }

    .card-desc {
        display: none;
    }
}
