:root {
    --bg: #f8fafc;
    --panel: #ffffff;
    --panel-soft: rgba(255, 255, 255, 0.82);
    --text: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --teal: #0f766e;
    --cyan: #0891b2;
    --blue: #2563eb;
    --amber: #f59e0b;
    --rose: #e11d48;
    --shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid rgba(226, 232, 240, 0.75);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 72px;
}

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #14b8a6, #0891b2 45%, #2563eb);
    box-shadow: 0 12px 32px rgba(8, 145, 178, 0.32);
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 20px;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #0f766e, #0891b2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

.nav-link,
.mobile-link {
    border-radius: 14px;
    color: #334155;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 10px 14px;
    font-size: 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: #0f766e;
    background: #ecfeff;
}

.nav-link:hover {
    transform: translateY(-1px);
}

.site-search,
.mobile-search {
    position: relative;
}

.site-search input,
.mobile-search input,
.filter-input {
    width: 220px;
    border: 1px solid #dbe4ef;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.9);
    padding: 10px 16px;
    color: #0f172a;
    outline: 0;
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-search input:focus,
.mobile-search input:focus,
.filter-input:focus {
    border-color: #14b8a6;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
}

.search-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 360px;
    max-height: 470px;
    overflow: auto;
    display: none;
    padding: 10px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.search-panel.is-open {
    display: grid;
    gap: 8px;
}

.search-result {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 16px;
    transition: background 0.2s ease;
}

.search-result:hover {
    background: #f1f5f9;
}

.search-result img {
    width: 54px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    background: #e2e8f0;
}

.search-result strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
}

.search-result small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #f1f5f9;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #334155;
}

.mobile-nav {
    display: none;
    border-top: 1px solid #e2e8f0;
    padding: 14px 16px 18px;
    background: rgba(255, 255, 255, 0.96);
}

.mobile-link {
    display: block;
    padding: 12px 14px;
    margin-top: 6px;
}

.mobile-search input {
    width: 100%;
}

.mobile-search .search-panel {
    left: 0;
    right: 0;
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 20% 0%, rgba(45, 212, 191, 0.45), transparent 32%), linear-gradient(135deg, #0f766e 0%, #0891b2 48%, #1d4ed8 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.85) 2px, transparent 2px);
    background-size: 54px 54px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -12% -36% 36%;
    height: 420px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(48px);
}

.hero-inner {
    position: relative;
    z-index: 1;
    min-height: 620px;
    padding: 64px 0;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 46px;
    align-items: center;
}

.hero-slide.is-active {
    display: grid;
    animation: fadeUp 0.55s ease both;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 14px;
    color: #ecfeff;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.hero h1 span {
    display: block;
    color: #cffafe;
}

.hero-copy {
    max-width: 660px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 12px 20px;
    border: 1px solid transparent;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #0f766e;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.28);
}

.btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.btn-dark {
    color: #fff;
    background: linear-gradient(135deg, #0f766e, #0891b2);
    box-shadow: 0 14px 34px rgba(8, 145, 178, 0.24);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-meta span {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    padding: 7px 12px;
    color: #ecfeff;
    font-size: 13px;
    font-weight: 800;
}

.hero-visual {
    position: relative;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 32px 90px rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(22px);
}

.hero-card img {
    width: 100%;
    aspect-ratio: 5 / 6;
    object-fit: cover;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 44%, rgba(15, 23, 42, 0.88));
}

.hero-card-info {
    position: absolute;
    z-index: 1;
    left: 24px;
    right: 24px;
    bottom: 22px;
}

.hero-card-info strong {
    display: block;
    font-size: 24px;
}

.hero-card-info small {
    display: block;
    margin-top: 4px;
    color: #cbd5e1;
}

.hero-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.hero-thumb {
    width: 72px;
    height: 54px;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    padding: 0;
    cursor: pointer;
    opacity: 0.62;
    transition: opacity 0.2s ease, transform 0.2s ease, border 0.2s ease;
}

.hero-thumb.is-active,
.hero-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: #ffffff;
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-arrow {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.22);
}

.section {
    padding: 72px 0;
}

.section-soft {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.section-warm {
    background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 100%);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-head h1,
.section-head h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.section-head p,
.page-intro p {
    max-width: 720px;
    margin: 10px 0 0;
    color: var(--muted);
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    border-radius: var(--radius);
    padding: 22px;
    color: #fff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -48px;
    bottom: -52px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.category-card strong {
    display: block;
    font-size: 23px;
    letter-spacing: -0.04em;
}

.category-card p {
    position: relative;
    z-index: 1;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.88);
}

.category-card small {
    display: inline-flex;
    margin-top: 24px;
    font-weight: 900;
}

.accent-blue {
    background: linear-gradient(135deg, #2563eb, #0891b2);
}

.accent-purple {
    background: linear-gradient(135deg, #7c3aed, #db2777);
}

.accent-cyan {
    background: linear-gradient(135deg, #0891b2, #2563eb);
}

.accent-rose {
    background: linear-gradient(135deg, #e11d48, #f97316);
}

.accent-amber {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.accent-slate {
    background: linear-gradient(135deg, #334155, #0f172a);
}

.accent-emerald {
    background: linear-gradient(135deg, #059669, #0f766e);
}

.accent-teal {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.accent-orange {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.accent-pink {
    background: linear-gradient(135deg, #db2777, #7c3aed);
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(20, 184, 166, 0.42);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e2e8f0;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .poster-link img {
    transform: scale(1.07);
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    color: #0f766e;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22);
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.86);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: grid;
    place-items: center;
    min-width: 36px;
    height: 36px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.card-body {
    padding: 18px;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
}

.meta-row span,
.tag-list span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #ecfeff;
    padding: 4px 9px;
    color: #0f766e;
    font-size: 12px;
    font-weight: 800;
}

.movie-card h2,
.movie-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.28;
    letter-spacing: -0.03em;
}

.movie-card h2 a:hover,
.movie-card h3 a:hover {
    color: #0f766e;
}

.movie-card p {
    min-height: 54px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

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

.latest-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    align-items: start;
}

.rank-list {
    display: grid;
    gap: 10px;
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: var(--radius);
    background: var(--panel);
    padding: 14px;
    box-shadow: var(--soft-shadow);
}

.rank-row {
    display: grid;
    grid-template-columns: 38px 58px 1fr 24px;
    gap: 12px;
    align-items: center;
    border-radius: 18px;
    padding: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
    background: #f1f5f9;
    transform: translateX(3px);
}

.list-rank {
    color: #0f766e;
    font-size: 20px;
    font-weight: 900;
}

.rank-row img {
    width: 58px;
    height: 76px;
    object-fit: cover;
    border-radius: 14px;
    background: #e2e8f0;
}

.rank-copy strong {
    display: block;
    line-height: 1.3;
}

.rank-copy small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.rank-arrow {
    color: #94a3b8;
    font-size: 28px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 54px;
    color: #fff;
    background: radial-gradient(circle at 12% 8%, rgba(45, 212, 191, 0.4), transparent 30%), linear-gradient(135deg, #0f766e 0%, #0891b2 48%, #1d4ed8 100%);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image: radial-gradient(circle at 18px 18px, #ffffff 2px, transparent 2px);
    background-size: 48px 48px;
}

.page-intro {
    position: relative;
    z-index: 1;
}

.page-intro h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1;
    letter-spacing: -0.07em;
}

.page-intro p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
}

.breadcrumb a {
    font-weight: 800;
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    padding: 14px;
    box-shadow: var(--soft-shadow);
    backdrop-filter: blur(16px);
}

.toolbar .filter-input {
    width: min(460px, 100%);
}

.toolbar-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.toolbar-pills span {
    border-radius: 999px;
    background: #f1f5f9;
    padding: 7px 12px;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
}

.detail-hero {
    padding: 54px 0;
    color: #fff;
    background: radial-gradient(circle at 12% 12%, rgba(20, 184, 166, 0.36), transparent 34%), linear-gradient(135deg, #0f172a 0%, #164e63 48%, #0f766e 100%);
}

.detail-layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.detail-cover {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

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

.detail-info h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.detail-one {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.detail-meta-grid li {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    padding: 14px;
    backdrop-filter: blur(14px);
}

.detail-meta-grid span {
    display: block;
    color: #bae6fd;
    font-size: 12px;
}

.detail-meta-grid strong {
    display: block;
    margin-top: 4px;
    font-size: 15px;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.player-section {
    padding: 48px 0;
    background: #0f172a;
}

.player-box {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 32px 90px rgba(2, 6, 23, 0.45);
}

.video-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.78));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-symbol {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    color: #0f766e;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    font-size: 32px;
}

.player-cover strong {
    font-size: 20px;
}

.content-section {
    padding: 62px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
    align-items: start;
}

.article-panel,
.side-panel {
    border: 1px solid rgba(226, 232, 240, 0.82);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 26px;
    box-shadow: var(--soft-shadow);
}

.article-panel h2,
.side-panel h2 {
    margin: 0 0 14px;
    font-size: 26px;
    letter-spacing: -0.04em;
}

.article-panel p {
    margin: 0 0 22px;
    color: #334155;
    font-size: 16px;
}

.info-table {
    display: grid;
    gap: 10px;
}

.info-table div {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.info-table span {
    color: var(--muted);
}

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

.related-card {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    align-items: center;
    border-radius: 18px;
    padding: 8px;
    transition: background 0.2s ease;
}

.related-card:hover {
    background: #f1f5f9;
}

.related-card img {
    width: 70px;
    height: 92px;
    object-fit: cover;
    border-radius: 14px;
    background: #e2e8f0;
}

.related-card strong {
    display: block;
    line-height: 1.3;
}

.related-card small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.site-footer {
    padding: 34px 0;
    color: #cbd5e1;
    background: #0f172a;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer strong {
    color: #ffffff;
    font-size: 18px;
}

.site-footer p {
    margin: 4px 0 0;
    color: #94a3b8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

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

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

@media (max-width: 1080px) {
    .site-search {
        display: none;
    }

    .hero-slide,
    .latest-layout,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 520px;
    }

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

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

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .mobile-nav.is-open {
        display: block;
    }

    .hero-inner {
        min-height: auto;
        padding: 48px 0;
    }

    .hero-slide,
    .detail-layout {
        grid-template-columns: 1fr;
    }

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

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

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

    .toolbar {
        align-items: stretch;
        flex-direction: column;
    }
}

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

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

    .brand-copy small {
        display: none;
    }

    .hero h1,
    .detail-info h1,
    .page-intro h1 {
        letter-spacing: -0.05em;
    }

    .hero-controls {
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .category-grid,
    .movie-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .section-head,
    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .rank-row {
        grid-template-columns: 28px 54px 1fr 18px;
    }

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

    .article-panel,
    .side-panel {
        padding: 20px;
    }
}
