:root {
    color-scheme: light;
    --stone-950: #1c1917;
    --stone-900: #292524;
    --stone-800: #44403c;
    --amber-950: #451a03;
    --amber-900: #78350f;
    --amber-800: #92400e;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-300: #fcd34d;
    --amber-100: #fef3c7;
    --orange-700: #c2410c;
    --orange-600: #ea580c;
    --red-50: #fef2f2;
    --page-bg: #fff7ed;
    --panel: rgba(255, 255, 255, 0.82);
    --panel-strong: rgba(255, 255, 255, 0.94);
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(146, 64, 14, 0.15);
    --shadow: 0 20px 50px rgba(120, 53, 15, 0.16);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 35%),
        linear-gradient(135deg, #fff7ed 0%, #fffbeb 48%, #fef2f2 100%);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.page-main {
    min-height: 70vh;
    padding-top: 72px;
}

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

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(120, 53, 15, 0.94), rgba(194, 65, 12, 0.94));
    color: #fff7ed;
    box-shadow: 0 12px 30px rgba(120, 53, 15, 0.18);
    backdrop-filter: blur(14px);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber-300), var(--orange-600));
    color: #7c2d12;
    box-shadow: 0 0 0 5px rgba(254, 243, 199, 0.16);
    font-size: 14px;
}

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

.site-nav a,
.mobile-panel nav a {
    padding: 9px 14px;
    border-radius: 999px;
    color: rgba(255, 251, 235, 0.86);
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active,
.mobile-panel nav a:hover,
.mobile-panel nav a.active {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    transform: translateY(-1px);
}

.header-search {
    width: 250px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(252, 211, 77, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    overflow: hidden;
}

.header-search input,
.mobile-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    padding: 9px 4px 9px 16px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(254, 243, 199, 0.72);
}

.header-search button {
    border: 0;
    background: transparent;
    color: var(--amber-100);
    padding: 8px 13px;
    font-size: 18px;
}

.mobile-menu-button {
    display: none;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 12px;
    font-size: 24px;
}

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

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

.mobile-search {
    display: flex;
    gap: 8px;
    margin: 8px 0 12px;
    border: 1px solid rgba(252, 211, 77, 0.3);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.mobile-search button {
    border: 0;
    background: var(--amber-500);
    color: #7c2d12;
    padding: 0 16px;
    font-weight: 800;
}

.mobile-panel nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.hero-slider {
    position: relative;
    min-height: calc(100vh - 72px);
    overflow: hidden;
    color: #ffffff;
    background: var(--stone-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.75s ease;
    background-position: center;
    background-size: cover;
}

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

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(28, 25, 23, 0.92) 0%, rgba(28, 25, 23, 0.62) 46%, rgba(28, 25, 23, 0.24) 100%),
        linear-gradient(0deg, rgba(28, 25, 23, 0.86) 0%, rgba(28, 25, 23, 0.14) 50%, rgba(28, 25, 23, 0.50) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 80px 0 96px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 360px;
    gap: 48px;
    align-items: end;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-kicker span,
.movie-tags span,
.detail-tags span,
.filter-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.16);
    color: #92400e;
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 800;
}

.hero-kicker span {
    background: rgba(255, 255, 255, 0.16);
    color: #fff7ed;
    backdrop-filter: blur(8px);
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
    margin: 16px 0 0;
    max-width: 680px;
    color: rgba(255, 251, 235, 0.88);
    font-size: clamp(16px, 2vw, 21px);
}

.hero-summary {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.button-primary,
.button-secondary,
.inline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 11px 20px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
    box-shadow: 0 18px 35px rgba(217, 119, 6, 0.32);
}

.button-secondary {
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.inline-button {
    color: #78350f;
    background: #fef3c7;
    min-height: 38px;
    padding: 8px 16px;
}

.button-primary:hover,
.button-secondary:hover,
.inline-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(120, 53, 15, 0.25);
}

.hero-poster {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(194, 65, 12, 0.18));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
}

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

.hero-controls {
    position: absolute;
    z-index: 5;
    right: calc((100% - min(1180px, calc(100% - 32px))) / 2);
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-controls button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    transition: width 0.2s ease, background 0.2s ease;
}

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

.section {
    padding: 64px 0;
}

.section-tight {
    padding: 42px 0;
}

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

.section-heading h2,
.page-title h1 {
    margin: 0;
    color: #1c1917;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 12px 36px rgba(120, 53, 15, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    backdrop-filter: blur(10px);
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 119, 6, 0.35);
    box-shadow: var(--shadow);
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(252, 211, 77, 0.18), rgba(234, 88, 12, 0.15));
}

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

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

.movie-year {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border-radius: 999px;
    background: rgba(28, 25, 23, 0.76);
    color: #ffffff;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 800;
}

.movie-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.92);
    color: #ffffff;
    transform: translate(-50%, -50%) scale(0.72);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

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

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

.movie-meta-line {
    display: flex;
    gap: 8px;
    color: var(--amber-700);
    font-size: 12px;
    font-weight: 900;
}

.movie-card h3 {
    margin: 8px 0 6px;
    color: var(--stone-950);
    font-size: 19px;
    line-height: 1.35;
}

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

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

.movie-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 178px;
    border-radius: 28px;
    padding: 24px;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 10%, rgba(254, 243, 199, 0.36), transparent 34%),
        linear-gradient(135deg, var(--amber-800), var(--orange-600));
    box-shadow: 0 18px 45px rgba(120, 53, 15, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 70px rgba(120, 53, 15, 0.24);
}

.category-card h2,
.category-card h3 {
    margin: 0;
    font-size: 23px;
}

.category-card p {
    margin: 10px 0 16px;
    color: rgba(255, 251, 235, 0.86);
    font-size: 14px;
}

.category-card strong {
    display: block;
    font-size: 32px;
    line-height: 1;
}

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

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

.rank-row {
    display: grid;
    grid-template-columns: auto 132px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--panel);
    padding: 12px;
    box-shadow: 0 12px 30px rgba(120, 53, 15, 0.07);
}

.rank-number {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-700));
    font-weight: 950;
    font-size: 20px;
}

.rank-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(245, 158, 11, 0.12);
}

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

.rank-info h3 {
    margin: 0;
    font-size: 19px;
}

.rank-info h3 a:hover {
    color: var(--amber-700);
}

.rank-info p {
    margin: 5px 0 8px;
    color: var(--muted);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.rank-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #7c2d12;
    font-size: 12px;
    font-weight: 800;
}

.rank-meta span {
    border-radius: 999px;
    background: #fef3c7;
    padding: 4px 9px;
}

.sidebar-panel,
.filter-panel,
.detail-panel {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--panel);
    padding: 22px;
    box-shadow: 0 14px 36px rgba(120, 53, 15, 0.08);
    backdrop-filter: blur(12px);
}

.sidebar-panel {
    position: sticky;
    top: 96px;
}

.sidebar-panel h2,
.filter-panel h2,
.detail-panel h2 {
    margin: 0 0 16px;
    color: var(--stone-950);
    font-size: 22px;
}

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

.sidebar-links a {
    border-radius: 16px;
    background: rgba(254, 243, 199, 0.65);
    padding: 10px 12px;
    color: #7c2d12;
    font-weight: 800;
}

.page-hero {
    padding: 72px 0 42px;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 20%, rgba(252, 211, 77, 0.3), transparent 24%),
        linear-gradient(135deg, var(--amber-900), var(--stone-950));
}

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

.page-hero .page-title p {
    max-width: 760px;
    color: rgba(255, 251, 235, 0.82);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 251, 235, 0.78);
    font-weight: 700;
}

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

.filter-panel {
    margin-bottom: 24px;
}

.filter-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, minmax(140px, 1fr));
    gap: 12px;
}

.filter-row input,
.filter-row select,
.search-box input {
    width: 100%;
    border: 1px solid rgba(180, 83, 9, 0.18);
    border-radius: 16px;
    background: #ffffff;
    outline: 0;
    padding: 12px 14px;
    color: var(--stone-900);
}

.search-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    max-width: 780px;
    margin-top: 26px;
}

.search-box button {
    border: 0;
    border-radius: 16px;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
    color: #ffffff;
    padding: 0 24px;
    font-weight: 900;
}

.library-list {
    columns: 4 240px;
    column-gap: 22px;
}

.library-item {
    break-inside: avoid;
    display: block;
    margin: 0 0 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
    padding: 10px 12px;
}

.library-item strong {
    display: block;
    color: var(--stone-950);
}

.library-item span {
    color: var(--muted);
    font-size: 13px;
}

.detail-hero {
    padding: 56px 0 42px;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(28, 25, 23, 0.92), rgba(28, 25, 23, 0.70)),
        var(--detail-bg, linear-gradient(135deg, var(--amber-900), var(--stone-950)));
    background-position: center;
    background-size: cover;
}

.detail-hero h1 {
    margin: 0;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-hero p {
    max-width: 860px;
    margin: 14px 0 0;
    color: rgba(255, 251, 235, 0.86);
    font-size: 18px;
}

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

.player-shell {
    overflow: hidden;
    border-radius: 30px;
    background: var(--stone-950);
    box-shadow: 0 30px 90px rgba(28, 25, 23, 0.28);
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

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

.player-cover {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background-position: center;
    background-size: cover;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(245, 158, 11, 0.15), transparent 32%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.45));
}

.player-cover span {
    position: relative;
    z-index: 2;
}

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

.play-mark {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    font-size: 32px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.player-title {
    padding: 18px 22px 22px;
    color: #fff7ed;
}

.player-title h2 {
    margin: 0 0 6px;
    font-size: 22px;
}

.player-title p {
    margin: 0;
    color: rgba(255, 251, 235, 0.70);
}

.detail-panel {
    margin-top: 24px;
}

.detail-panel p {
    margin: 0 0 14px;
    color: #4b5563;
}

.detail-aside-cover {
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 3 / 4;
    background: rgba(245, 158, 11, 0.12);
}

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

.info-table {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.info-table div {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
}

.info-table dt {
    color: var(--muted);
}

.info-table dd {
    margin: 0;
    color: var(--stone-950);
    font-weight: 800;
}

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

.search-results {
    min-height: 120px;
}

.empty-state {
    border: 1px dashed rgba(180, 83, 9, 0.28);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
    padding: 28px;
    color: var(--muted);
    text-align: center;
}

.site-footer {
    margin-top: 70px;
    color: rgba(255, 251, 235, 0.82);
    background: linear-gradient(180deg, var(--amber-950), var(--stone-950));
}

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

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

.footer-inner p {
    max-width: 360px;
    margin: 16px 0 0;
}

.footer-inner a:not(.footer-logo) {
    display: block;
    margin: 8px 0;
    color: rgba(255, 251, 235, 0.76);
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid rgba(254, 243, 199, 0.14);
    padding: 18px 0 24px;
    color: rgba(255, 251, 235, 0.58);
}

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

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

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

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

    .sidebar-panel {
        position: static;
    }

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

    .hero-poster {
        display: none;
    }
}

@media (max-width: 760px) {
    .page-main {
        padding-top: 64px;
    }

    .header-inner {
        height: 64px;
    }

    .site-nav {
        display: none;
    }

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

    .site-logo {
        font-size: 18px;
    }

    .logo-mark {
        width: 30px;
        height: 30px;
    }

    .hero-slider {
        min-height: calc(100vh - 64px);
    }

    .hero-content {
        padding: 72px 0 86px;
    }

    .hero-controls {
        right: 16px;
        bottom: 24px;
    }

    .hero-dots {
        bottom: 28px;
    }

    .section {
        padding: 42px 0;
    }

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

    .card-grid,
    .category-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .rank-row {
        grid-template-columns: auto 92px minmax(0, 1fr);
        gap: 10px;
    }

    .rank-info p {
        display: none;
    }

    .filter-row,
    .search-box {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}
