* {
    box-sizing: border-box;
}

:root {
    --bg: #fff7ed;
    --panel: #ffffff;
    --panel-soft: #fffbeb;
    --text: #111827;
    --muted: #6b7280;
    --line: #fed7aa;
    --brand: #f59e0b;
    --brand-dark: #d97706;
    --brand-soft: #fef3c7;
    --shadow: 0 20px 45px rgba(146, 64, 14, 0.12);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 35%, #fff7ed 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 237, 213, 0.96));
    border-bottom: 1px solid rgba(251, 191, 36, 0.32);
    box-shadow: 0 10px 30px rgba(180, 83, 9, 0.08);
    backdrop-filter: blur(14px);
}

.header-inner {
    max-width: 1200px;
    height: 68px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 10px 24px rgba(234, 88, 12, 0.28);
    font-size: 15px;
}

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

.brand-copy strong {
    font-size: 21px;
    letter-spacing: -0.02em;
}

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

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

.desktop-nav > a,
.nav-menu > button {
    border: 0;
    background: transparent;
    color: #374151;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 650;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.nav-menu:hover > button {
    color: var(--brand-dark);
}

.nav-menu {
    position: relative;
}

.nav-menu-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 188px;
    padding: 10px;
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    background: #ffffff;
    border: 1px solid #fde68a;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: 0.2s ease;
}

.nav-menu:hover .nav-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-menu-panel a {
    display: block;
    padding: 11px 12px;
    border-radius: 12px;
    color: #374151;
}

.nav-menu-panel a:hover {
    background: #fff7ed;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
}

.search-form input,
.mobile-search input,
.large-search input {
    border: 1px solid #fbbf24;
    border-radius: 999px;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
}

.search-form input {
    width: 230px;
    padding: 10px 14px;
}

.search-form button,
.mobile-search button,
.large-search button,
.primary-button {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: #ffffff;
    font-weight: 750;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(234, 88, 12, 0.22);
}

.search-form button {
    padding: 10px 16px;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    background: #ffffff;
    border-radius: 12px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #374151;
    border-radius: 2px;
}

.mobile-panel {
    display: none;
    padding: 14px 20px 18px;
    background: #ffffff;
    border-top: 1px solid #fed7aa;
}

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

.mobile-panel a {
    display: block;
    padding: 11px 0;
    color: #374151;
    font-weight: 650;
}

.mobile-search {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.mobile-search input {
    width: 100%;
    padding: 11px 14px;
}

.mobile-search button {
    padding: 0 16px;
}

.mobile-category-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 16px;
    padding-left: 10px;
}

.hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: radial-gradient(circle at top right, #92400e, #111827 58%);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.58) 52%, rgba(17, 24, 39, 0.16)),
        linear-gradient(0deg, rgba(17, 24, 39, 0.72), transparent 45%);
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 90px;
    color: #ffffff;
}

.hero-label,
.section-kicker,
.page-hero span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.96);
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.02em;
}

.hero-label {
    padding: 7px 13px;
    margin-bottom: 18px;
}

.hero h1 {
    max-width: 720px;
    margin: 0 0 18px;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero-one-line {
    max-width: 760px;
    margin: 0 0 10px;
    font-size: clamp(20px, 3vw, 29px);
    line-height: 1.35;
    color: #fff7ed;
}

.hero-summary {
    max-width: 700px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.9;
}

.hero-tags,
.detail-tags,
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.detail-tags span,
.card-tags span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    padding: 6px 10px;
    font-size: 12px;
    backdrop-filter: blur(8px);
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
}

.ghost-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 34px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

.hero-dots button.is-active {
    width: 32px;
    background: #ffffff;
}

.quick-panel,
.content-section,
.page-main,
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.quick-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: -42px;
    position: relative;
    z-index: 8;
}

.quick-panel a,
.category-tile,
.prose-card,
.info-card,
.side-panel,
.search-page-panel {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.quick-panel a {
    padding: 22px;
    min-height: 116px;
}

.quick-panel strong {
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
}

.quick-panel span {
    color: var(--muted);
}

.content-section {
    padding-top: 72px;
    padding-bottom: 20px;
}

.warm-section {
    max-width: none;
    padding: 72px calc((100% - 1200px) / 2 + 20px) 76px;
    margin-top: 56px;
    background: linear-gradient(90deg, #fef3c7, #ffedd5);
}

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

.section-kicker {
    padding: 6px 12px;
    margin-bottom: 10px;
}

.section-head h2,
.page-hero h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.more-link {
    color: var(--brand-dark);
    font-weight: 800;
}

.card-grid {
    display: grid;
    gap: 24px;
}

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

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

.movie-card {
    min-width: 0;
}

.movie-card > a {
    display: block;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(31, 41, 55, 0.08);
    transition: 0.28s ease;
}

.movie-card > a:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px rgba(146, 64, 14, 0.16);
}

.poster-frame {
    position: relative;
    height: 250px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.72), transparent 32%),
        linear-gradient(135deg, #111827, #92400e);
}

.large-card .poster-frame {
    height: 360px;
}

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

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

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.68));
    opacity: 0;
    transition: 0.28s ease;
}

.movie-card a:hover .poster-frame::after {
    opacity: 1;
}

.card-badge,
.card-year {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
}

.card-badge {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    color: #92400e;
    background: rgba(255, 255, 255, 0.92);
}

.card-year {
    right: 12px;
    bottom: 12px;
    padding: 5px 9px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.72);
}

.play-mark {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    transform: translate(-50%, -50%) scale(0.86);
    color: #ffffff;
    background: rgba(245, 158, 11, 0.95);
    opacity: 0;
    transition: 0.25s ease;
}

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

.card-body {
    padding: 18px;
}

.card-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

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

.card-tags span {
    color: #92400e;
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    color: #6b7280;
    font-size: 12px;
}

.card-meta span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.horizontal-card > a {
    display: grid;
    grid-template-columns: 190px 1fr;
}

.horizontal-card .poster-frame {
    height: 150px;
}

.horizontal-card .card-body p {
    min-height: 0;
}

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

.category-tile {
    min-height: 142px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    background: #fff7ed;
}

.category-tile span {
    font-size: 22px;
    font-weight: 850;
}

.category-tile em {
    color: var(--muted);
    font-style: normal;
    line-height: 1.6;
}

.page-main {
    padding-top: 30px;
    padding-bottom: 72px;
}

.page-hero {
    margin: 20px 0 40px;
    padding: 56px;
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.58), transparent 36%),
        linear-gradient(135deg, #111827, #92400e 64%, #ea580c);
    box-shadow: var(--shadow);
}

.page-hero span {
    padding: 7px 13px;
    margin-bottom: 18px;
}

.page-hero h1 {
    color: #ffffff;
}

.page-hero p {
    max-width: 760px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 42px;
}

.page-link,
.page-gap {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #fed7aa;
    background: #ffffff;
    color: #374151;
    font-weight: 750;
}

.page-link.active,
.page-link:hover {
    color: #ffffff;
    background: var(--brand);
    border-color: var(--brand);
}

.page-link.disabled {
    opacity: 0.45;
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    margin-bottom: 22px;
}

.breadcrumb a {
    color: var(--brand-dark);
    font-weight: 700;
}

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

.player-card,
.detail-title-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.player-card {
    overflow: hidden;
    padding: 12px;
}

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

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.68));
    cursor: pointer;
    transition: 0.24s ease;
}

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

.player-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    font-size: 28px;
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.35);
}

.player-message {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    display: none;
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(17, 24, 39, 0.88);
    color: #ffffff;
    text-align: center;
}

.player-message.is-visible {
    display: block;
}

.detail-title-card {
    margin-top: 22px;
    padding: 26px;
}

.detail-title-card h1 {
    margin: 16px 0 14px;
    font-size: clamp(32px, 5vw, 50px);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-badges a,
.detail-badges span {
    border-radius: 999px;
    padding: 7px 11px;
    color: #92400e;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    font-size: 13px;
    font-weight: 760;
}

.detail-one-line {
    margin: 0 0 18px;
    color: #374151;
    font-size: 19px;
    line-height: 1.7;
}

.detail-tags span {
    color: #92400e;
    background: #fef3c7;
    border: 1px solid #fed7aa;
}

.prose-card {
    margin-top: 22px;
    padding: 28px;
}

.prose-card h2,
.info-card h2,
.side-panel h2 {
    margin: 0 0 16px;
    font-size: 24px;
}

.prose-card p {
    margin: 0;
    color: #374151;
    line-height: 2;
    font-size: 16px;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card,
.side-panel {
    padding: 24px;
}

.info-card {
    position: sticky;
    top: 90px;
}

.info-card dl {
    margin: 0;
}

.info-card dt {
    margin-top: 14px;
    color: #9ca3af;
    font-size: 13px;
}

.info-card dd {
    margin: 5px 0 0;
    color: #111827;
    font-weight: 700;
    line-height: 1.55;
}

.info-card dd a,
.side-panel a {
    color: var(--brand-dark);
}

.side-panel a {
    display: block;
    padding: 10px 0;
    font-weight: 760;
}

.related-section {
    padding-left: 0;
    padding-right: 0;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 64px 84px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(31, 41, 55, 0.06);
    transition: 0.22s ease;
}

.rank-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow);
}

.rank-num {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    font-weight: 900;
}

.rank-item img {
    width: 84px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
    background: linear-gradient(135deg, #111827, #92400e);
}

.rank-copy strong,
.rank-copy em {
    display: block;
}

.rank-copy strong {
    margin-bottom: 5px;
    font-size: 18px;
}

.rank-copy em {
    color: var(--muted);
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-meta {
    color: #92400e;
    font-weight: 760;
}

.search-page-panel {
    padding: 28px;
}

.large-search {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 12px;
    margin-bottom: 24px;
}

.large-search input {
    padding: 16px 18px;
    font-size: 18px;
}

.large-search button {
    border-radius: 18px;
}

.search-result-head {
    margin-bottom: 22px;
}

.search-result-head h2 {
    margin: 0 0 6px;
    font-size: 28px;
}

.search-result-head p {
    margin: 0;
    color: var(--muted);
}

.empty-result {
    grid-column: 1 / -1;
    padding: 56px 20px;
    border-radius: 20px;
    text-align: center;
    color: var(--muted);
    background: #fff7ed;
    border: 1px dashed #fbbf24;
}

.site-footer {
    margin-top: 60px;
    color: #d1d5db;
    background: linear-gradient(180deg, #111827, #030712);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 40px;
    padding-top: 52px;
    padding-bottom: 42px;
}

.footer-logo .brand-copy strong {
    color: #ffffff;
}

.footer-logo .brand-copy em,
.footer-brand p {
    color: #9ca3af;
}

.footer-brand p {
    max-width: 520px;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 20px 24px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

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

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

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

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

    .info-card {
        position: static;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .brand-copy em {
        display: none;
    }

    .hero {
        min-height: 610px;
    }

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

    .hero-arrow {
        display: none;
    }

    .quick-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 22px;
    }

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

    .warm-section {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .page-hero {
        padding: 38px 24px;
    }

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

    .rank-meta {
        grid-column: 3;
    }

    .large-search {
        grid-template-columns: 1fr;
    }

    .large-search button {
        min-height: 48px;
    }

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

@media (max-width: 560px) {
    .header-inner {
        height: 62px;
        padding: 0 14px;
    }

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

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 92px 16px 88px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-one-line {
        font-size: 18px;
    }

    .quick-panel,
    .default-grid,
    .large-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .content-section,
    .page-main {
        padding-left: 14px;
        padding-right: 14px;
    }

    .warm-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .horizontal-card > a {
        grid-template-columns: 132px 1fr;
    }

    .horizontal-card .poster-frame {
        height: 132px;
    }

    .poster-frame {
        height: 300px;
    }

    .section-head {
        display: block;
    }

    .rank-item {
        grid-template-columns: 44px 1fr;
    }

    .rank-item img {
        display: none;
    }

    .rank-meta {
        grid-column: 2;
    }

    .detail-title-card,
    .prose-card,
    .info-card,
    .side-panel,
    .search-page-panel {
        padding: 20px;
    }
}
