:root {
    --sky: #38bdf8;
    --sky-600: #0284c7;
    --blue: #2563eb;
    --rose: #fb7185;
    --violet: #8b5cf6;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #f8fafc;
    --white: #ffffff;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #ffffff 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

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

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

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky), var(--blue));
    box-shadow: 0 12px 28px rgba(56, 189, 248, 0.35);
}

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

.brand-copy strong,
.footer-brand strong {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--sky), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-copy em {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

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

.desktop-nav a {
    padding: 9px 12px;
    color: #4b5563;
    border-radius: 12px;
    font-size: 15px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--sky-600);
    background: #eff6ff;
    transform: translateY(-1px);
}

.header-search,
.mobile-panel form,
.hero-search,
.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search input,
.mobile-panel input,
.hero-search input,
.filter-bar input,
.filter-bar select {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    outline: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-search input {
    width: 190px;
    padding: 10px 16px;
}

.header-search input:focus,
.mobile-panel input:focus,
.hero-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

.header-search button,
.mobile-panel button,
.hero-search button,
.primary-button,
.ghost-button {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.mobile-panel button,
.hero-search button,
.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky), var(--blue));
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.25);
}

.header-search button {
    padding: 10px 14px;
}

.header-search button:hover,
.mobile-panel button:hover,
.hero-search button:hover,
.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    color: #334155;
    border-radius: 12px;
    background: #f1f5f9;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-panel form {
    margin-bottom: 12px;
}

.mobile-panel input {
    flex: 1;
    padding: 10px 16px;
}

.mobile-panel button {
    padding: 10px 16px;
}

.mobile-panel nav {
    display: grid;
    gap: 8px;
}

.mobile-panel nav a {
    padding: 12px 14px;
    color: #334155;
    border-radius: 12px;
    background: #f8fafc;
}

.hero-shell {
    position: relative;
    overflow: hidden;
    padding: 64px 0 42px;
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 48%, #dbeafe 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.45;
    pointer-events: none;
}

.hero-glow-left {
    width: 290px;
    height: 290px;
    top: 34px;
    left: 4%;
    background: #7dd3fc;
}

.hero-glow-right {
    width: 420px;
    height: 420px;
    right: -70px;
    bottom: -130px;
    background: #bfdbfe;
}

.hero-inner,
.page-main,
.detail-main,
.quick-links,
.content-section,
.split-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-heading {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 7px 13px;
    color: var(--sky-600);
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(56, 189, 248, 0.25);
}

.hero-heading h1,
.page-hero h1 {
    margin: 0;
    color: #111827;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.hero-heading p,
.page-hero p {
    max-width: 680px;
    margin: 16px auto 0;
    color: #526174;
    font-size: clamp(16px, 2vw, 20px);
}

.hero-search {
    max-width: 620px;
    margin: 26px auto 0;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
}

.hero-search button,
.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    font-weight: 700;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 34px;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
    backdrop-filter: blur(18px);
}

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

.hero-image {
    min-height: 360px;
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(135deg, #dbeafe, #f8fafc);
}

.hero-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-slide:hover .hero-image img {
    transform: scale(1.06);
}

.hero-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.05em;
}

.hero-copy p {
    color: #4b5563;
    font-size: 18px;
}

.hero-tags,
.tag-cloud,
.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.tag-cloud a,
.movie-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
}

.hero-tags span,
.tag-cloud a {
    padding: 7px 12px;
    color: var(--sky-600);
    background: #eff6ff;
    border: 1px solid #dbeafe;
    font-size: 13px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.ghost-button {
    color: var(--sky-600);
    background: #ffffff;
    border: 1px solid #bae6fd;
}

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

.hero-thumb {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 9px;
    cursor: pointer;
    color: #475569;
    text-align: left;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-thumb:hover,
.hero-thumb.is-active {
    border-color: var(--sky);
    box-shadow: 0 10px 22px rgba(56, 189, 248, 0.18);
    transform: translateY(-2px);
}

.hero-thumb img {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 14px;
    object-fit: cover;
    background: #e5e7eb;
}

.hero-thumb span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
    font-weight: 700;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    padding: 26px 0 8px;
}

.quick-links a {
    padding: 18px 14px;
    color: #0369a1;
    text-align: center;
    font-weight: 800;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e0f2fe;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.content-section,
.page-main {
    padding: 48px 0;
}

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

.section-heading h2 {
    display: inline;
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
}

.section-icon {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 14px;
    background: #f0f9ff;
}

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

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

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

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

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

.poster-link,
.poster-frame {
    display: block;
}

.poster-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe, #f8fafc);
}

.movie-card-compact .poster-frame {
    aspect-ratio: 16 / 9;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.48));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--sky-600);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transform: translate(-50%, -50%) 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);
}

.poster-badge,
.poster-score {
    position: absolute;
    top: 12px;
    padding: 6px 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.poster-badge {
    left: 12px;
    background: rgba(14, 165, 233, 0.9);
}

.poster-score {
    right: 12px;
    background: rgba(15, 23, 42, 0.72);
}

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

.movie-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
}

.movie-card h3 a:hover,
.rank-card h3 a:hover,
.ranking-row h2 a:hover {
    color: var(--sky-600);
}

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

.movie-meta span {
    padding: 5px 9px;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    font-size: 12px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(330px, 0.8fr);
    gap: 28px;
    align-items: start;
}

.split-section .content-section {
    width: 100%;
    padding: 48px 0;
}

.ranking-panel,
.side-card,
.detail-card,
.player-card,
.category-tile {
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.ranking-panel {
    position: sticky;
    top: 96px;
    padding: 22px;
}

.compact-heading {
    align-items: center;
    margin-bottom: 18px;
}

.rank-list,
.side-list {
    display: grid;
    gap: 14px;
}

.rank-card {
    display: grid;
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.rank-poster {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    background: #e5e7eb;
}

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

.rank-card h3 {
    margin: 0 0 6px;
    font-size: 15px;
}

.rank-card p {
    overflow: hidden;
    display: -webkit-box;
    margin: 0 0 8px;
    color: var(--muted);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 13px;
}

.site-footer {
    margin-top: 40px;
    border-top: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #ffffff, #f0f9ff);
}

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

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.site-footer p,
.site-footer a {
    color: #64748b;
    font-size: 14px;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 8px;
}

.site-footer a:hover {
    color: var(--sky-600);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
}

.page-hero {
    padding: 48px;
    border-radius: 32px;
    background: linear-gradient(135deg, #e0f2fe, #ffffff 54%, #dbeafe);
    box-shadow: var(--shadow);
}

.small-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
}

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

.category-tile {
    padding: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-tile span {
    display: block;
    margin-bottom: 10px;
    color: var(--sky-600);
    font-size: 22px;
    font-weight: 900;
}

.category-tile strong {
    color: #475569;
    font-size: 15px;
    font-weight: 500;
}

.tile-links {
    display: grid;
    gap: 7px;
    margin-top: 18px;
}

.tile-links a {
    overflow: hidden;
    color: #64748b;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.tile-links a:hover {
    color: var(--sky-600);
}

.filter-bar {
    margin: 28px 0;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.filter-bar input {
    flex: 1;
    min-width: 0;
    padding: 13px 17px;
}

.filter-bar select {
    padding: 13px 17px;
    color: #334155;
}

.empty-state {
    padding: 28px;
    color: #64748b;
    text-align: center;
    border: 1px dashed #bae6fd;
    border-radius: 20px;
    background: #f0f9ff;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 58px 150px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.ranking-index {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    font-weight: 900;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--rose), var(--violet));
}

.ranking-cover {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    background: #e5e7eb;
}

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

.ranking-content h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.ranking-content p {
    margin: 0 0 12px;
    color: #64748b;
}

.detail-main {
    padding: 30px 0 60px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: #64748b;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--sky-600);
}

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

.player-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.movie-video {
    width: 100%;
    height: 100%;
    background: #020617;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 0;
    cursor: pointer;
    color: #ffffff;
    border: 0;
    background: #020617;
}

.player-cover[hidden] {
    display: none;
}

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

.big-play {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    margin-bottom: 14px;
    color: var(--sky-600);
    font-size: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.player-cover strong {
    position: relative;
    z-index: 2;
    max-width: 90%;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
}

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

.detail-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.detail-card h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.score-box {
    min-width: 92px;
    padding: 14px;
    color: #ffffff;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--sky), var(--blue));
}

.score-box strong {
    display: block;
    font-size: 30px;
    line-height: 1;
}

.score-box span {
    font-size: 12px;
}

.lead-text {
    color: #475569;
    font-size: 18px;
}

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

.detail-meta div {
    padding: 14px;
    border-radius: 16px;
    background: #f8fafc;
}

.detail-meta dt {
    color: #94a3b8;
    font-size: 12px;
}

.detail-meta dd {
    margin: 4px 0 0;
    color: #334155;
    font-weight: 800;
}

.text-panel h2,
.side-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.text-panel p {
    margin: 0;
    color: #475569;
    font-size: 16px;
}

.detail-side {
    position: sticky;
    top: 98px;
}

.side-card {
    padding: 20px;
}

.side-list .movie-card {
    box-shadow: none;
}

.side-list .movie-card-body {
    padding: 12px;
}

.side-list .movie-card p {
    min-height: auto;
}

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

    .menu-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
    }

    .header-search {
        display: none;
    }

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

    .hero-carousel {
        min-height: 760px;
    }

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

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

    .split-section,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .ranking-panel,
    .detail-side {
        position: static;
    }

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

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

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

    .brand-copy em {
        display: none;
    }

    .hero-shell {
        padding: 36px 0 28px;
    }

    .hero-search,
    .filter-bar,
    .footer-bottom,
    .detail-title-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-carousel {
        min-height: 650px;
    }

    .hero-slide {
        padding: 16px;
    }

    .hero-image,
    .hero-image img {
        min-height: 250px;
    }

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

    .hero-thumbs,
    .quick-links,
    .category-grid,
    .movie-grid,
    .page-grid,
    .footer-grid,
    .detail-meta {
        grid-template-columns: 1fr;
    }

    .quick-links {
        gap: 10px;
    }

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

    .movie-grid,
    .page-grid {
        gap: 16px;
    }

    .ranking-row {
        grid-template-columns: 44px 96px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .ranking-index {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 13px;
    }

    .ranking-content h2 {
        font-size: 17px;
    }

    .ranking-content p {
        display: none;
    }

    .page-hero {
        padding: 28px;
        border-radius: 24px;
    }

    .detail-main {
        padding-top: 20px;
    }

    .score-box {
        width: 100%;
    }
}
