:root {
    --primary: #0284c7;
    --primary-dark: #0369a1;
    --primary-soft: #e0f2fe;
    --secondary: #0d9488;
    --secondary-soft: #ccfbf1;
    --accent: #ea580c;
    --accent-soft: #ffedd5;
    --text: #1c1917;
    --muted: #78716c;
    --line: #e7e5e4;
    --panel: #ffffff;
    --panel-soft: #fafaf9;
    --shadow: 0 20px 45px rgba(28, 25, 23, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fafaf9 0%, #ffffff 36%, #f5f5f4 100%);
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(231, 229, 228, 0.86);
    box-shadow: 0 10px 30px rgba(28, 25, 23, 0.06);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    box-shadow: 0 16px 30px rgba(14, 165, 233, 0.28);
    transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
    transform: scale(1.08) rotate(-3deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: -0.02em;
}

.brand-text small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.desktop-nav > a,
.nav-dropdown > a {
    color: #44403c;
    font-weight: 650;
    transition: color 0.2s ease;
}

.desktop-nav > a:hover,
.nav-dropdown > a:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 18px);
    left: -18px;
    width: 220px;
    padding: 10px;
    display: grid;
    gap: 3px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    padding: 10px 12px;
    border-radius: 12px;
    color: #57534e;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-panel a:hover {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 1 360px;
}

.header-search input,
.mobile-search input,
.filter-bar input {
    width: 100%;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 16px;
    color: var(--text);
    outline: none;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.14);
}

.header-search button,
.mobile-search button {
    height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    background: var(--primary);
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f5f5f4;
    cursor: pointer;
    color: var(--text);
    font-size: 22px;
}

.mobile-nav {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 22px;
    border-top: 1px solid var(--line);
}

.mobile-nav.is-open {
    display: grid;
    gap: 10px;
}

.mobile-nav > a,
.mobile-category-grid a {
    padding: 12px 14px;
    border-radius: 14px;
    background: #ffffff;
    color: #44403c;
    font-weight: 650;
}

.mobile-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-top: 18px;
}

.hero-carousel {
    position: relative;
    height: min(80vh, 760px);
    min-height: 560px;
    overflow: hidden;
    background: #1c1917;
}

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

.hero-slide {
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.03);
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 35%, rgba(14, 165, 233, 0.34), transparent 34%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.66) 45%, rgba(0, 0, 0, 0.34) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px 88px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: #ffffff;
}

.hero-label,
.category-pill {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: var(--primary);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    padding: 9px 13px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-label:hover,
.category-pill:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.hero-content h1,
.hero-site-title {
    margin: 18px 0 12px;
    max-width: 960px;
    font-size: clamp(28px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-content h2 {
    margin: 0 0 14px;
    max-width: 860px;
    font-size: clamp(26px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.hero-content p {
    margin: 0 0 18px;
    max-width: 740px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.hero-tags span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 700;
}

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

.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 850;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-action {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 18px 36px rgba(2, 132, 199, 0.34);
}

.secondary-action {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.primary-action:hover,
.secondary-action:hover {
    transform: translateY(-2px) scale(1.02);
}

.primary-action:hover {
    background: var(--primary-dark);
}

.hero-control {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, transform 0.2s ease;
}

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

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: #ffffff;
}

.page-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 76px;
}

.home-shell {
    display: grid;
    gap: 78px;
}

.inner-page {
    display: grid;
    gap: 42px;
}

.content-section {
    display: grid;
    gap: 28px;
}

.feature-section {
    padding: clamp(24px, 4vw, 48px);
    border-radius: 32px;
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdfa 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.section-heading h2 {
    margin: 6px 0 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-heading > a {
    color: var(--primary);
    font-weight: 800;
    white-space: nowrap;
}

.section-heading > a:hover {
    color: var(--primary-dark);
}

.section-kicker {
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.compact-heading {
    align-items: center;
}

.movie-grid {
    display: grid;
    gap: 22px;
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(28, 25, 23, 0.08);
    border: 1px solid rgba(231, 229, 228, 0.72);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(14, 165, 233, 0.26);
}

.card-cover {
    position: relative;
    height: 240px;
    display: block;
    overflow: hidden;
    background: #292524;
}

.compact-card .card-cover {
    height: 220px;
}

.card-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.56));
    opacity: 0.82;
}

.card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card:hover .card-cover img {
    transform: scale(1.08);
}

.card-year,
.rank-badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 850;
    padding: 7px 10px;
    backdrop-filter: blur(10px);
}

.card-year {
    right: 14px;
    background: rgba(0, 0, 0, 0.58);
}

.rank-badge {
    left: 14px;
    min-width: 34px;
    text-align: center;
    background: linear-gradient(135deg, #f97316, #0ea5e9);
}

.card-body {
    padding: 18px;
    display: grid;
    gap: 11px;
}

.card-body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.card-body h3 a:hover {
    color: var(--primary);
}

.card-body p {
    margin: 0;
    min-height: 46px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-tags,
.tag-cloud,
.wide-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-tags span,
.tag-cloud a {
    border-radius: 999px;
    background: var(--panel-soft);
    color: #57534e;
    font-size: 12px;
    font-weight: 750;
    padding: 6px 10px;
}

.tag-cloud a:hover {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.card-meta,
.wide-meta,
.detail-meta {
    color: #78716c;
    font-size: 13px;
    line-height: 1.4;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 2px;
}

.wide-list {
    display: grid;
    gap: 20px;
}

.wide-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(231, 229, 228, 0.75);
    box-shadow: 0 12px 30px rgba(28, 25, 23, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.wide-cover {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    background: #292524;
}

.wide-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wide-card:hover .wide-cover img {
    transform: scale(1.08);
}

.wide-cover span {
    position: absolute;
    left: 14px;
    top: 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(2, 132, 199, 0.92);
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 850;
}

.wide-body {
    padding: 26px;
    display: grid;
    align-content: center;
    gap: 14px;
}

.wide-body h3 {
    margin: 0;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.25;
}

.wide-body h3 a:hover {
    color: var(--primary);
}

.wide-body p {
    margin: 0;
    color: #57534e;
    line-height: 1.8;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: clamp(30px, 5vw, 62px);
    background:
        radial-gradient(circle at 85% 20%, rgba(20, 184, 166, 0.2), transparent 32%),
        radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.2), transparent 34%),
        linear-gradient(135deg, #ffffff, #f0f9ff 52%, #f0fdfa);
    box-shadow: 0 18px 45px rgba(28, 25, 23, 0.08);
    border: 1px solid rgba(231, 229, 228, 0.84);
}

.small-hero h1 {
    margin: 8px 0 12px;
    max-width: 980px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.small-hero p {
    margin: 0;
    max-width: 780px;
    color: #57534e;
    line-height: 1.8;
    font-size: 17px;
}

.filter-bar {
    max-width: 640px;
    margin-top: 26px;
}

.wide-filter {
    max-width: 780px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.category-tile {
    min-height: 230px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(231, 229, 228, 0.84);
    box-shadow: 0 12px 30px rgba(28, 25, 23, 0.07);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tile-head span {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.tile-head em {
    font-style: normal;
    color: #ffffff;
    background: var(--primary);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 850;
}

.category-tile p {
    margin: 0;
    color: #57534e;
    line-height: 1.75;
}

.tile-links {
    margin-top: auto;
    display: grid;
    gap: 8px;
}

.tile-links a {
    color: var(--primary-dark);
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #78716c;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-dark);
    font-weight: 750;
}

.detail-page {
    padding-top: 34px;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: clamp(24px, 5vw, 58px);
    align-items: center;
    padding: clamp(24px, 4vw, 44px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 0%, rgba(14, 165, 233, 0.22), transparent 34%),
        linear-gradient(135deg, #ffffff, #f0f9ff 58%, #f0fdfa);
    border: 1px solid rgba(231, 229, 228, 0.84);
    box-shadow: 0 18px 45px rgba(28, 25, 23, 0.08);
}

.detail-cover {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
    background: #292524;
}

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

.detail-info {
    display: grid;
    gap: 18px;
    align-content: center;
}

.detail-info h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-one-line {
    margin: 0;
    color: #57534e;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.75;
}

.player-section {
    display: grid;
    gap: 22px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #000000;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #000000;
    object-fit: contain;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background:
        radial-gradient(circle at 50% 45%, rgba(14, 165, 233, 0.3), transparent 26%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.18));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-circle {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    padding-left: 6px;
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 20px 50px rgba(2, 132, 199, 0.38);
    font-size: 34px;
}

.player-overlay strong {
    font-size: 20px;
    letter-spacing: 0.04em;
}

.article-section {
    padding: clamp(26px, 4vw, 44px);
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(231, 229, 228, 0.84);
    box-shadow: 0 12px 30px rgba(28, 25, 23, 0.06);
    gap: 16px;
}

.article-section h2 {
    margin: 8px 0 0;
    font-size: 26px;
    letter-spacing: -0.02em;
}

.article-section p {
    margin: 0;
    color: #44403c;
    line-height: 1.95;
    font-size: 16px;
}

.site-footer {
    color: #d6d3d1;
    background: linear-gradient(135deg, #1c1917, #292524 48%, #1c1917);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 24px 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 42px;
}

.footer-logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}

.footer-main p {
    margin: 0;
    max-width: 520px;
    color: #a8a29e;
    line-height: 1.8;
}

.footer-main h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 16px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: #a8a29e;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(214, 211, 209, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #a8a29e;
    font-size: 14px;
}

.is-filtered-out {
    display: none;
}

@media (max-width: 1100px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

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

    .wide-card,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .wide-cover {
        min-height: 300px;
    }

    .detail-cover {
        max-width: 420px;
    }
}

@media (max-width: 720px) {
    .header-inner {
        min-height: 68px;
        padding: 0 16px;
    }

    .brand-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 20px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text small {
        display: none;
    }

    .mobile-nav {
        padding: 0 16px 18px;
    }

    .hero-carousel {
        height: 72vh;
        min-height: 520px;
    }

    .hero-content {
        padding: 0 18px 74px;
    }

    .hero-control {
        width: 42px;
        height: 42px;
        font-size: 34px;
    }

    .hero-prev {
        left: 12px;
    }

    .hero-next {
        right: 12px;
    }

    .hero-tags span:nth-child(n+4) {
        display: none;
    }

    .page-shell {
        padding: 38px 16px 54px;
    }

    .home-shell {
        gap: 50px;
    }

    .four-grid,
    .three-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .card-cover,
    .compact-card .card-cover {
        height: 260px;
    }

    .wide-cover {
        min-height: 240px;
    }

    .wide-body,
    .article-section {
        padding: 22px;
    }

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

    .small-hero,
    .detail-hero {
        border-radius: 24px;
        padding: 24px;
    }

    .player-shell {
        border-radius: 22px;
    }

    .play-circle {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .footer-main,
    .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
}
