:root {
    --ink-950: #0f172a;
    --ink-900: #111827;
    --ink-800: #1f2937;
    --ink-700: #374151;
    --mist-50: #f8fafc;
    --mist-100: #f1f5f9;
    --mist-200: #e2e8f0;
    --mist-300: #cbd5e1;
    --mist-500: #64748b;
    --mist-600: #475569;
    --mountain-50: #ecfdf5;
    --mountain-100: #d1fae5;
    --mountain-400: #34d399;
    --mountain-500: #10b981;
    --mountain-600: #059669;
    --mountain-700: #047857;
    --gold: #f59e0b;
    --white: #ffffff;
    --radius: 1.25rem;
    --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.10);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink-900);
    background: var(--white);
    min-width: 320px;
}

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

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

button,
input {
    font: inherit;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--mist-200);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 22px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 14px;
    background: linear-gradient(135deg, var(--mountain-500), var(--mountain-700));
    box-shadow: 0 14px 30px rgba(5, 150, 105, 0.28);
}

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

.brand-copy strong {
    font-size: 1.28rem;
    letter-spacing: 0.04em;
}

.brand-copy small {
    color: var(--mist-600);
    margin-top: 4px;
    font-size: 0.76rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--ink-700);
    font-weight: 650;
}

.desktop-nav a,
.nav-dropdown > button {
    position: relative;
    border: 0;
    background: transparent;
    padding: 8px 0;
    color: var(--ink-700);
    cursor: pointer;
}

.desktop-nav a:hover,
.nav-dropdown > button:hover {
    color: var(--mountain-700);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    left: 50%;
    top: 42px;
    width: 210px;
    transform: translate(-50%, 12px);
    visibility: hidden;
    opacity: 0;
    padding: 10px;
    border: 1px solid var(--mist-200);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: 0.2s ease;
}

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

.dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.93rem;
}

.dropdown-panel a:hover {
    background: var(--mountain-50);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 260px;
}

.header-search input,
.mobile-menu input,
.quick-search-band input,
.page-search-form input {
    width: 100%;
    border: 1px solid var(--mist-300);
    outline: none;
    border-radius: 999px;
    background: var(--mist-50);
    padding: 11px 16px;
    transition: 0.2s ease;
}

.header-search input:focus,
.mobile-menu input:focus,
.quick-search-band input:focus,
.page-search-form input:focus {
    border-color: var(--mountain-400);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
    background: var(--white);
}

.header-search button,
.mobile-menu button,
.quick-search-band button,
.page-search-form button {
    border: 0;
    color: var(--white);
    background: var(--mountain-600);
    border-radius: 999px;
    padding: 11px 18px;
    cursor: pointer;
    font-weight: 700;
}

.mobile-menu-button {
    display: none;
    border: 0;
    background: var(--mist-100);
    border-radius: 12px;
    padding: 10px 13px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding: 16px;
    border-top: 1px solid var(--mist-200);
    background: var(--white);
}

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

.mobile-menu form {
    display: flex;
    gap: 8px;
}

.mobile-menu a {
    padding: 10px 4px;
    color: var(--ink-700);
    font-weight: 650;
}

.hero-carousel {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    background: var(--ink-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.58) 45%, rgba(15, 23, 42, 0.18) 100%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.05) 50%);
}

.hero-content {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 96px;
}

.hero-copy {
    width: min(760px, 100%);
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--mountain-600);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-copy .eyebrow,
.page-hero .eyebrow,
.ranking-intro .eyebrow,
.watch-info-card .eyebrow {
    color: var(--mountain-100);
}

.hero-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.6rem, 7vw, 5.7rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero-copy p {
    width: min(680px, 100%);
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.32rem);
    line-height: 1.8;
}

.hero-tags,
.detail-tags,
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.detail-tags span,
.chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.82rem;
}

.chip {
    color: var(--mountain-700);
    border-color: rgba(5, 150, 105, 0.16);
    background: var(--mountain-50);
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 800;
    transition: 0.2s ease;
}

.primary-button {
    color: var(--ink-900);
    background: var(--white);
    box-shadow: 0 16px 42px rgba(255, 255, 255, 0.14);
}

.primary-button:hover {
    transform: translateY(-2px);
    background: var(--mountain-50);
}

.ghost-button {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.ghost-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.ghost-button.dark {
    color: var(--ink-900);
    border-color: var(--mist-300);
    background: var(--white);
}

.hero-controls {
    position: absolute;
    right: 42px;
    bottom: 64px;
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-controls button {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    font-size: 1.6rem;
    cursor: pointer;
}

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

.hero-dots button {
    width: 18px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-dots button.is-active {
    width: 42px;
    background: var(--white);
}

.quick-search-band {
    position: relative;
    z-index: 4;
    margin-top: -38px;
}

.quick-search-inner {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 440px);
    gap: 24px;
    align-items: center;
    padding: 28px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.quick-search-inner h2 {
    margin: 0 0 8px;
    font-size: clamp(1.3rem, 3vw, 2rem);
}

.quick-search-inner p {
    margin: 0;
    color: var(--mist-600);
    line-height: 1.7;
}

.quick-search-inner form,
.page-search-form {
    display: flex;
    gap: 10px;
}

.section-panel {
    padding: 72px 0;
}

.mist-panel {
    background: var(--mist-50);
}

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

.section-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    letter-spacing: -0.04em;
}

.section-heading a {
    color: var(--mountain-700);
    font-weight: 800;
}

.compact-heading {
    margin-bottom: 20px;
}

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

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

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

.six-cols {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.movie-card {
    border: 1px solid var(--mist-200);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: 0.25s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--mist-200);
}

.large-card .poster-link {
    aspect-ratio: 16 / 10;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.05) 60%);
}

.play-pill {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(5, 150, 105, 0.88);
    font-size: 0.82rem;
    font-weight: 800;
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--ink-900);
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.26);
}

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

.movie-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.35;
}

.movie-card h3 a:hover {
    color: var(--mountain-700);
}

.movie-meta {
    margin: 8px 0 10px;
    color: var(--mist-600);
    font-size: 0.88rem;
}

.movie-desc {
    margin: 0 0 14px;
    color: var(--ink-700);
    line-height: 1.65;
    font-size: 0.94rem;
}

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

.category-tile {
    min-height: 148px;
    padding: 20px;
    border: 1px solid var(--mist-200);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(5, 150, 105, 0.3);
    box-shadow: var(--shadow-card);
}

.category-tile strong,
.category-tile span,
.category-tile small {
    display: block;
}

.category-tile strong {
    font-size: 1.15rem;
}

.category-tile span {
    margin: 10px 0;
    color: var(--mountain-700);
    font-weight: 800;
}

.category-tile small {
    color: var(--mist-600);
    line-height: 1.5;
}

.ranking-strip {
    padding: 80px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 20% 10%, rgba(16, 185, 129, 0.30), transparent 30%),
        linear-gradient(135deg, #0f172a, #111827 60%, #064e3b);
}

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

.ranking-intro h2 {
    margin: 12px 0 18px;
    font-size: clamp(2rem, 5vw, 3.4rem);
    letter-spacing: -0.05em;
}

.ranking-intro p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
}

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

.ranking-list a {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.ranking-list strong {
    color: var(--mountain-100);
    font-size: 1.1rem;
}

.ranking-list small {
    color: rgba(255, 255, 255, 0.65);
}

.stacked-sections {
    display: grid;
    gap: 54px;
}

.page-main {
    background: var(--white);
}

.page-hero {
    color: var(--white);
    background:
        radial-gradient(circle at 18% 20%, rgba(52, 211, 153, 0.28), transparent 32%),
        linear-gradient(135deg, #0f172a, #1f2937 55%, #064e3b);
}

.slim-hero .container {
    padding: 64px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

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

.page-hero h1 {
    margin: 12px 0 16px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: -0.05em;
}

.page-hero p {
    width: min(780px, 100%);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    font-size: 1.05rem;
}

.hero-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-stat-row span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 0 32px;
}

.pagination:last-child {
    margin: 36px 0 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    min-width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid var(--mist-200);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink-700);
    font-weight: 750;
}

.pagination a.is-active,
.pagination a:hover {
    color: var(--white);
    border-color: var(--mountain-600);
    background: var(--mountain-600);
}

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

.compact-link,
.rank-index-list a {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 15px;
    border: 1px solid var(--mist-200);
    border-radius: 14px;
    background: var(--white);
}

.compact-link small,
.rank-index-list small {
    color: var(--mist-600);
}

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

.rank-index-list a {
    display: grid;
    grid-template-columns: 72px minmax(160px, 1fr) 1.4fr;
    align-items: center;
}

.watch-main {
    background: var(--mist-50);
}

.watch-hero {
    padding: 34px 0 60px;
    color: var(--white);
    background:
        radial-gradient(circle at 70% 0%, rgba(16, 185, 129, 0.28), transparent 28%),
        linear-gradient(135deg, #0f172a, #111827 58%, #064e3b);
}

.watch-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.85fr);
    gap: 30px;
    align-items: stretch;
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 26px;
    background: #000000;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--white);
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.68), rgba(15, 23, 42, 0.18));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-shell.is-playing .player-overlay {
    opacity: 0;
    visibility: hidden;
}

.big-play {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--mountain-700);
    background: rgba(255, 255, 255, 0.92);
    font-size: 2rem;
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.14);
}

.watch-info-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
}

.watch-info-card h1 {
    margin: 12px 0 16px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.05em;
}

.watch-one-line {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

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

.meta-list div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.meta-list dt {
    color: rgba(255, 255, 255, 0.58);
}

.meta-list dd {
    margin: 0;
    font-weight: 800;
}

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

.detail-article,
.side-card,
.content-page {
    padding: 30px;
    border: 1px solid var(--mist-200);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.detail-article h2,
.side-card h2,
.content-page h2 {
    margin: 0 0 14px;
    font-size: 1.45rem;
}

.detail-article h2:not(:first-child),
.content-page h2:not(:first-child) {
    margin-top: 30px;
}

.detail-article p,
.content-page p {
    color: var(--ink-700);
    line-height: 1.9;
    font-size: 1.02rem;
}

.detail-tags span {
    color: var(--mountain-700);
    border-color: rgba(5, 150, 105, 0.18);
    background: var(--mountain-50);
}

.side-poster {
    margin: 18px 0;
    border-radius: 18px;
}

.next-prev {
    display: grid;
    gap: 10px;
}

.next-prev a {
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--mist-50);
    color: var(--ink-700);
    line-height: 1.5;
}

.next-prev a:hover {
    color: var(--mountain-700);
    background: var(--mountain-50);
}

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

.about-category-list a {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--mist-200);
    border-radius: 18px;
    background: var(--mist-50);
}

.about-category-list span {
    color: var(--mist-600);
    line-height: 1.6;
}

.site-footer {
    margin-top: 0;
    padding: 56px 0;
    color: rgba(255, 255, 255, 0.72);
    background: var(--ink-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr;
    gap: 42px;
}

.footer-brand {
    color: var(--white);
    font-size: 1.4rem;
}

.site-footer p {
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 18px;
    color: var(--white);
    font-size: 1.05rem;
}

.site-footer a:not(.footer-brand) {
    display: block;
    margin: 10px 0;
}

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

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--mountain-600);
    box-shadow: 0 14px 30px rgba(5, 150, 105, 0.32);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.2s ease;
}

.back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

    .mobile-menu-button {
        display: inline-flex;
    }

    .three-cols,
    .four-cols,
    .six-cols,
    .category-grid,
    .compact-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ranking-grid,
    .watch-grid,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .watch-info-card {
        order: -1;
    }
}

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

    .hero-carousel,
    .hero-content {
        min-height: 78vh;
    }

    .hero-content {
        padding-bottom: 112px;
    }

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

    .hero-controls {
        right: 18px;
        bottom: 62px;
    }

    .quick-search-inner,
    .quick-search-inner form,
    .page-search-form,
    .ranking-list a,
    .rank-index-list a {
        grid-template-columns: 1fr;
    }

    .quick-search-inner form,
    .page-search-form,
    .mobile-menu form {
        flex-direction: column;
    }

    .three-cols,
    .four-cols,
    .six-cols,
    .category-grid,
    .compact-link-grid,
    .about-category-list {
        grid-template-columns: 1fr;
    }

    .section-panel {
        padding: 52px 0;
    }

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

    .slim-hero .container {
        padding: 44px 0;
    }

    .player-shell {
        border-radius: 18px;
    }

    .detail-article,
    .side-card,
    .content-page,
    .watch-info-card {
        padding: 22px;
    }
}
