* {
    box-sizing: border-box;
}

:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.72);
    --bg-card-strong: rgba(15, 23, 42, 0.92);
    --line: rgba(34, 211, 238, 0.18);
    --line-strong: rgba(34, 211, 238, 0.36);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-2: #64748b;
    --cyan: #22d3ee;
    --cyan-soft: rgba(34, 211, 238, 0.18);
    --blue: #2563eb;
    --orange: #fb923c;
    --green: #34d399;
    --purple: #c084fc;
    --radius: 18px;
    --shadow: 0 24px 80px rgba(8, 47, 73, 0.35);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 8%, rgba(14, 165, 233, 0.20), transparent 28rem),
        radial-gradient(circle at 84% 18%, rgba(59, 130, 246, 0.14), transparent 30rem),
        linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(16px);
}

.site-header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 28px rgba(34, 211, 238, 0.35);
}

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

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

.brand-text small {
    color: rgba(34, 211, 238, 0.72);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex: 1;
}

.desktop-nav a,
.mobile-nav a {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 650;
    transition: color 180ms ease, text-shadow 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover {
    color: var(--cyan);
    text-shadow: 0 0 18px rgba(34, 211, 238, 0.34);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(2, 6, 23, 0.38);
    color: var(--text);
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--cyan);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.72);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mobile-nav.open {
    display: grid;
}

.hero-section {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: #020617;
}

.hero-grid-layer {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.22) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

.hero-carousel {
    position: relative;
    min-height: 640px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 680ms ease, visibility 680ms ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 42%, rgba(34, 211, 238, 0.18), transparent 24rem),
        linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.78) 44%, rgba(2, 6, 23, 0.34) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0) 26%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 96px 0 120px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(8, 47, 73, 0.36);
    font-size: 13px;
    font-weight: 700;
}

.hero-content h1 {
    max-width: 820px;
    margin: 22px 0 16px;
    font-size: clamp(42px, 8vw, 82px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    background: linear-gradient(90deg, #ffffff, var(--cyan), #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 42px rgba(34, 211, 238, 0.14);
}

.hero-content p {
    max-width: 760px;
    margin: 0 0 20px;
    color: #cbd5e1;
    font-size: clamp(17px, 2.3vw, 23px);
}

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

.movie-tags span {
    padding: 5px 9px;
    border: 1px solid rgba(34, 211, 238, 0.20);
    border-radius: 999px;
    color: #a5f3fc;
    background: rgba(14, 116, 144, 0.18);
    font-size: 12px;
    font-weight: 650;
}

.hero-tags {
    margin-bottom: 28px;
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 750;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-button {
    color: #03111f;
    background: linear-gradient(135deg, var(--cyan), #60a5fa);
    box-shadow: 0 14px 40px rgba(34, 211, 238, 0.24);
}

.ghost-button {
    border: 1px solid var(--line-strong);
    color: #cffafe;
    background: rgba(2, 6, 23, 0.46);
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(34, 211, 238, 0.20);
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 56px;
    z-index: 4;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 42px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.42);
    cursor: pointer;
}

.hero-dot.active {
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.46);
}

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

.inner-page {
    padding-top: 28px;
}

.search-panel {
    position: relative;
    z-index: 8;
    margin: -38px 0 56px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.inner-page .search-panel {
    margin: 28px 0 44px;
}

.search-panel label {
    display: block;
    margin-bottom: 10px;
    color: #cffafe;
    font-size: 14px;
    font-weight: 750;
}

.search-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.search-box input {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(34, 211, 238, 0.24);
    border-radius: 999px;
    outline: none;
    color: var(--text);
    background: rgba(2, 6, 23, 0.62);
    padding: 0 18px;
}

.search-box input:focus {
    border-color: rgba(34, 211, 238, 0.62);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.12);
}

.search-box button {
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #cffafe;
    background: rgba(14, 116, 144, 0.24);
    cursor: pointer;
}

.content-section {
    margin-bottom: 68px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.section-heading span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 850;
    letter-spacing: -0.03em;
}

.section-heading span::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.68);
}

.section-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.46), transparent);
}

.section-heading a {
    color: #a5f3fc;
    font-size: 14px;
    font-weight: 750;
}

.orange-heading span::before {
    background: var(--orange);
    box-shadow: 0 0 18px rgba(251, 146, 60, 0.58);
}

.orange-heading::after {
    background: linear-gradient(90deg, rgba(251, 146, 60, 0.46), transparent);
}

.green-heading span::before {
    background: var(--green);
    box-shadow: 0 0 18px rgba(52, 211, 153, 0.52);
}

.green-heading::after {
    background: linear-gradient(90deg, rgba(52, 211, 153, 0.46), transparent);
}

.blue-heading span::before {
    background: #60a5fa;
    box-shadow: 0 0 18px rgba(96, 165, 250, 0.52);
}

.blue-heading::after {
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.46), transparent);
}

.purple-heading span::before {
    background: var(--purple);
    box-shadow: 0 0 18px rgba(192, 132, 252, 0.52);
}

.purple-heading::after {
    background: linear-gradient(90deg, rgba(192, 132, 252, 0.46), transparent);
}

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

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

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

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

.movie-card {
    min-width: 0;
    border: 1px solid rgba(34, 211, 238, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.22);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.movie-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.42);
    box-shadow: 0 26px 82px rgba(8, 145, 178, 0.16);
}

.movie-card-link {
    display: block;
    height: 100%;
}

.movie-thumb {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(8, 47, 73, 0.64), rgba(15, 23, 42, 0.94));
}

.movie-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 340ms ease, opacity 340ms ease;
}

.movie-card:hover .movie-thumb img {
    transform: scale(1.08);
    opacity: 0.72;
}

.movie-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 32%, rgba(2, 6, 23, 0.78) 100%);
}

.movie-play-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #06111d;
    background: linear-gradient(135deg, var(--cyan), #60a5fa);
    box-shadow: 0 12px 30px rgba(34, 211, 238, 0.28);
}

.movie-year-badge {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #e0f2fe;
    background: rgba(2, 6, 23, 0.62);
    font-size: 12px;
    font-weight: 750;
    backdrop-filter: blur(8px);
}

.movie-card-body {
    padding: 16px;
}

.movie-meta-line {
    margin-bottom: 8px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 750;
}

.movie-card h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.35;
}

.compact-card h3 {
    font-size: 16px;
}

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

.compact-card p {
    font-size: 13px;
}

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

.category-preview-card,
.category-large-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.66);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.category-preview-card {
    padding: 22px;
}

.category-preview-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-bottom: 8px;
}

.category-preview-head span,
.category-large-card h2 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 850;
}

.category-preview-head a,
.category-large-card a {
    color: #a5f3fc;
    font-weight: 750;
}

.category-preview-card p,
.category-large-card p {
    color: var(--muted);
}

.mini-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.mini-card-grid .movie-card-body {
    padding: 12px;
}

.mini-card-grid .movie-card p,
.mini-card-grid .movie-tags,
.mini-card-grid .movie-meta-line {
    display: none;
}

.ranking-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.ranking-card {
    position: sticky;
    top: 92px;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow);
}

.ranking-card h2 {
    margin: 0 0 16px;
    color: #ffffff;
}

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

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

.rank-item {
    border-radius: 16px;
}

.rank-link {
    display: grid;
    grid-template-columns: auto 88px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 10px;
}

.rank-number {
    width: 34px;
    color: var(--cyan);
    font-size: 20px;
    font-weight: 900;
    text-align: center;
}

.rank-link img {
    width: 88px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
}

.rank-content {
    min-width: 0;
}

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

.rank-content strong {
    color: #ffffff;
    font-style: normal;
}

.rank-content em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.rank-arrow {
    color: var(--cyan);
    font-size: 28px;
}

.page-hero,
.detail-hero {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: clamp(28px, 5vw, 54px);
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 12%, rgba(34, 211, 238, 0.20), transparent 22rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(2, 6, 23, 0.92));
    box-shadow: var(--shadow);
}

.page-hero::before,
.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.24) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.24) 1px, transparent 1px);
    background-size: 44px 44px;
}

.page-hero > *,
.detail-hero > * {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 760px;
    color: #cbd5e1;
    font-size: 18px;
}

.center-actions {
    justify-content: center;
}

.small-hero,
.ranking-hero {
    text-align: center;
}

.small-hero p,
.ranking-hero p {
    margin-left: auto;
    margin-right: auto;
}

.category-large-card a {
    display: block;
    padding: 26px;
}

.category-count {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #a5f3fc;
    background: rgba(14, 116, 144, 0.22);
    font-size: 13px;
    font-weight: 800;
}

.category-cover-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.category-cover-row img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
}

.category-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
    align-items: center;
}

.category-hero-covers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.category-hero-covers img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

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

.breadcrumb a {
    color: #a5f3fc;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(290px, 420px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 42px;
}

.detail-cover {
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 24px;
    box-shadow: 0 22px 70px rgba(2, 6, 23, 0.45);
}

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

.detail-info h1 {
    margin: 18px 0 12px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.detail-one-line {
    color: #cbd5e1;
    font-size: 18px;
}

.detail-tags {
    margin: 18px 0 26px;
}

.player-section {
    margin-bottom: 42px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 30px 90px rgba(2, 6, 23, 0.52);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    gap: 14px;
    align-content: center;
    color: #ffffff;
    background:
        radial-gradient(circle at center, rgba(34, 211, 238, 0.18), transparent 20rem),
        linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.82));
    cursor: pointer;
}

.player-shell.is-started .player-overlay {
    display: none;
}

.player-button {
    width: 82px;
    height: 82px;
    border: 0;
    border-radius: 999px;
    color: #03111f;
    background: linear-gradient(135deg, var(--cyan), #60a5fa);
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.34);
    font-size: 34px;
    cursor: pointer;
}

.player-overlay strong {
    font-size: 20px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.detail-text-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 62px;
}

.text-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 26px;
    background: rgba(15, 23, 42, 0.64);
    box-shadow: 0 20px 70px rgba(2, 6, 23, 0.22);
}

.text-card h2 {
    margin: 0 0 14px;
    color: #ffffff;
}

.text-card p {
    margin: 0;
    color: #cbd5e1;
}

.site-footer {
    margin-top: 80px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.84);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0;
    display: grid;
    grid-template-columns: 1.1fr 1.5fr 1fr;
    gap: 34px;
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: var(--cyan);
    font-size: 18px;
}

.footer-grid p,
.footer-bottom {
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 14px;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(34, 211, 238, 0.10);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
}

.is-hidden {
    display: none !important;
}

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

    .mobile-menu-button {
        display: block;
    }

    .feature-grid,
    .movie-grid,
    .three-grid,
    .all-grid,
    .category-preview-grid,
    .category-large-grid,
    .ranking-split,
    .detail-text-grid,
    .detail-hero,
    .category-hero {
        grid-template-columns: 1fr 1fr;
    }

    .ranking-card {
        position: static;
    }

    .category-hero-covers {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .site-header-inner {
        height: 64px;
    }

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

    .brand-text small {
        display: none;
    }

    .hero-section,
    .hero-carousel {
        min-height: 600px;
    }

    .hero-content {
        padding-top: 76px;
    }

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

    .search-box {
        display: flex;
    }

    .primary-button,
    .ghost-button,
    .search-box button {
        width: 100%;
    }

    .feature-grid,
    .movie-grid,
    .three-grid,
    .all-grid,
    .category-preview-grid,
    .category-large-grid,
    .ranking-split,
    .detail-text-grid,
    .detail-hero,
    .category-hero,
    .full-rank-list {
        grid-template-columns: 1fr;
    }

    .mini-card-grid {
        grid-template-columns: 1fr;
    }

    .category-cover-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rank-link {
        grid-template-columns: auto 76px minmax(0, 1fr);
    }

    .rank-arrow {
        display: none;
    }

    .rank-link img {
        width: 76px;
    }
}
