:root {
    --color-orange: #f97316;
    --color-orange-dark: #ea580c;
    --color-red: #ef4444;
    --color-slate: #0f172a;
    --color-slate-soft: #1e293b;
    --color-gray: #475569;
    --color-border: rgba(148, 163, 184, 0.25);
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #f8fafc;
    color: #1f2937;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.96), rgba(239, 68, 68, 0.96));
    color: #ffffff;
    box-shadow: 0 14px 35px rgba(234, 88, 12, 0.28);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1280px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.brand-name {
    font-size: 1.15rem;
}

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

.nav-link,
.nav-menu-link,
.mobile-link {
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 9px 14px;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.92);
}

.nav-link:hover,
.nav-link.is-active {
    background: rgba(255, 255, 255, 0.17);
    color: #fff7ed;
}

.nav-menu {
    position: relative;
}

.nav-menu-button {
    border: 0;
    background: transparent;
}

.nav-menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    min-width: 290px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.94);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-menu:hover .nav-menu-panel,
.nav-menu:focus-within .nav-menu-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-menu-link {
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.85);
}

.nav-menu-link:hover {
    background: rgba(249, 115, 22, 0.2);
    color: #ffffff;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    width: min(330px, 28vw);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.17);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
    overflow: hidden;
}

.header-search input,
.mobile-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    padding: 11px 14px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.76);
}

.header-search button,
.mobile-search button {
    border: 0;
    padding: 10px 14px;
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

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

.mobile-search {
    display: flex;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    overflow: hidden;
}

.mobile-link {
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-channel-title {
    padding: 8px 4px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-slider {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--color-slate);
    color: #ffffff;
}

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

.hero-slide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    align-items: center;
    gap: 54px;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 90px 0 92px;
    opacity: 0;
    transform: translateX(38px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.hero-bg {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
    filter: blur(2px) saturate(1.2);
    transform: scale(1.06);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 76% 22%, rgba(249, 115, 22, 0.42), transparent 34%), linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.72) 48%, rgba(15, 23, 42, 0.38));
}

.hero-content {
    max-width: 740px;
    padding-top: 30px;
}

.hero-label,
.page-hero span,
.section-heading span,
.detail-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    color: #fed7aa;
    background: rgba(249, 115, 22, 0.16);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-label {
    padding: 8px 14px;
    margin-bottom: 18px;
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.06em;
    text-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}

.hero-content p {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.02rem, 2vw, 1.28rem);
    line-height: 1.9;
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.primary-button,
.ghost-button,
.ghost-dark-button,
.text-button,
.section-heading a,
.category-overview-head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    padding: 0 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    box-shadow: 0 18px 36px rgba(239, 68, 68, 0.34);
}

.primary-button:hover,
.ghost-button:hover,
.ghost-dark-button:hover,
.text-button:hover,
.section-heading a:hover,
.category-overview-head a:hover {
    transform: translateY(-2px);
}

.ghost-button {
    padding: 0 20px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.ghost-dark-button {
    padding: 0 20px;
    color: #ea580c;
    background: #fff7ed;
}

.text-button {
    color: #fed7aa;
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.44);
}

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

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateX(-50%);
}

.hero-controls button {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
}

.hero-controls > button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(14px);
}

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    opacity: 0.55;
}

.hero-dots button.is-active {
    width: 28px;
    opacity: 1;
    background: #f97316;
}

.home-search-band,
.content-section,
.page-main,
.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.home-search-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
    align-items: center;
    gap: 26px;
    margin-top: -46px;
    position: relative;
    z-index: 5;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.home-search-band h2,
.section-heading h2,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    color: #111827;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.home-search-band h2 {
    font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.home-search-band p {
    margin: 8px 0 0;
    color: #64748b;
    line-height: 1.8;
}

.home-search-band form {
    display: flex;
    border-radius: 999px;
    background: #f1f5f9;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.28);
}

.home-search-band input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 15px 18px;
}

.home-search-band button {
    border: 0;
    padding: 0 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    cursor: pointer;
    font-weight: 800;
}

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

.section-heading,
.category-overview-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.section-heading span,
.page-hero span {
    padding: 6px 12px;
    margin-bottom: 8px;
}

.section-heading h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.section-heading a,
.category-overview-head a {
    padding: 0 18px;
    color: #ea580c;
    background: #fff7ed;
}

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
}

.movie-cover-link {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

.movie-card-compact .movie-cover-link {
    aspect-ratio: 3 / 4;
}

.movie-cover-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.movie-year {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.movie-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.movie-card-body h2 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.35;
    color: #111827;
    font-weight: 850;
}

.movie-card-body h2 a:hover {
    color: #ea580c;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    color: #64748b;
    font-size: 0.86rem;
}

.movie-card-body p {
    display: -webkit-box;
    min-height: 3.2em;
    margin: 12px 0 0;
    overflow: hidden;
    color: #475569;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row,
.detail-tags,
.genre-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-row {
    margin-top: auto;
    padding-top: 14px;
}

.tag-row span,
.detail-tags span,
.genre-list span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    color: #c2410c;
    background: #ffedd5;
    font-size: 0.78rem;
    font-weight: 700;
}

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

.category-card,
.category-overview-block,
.article-card,
.filter-panel {
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.category-card {
    padding: 22px;
}

.category-card-title {
    display: inline-flex;
    margin-bottom: 10px;
    color: #111827;
    font-size: 1.12rem;
    font-weight: 900;
}

.category-card-title:hover {
    color: #ea580c;
}

.category-card p,
.category-overview-head p,
.page-hero p,
.rank-copy p,
.article-card p {
    color: #64748b;
    line-height: 1.75;
}

.category-preview {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.category-preview a {
    color: #475569;
    font-size: 0.92rem;
}

.category-preview a:hover {
    color: #ea580c;
}

.rank-list {
    display: grid;
    gap: 16px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.rank-cover {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 11;
}

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

.rank-cover span {
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    font-weight: 900;
}

.rank-copy h2 {
    margin: 2px 0 8px;
    color: #111827;
    font-size: 1.05rem;
    font-weight: 900;
}

.rank-copy h2 a:hover {
    color: #ea580c;
}

.rank-copy p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-meta {
    margin-top: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 700;
}

.page-main {
    padding: 36px 0 80px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: #64748b;
    font-size: 0.95rem;
}

.breadcrumb a:hover {
    color: #ea580c;
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    display: flex;
    align-items: center;
    margin-bottom: 26px;
    padding: 44px;
    border-radius: 30px;
    color: #ffffff;
    background: radial-gradient(circle at 82% 0%, rgba(253, 186, 116, 0.48), transparent 34%), linear-gradient(135deg, #111827, #ea580c 62%, #ef4444);
    box-shadow: var(--shadow-soft);
}

.page-hero-soft {
    background: radial-gradient(circle at 80% 10%, rgba(249, 115, 22, 0.26), transparent 32%), linear-gradient(135deg, #0f172a, #1e293b);
}

.page-hero-rank {
    background: radial-gradient(circle at 80% 5%, rgba(239, 68, 68, 0.42), transparent 34%), linear-gradient(135deg, #172554, #7f1d1d);
}

.page-hero h1 {
    color: #ffffff;
    font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.page-hero p {
    max-width: 760px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
}

.category-overview-block {
    padding: 24px;
    margin-top: 24px;
}

.category-overview-head {
    align-items: center;
}

.category-overview-head h2 {
    margin: 0 0 8px;
    font-size: 1.65rem;
    font-weight: 900;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.35fr);
    gap: 16px;
    padding: 18px;
    margin-bottom: 26px;
}

.filter-search input,
.filter-selects select,
.filter-selects button {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #f8fafc;
    outline: 0;
}

.filter-search input {
    padding: 0 16px;
}

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

.filter-selects select {
    padding: 0 12px;
    color: #475569;
}

.filter-selects button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    cursor: pointer;
    font-weight: 800;
}

.empty-result {
    display: none;
    margin-top: 28px;
    padding: 28px;
    border-radius: 20px;
    color: #64748b;
    background: #ffffff;
    text-align: center;
    box-shadow: var(--shadow-card);
}

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

.detail-hero {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 34px;
    border-radius: 30px;
    background: radial-gradient(circle at 82% 0%, rgba(249, 115, 22, 0.22), transparent 32%), #ffffff;
    box-shadow: var(--shadow-soft);
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 3 / 4;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
}

.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-kicker {
    padding: 6px 12px;
    margin-bottom: 16px;
    color: #c2410c;
    background: #ffedd5;
}

.detail-info h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.05;
}

.detail-one-line {
    margin: 18px 0 0;
    color: #475569;
    font-size: 1.12rem;
    line-height: 1.9;
}

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

.player-section {
    margin-top: 34px;
    padding: 24px;
    border-radius: 30px;
    background: #0f172a;
    box-shadow: var(--shadow-soft);
}

.player-section h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 1.55rem;
    font-weight: 900;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000000;
    aspect-ratio: 16 / 9;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.42);
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.52;
}

.play-icon,
.play-text {
    position: relative;
    z-index: 2;
}

.play-icon {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    box-shadow: 0 20px 45px rgba(239, 68, 68, 0.42);
    font-size: 2rem;
    padding-left: 5px;
}

.play-text {
    font-size: 1.2rem;
    font-weight: 900;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.player-message {
    min-height: 24px;
    margin: 12px 0 0;
    color: #fed7aa;
}

.article-card {
    padding: 24px;
}

.article-card p {
    margin: 0;
    color: #334155;
    font-size: 1.02rem;
}

.article-card h2 {
    margin: 0 0 14px;
    color: #111827;
    font-size: 1.35rem;
    font-weight: 900;
}

.detail-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 22px;
    margin-top: 22px;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

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

.info-list dt {
    color: #94a3b8;
    font-weight: 800;
}

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

.site-footer {
    margin-top: 0;
    color: #e2e8f0;
    background: linear-gradient(180deg, #1e293b, #0f172a);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 44px;
    padding: 54px 0 36px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 14px;
    color: #fdba74;
    font-size: 1.35rem;
    font-weight: 900;
}

.footer-column h2 {
    margin: 0 0 14px;
    color: #fdba74;
    font-size: 1.05rem;
    font-weight: 900;
}

.footer-column p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.85;
}

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

.footer-links a {
    color: #cbd5e1;
}

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

.footer-bottom {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 0.92rem;
}

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

    .header-inner {
        justify-content: space-between;
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 26px;
        min-height: 720px;
        align-content: center;
        padding-bottom: 120px;
    }

    .hero-poster {
        max-width: 260px;
    }

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

    .filter-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .home-search-band,
    .detail-hero,
    .detail-columns,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .home-search-band {
        margin-top: -32px;
    }

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

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

    .page-hero,
    .detail-hero {
        padding: 28px;
    }
}

@media (max-width: 560px) {
    .header-inner,
    .mobile-menu,
    .home-search-band,
    .content-section,
    .page-main,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 24px, 1280px);
    }

    .brand-name {
        font-size: 1rem;
    }

    .hero-slider {
        min-height: 680px;
    }

    .hero-slide {
        width: min(100% - 24px, 1280px);
        min-height: 680px;
    }

    .hero-content h1 {
        font-size: 2.55rem;
    }

    .hero-actions,
    .detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .ghost-button,
    .ghost-dark-button,
    .text-button {
        width: 100%;
    }

    .home-search-band form {
        border-radius: 18px;
        flex-direction: column;
    }

    .home-search-band button {
        min-height: 46px;
    }

    .section-heading,
    .category-overview-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .movie-grid,
    .movie-grid-small,
    .category-grid,
    .rank-list-home,
    .filter-selects {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .detail-hero {
        padding: 18px;
    }

    .player-section {
        padding: 14px;
        border-radius: 22px;
    }
}
