:root {
    --amber-50: #fff8ec;
    --amber-100: #ffedd5;
    --amber-200: #fed7aa;
    --amber-400: #f59e0b;
    --amber-500: #f97316;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --orange-600: #ea580c;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
    --shadow-sm: 0 8px 18px rgba(17, 24, 39, 0.08);
    --shadow-md: 0 18px 45px rgba(17, 24, 39, 0.12);
    --shadow-lg: 0 28px 70px rgba(17, 24, 39, 0.18);
    --radius-lg: 18px;
    --radius-xl: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-800);
    background: linear-gradient(180deg, #fffaf1 0%, #ffffff 34%, #fff7ed 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "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: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(251, 191, 36, 0.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.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: 10px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.32);
}

.brand-name {
    font-size: 22px;
    color: transparent;
    background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
    -webkit-background-clip: text;
    background-clip: text;
}

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

.nav-link,
.mobile-nav-link {
    position: relative;
    padding: 10px 14px;
    color: var(--gray-700);
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--amber-700);
    background: var(--amber-50);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-search,
.mobile-search,
.inline-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

.top-search input,
.mobile-search input,
.inline-search input {
    width: 190px;
    padding: 10px 2px;
    color: var(--gray-700);
    background: transparent;
    border: 0;
    outline: 0;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    color: var(--gray-700);
    background: var(--amber-50);
    border: 0;
    border-radius: 12px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.hero-slider {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 18% 20%, rgba(251, 191, 36, 0.95), transparent 38%), linear-gradient(135deg, #d97706, #ea580c 52%, #431407);
}

.hero-track {
    width: min(1180px, calc(100% - 32px));
    min-height: 680px;
    margin: 0 auto;
    display: grid;
    align-items: center;
}

.hero-slide {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 56px;
    align-items: center;
    opacity: 0;
    transform: translateX(24px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-image {
    position: relative;
    order: 2;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 40px 110px rgba(67, 20, 7, 0.42);
    transform: rotate(1deg);
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.56));
}

.hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transform: scale(1.04);
}

.hero-content {
    order: 1;
    padding: 112px 0 80px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--amber-700);
    background: var(--amber-100);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.hero-content .eyebrow,
.page-hero .eyebrow,
.detail-hero .eyebrow {
    color: var(--amber-50);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-content h1,
.hero-content h2 {
    margin: 0 0 12px;
    font-size: clamp(38px, 7vw, 74px);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.hero-content h3 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3.2vw, 38px);
    color: #fff7ed;
}

.hero-content p {
    max-width: 650px;
    margin: 0 0 24px;
    color: #ffedd5;
    font-size: 18px;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    color: var(--amber-700);
    background: var(--amber-50);
    border: 1px solid var(--amber-200);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    color: var(--amber-50);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.22);
}

.hero-actions,
.quick-links,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
}

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

.primary-button {
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
    box-shadow: 0 18px 35px rgba(249, 115, 22, 0.32);
}

.hero-content .primary-button {
    color: var(--amber-700);
    background: var(--white);
}

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

.ghost-button.light {
    color: var(--amber-700);
    background: var(--white);
}

.text-button {
    color: var(--amber-700);
    background: var(--amber-50);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
}

.hero-prev {
    left: max(18px, calc((100vw - 1180px) / 2 - 68px));
}

.hero-next {
    right: max(18px, calc((100vw - 1180px) / 2 - 68px));
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(255, 255, 255, 0.44);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
    width: 30px;
    background: var(--white);
}

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

.section-heading {
    margin-bottom: 28px;
}

.section-heading.center {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.section-heading h2,
.category-overview-card h2,
.side-panel h2,
.content-card h2 {
    margin: 0 0 10px;
    color: var(--gray-900);
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.section-heading p,
.category-overview-card p,
.content-card p,
.site-footer p {
    margin: 0;
    color: var(--gray-600);
}

.intro-panel {
    margin-top: -50px;
    position: relative;
    z-index: 4;
    padding: 34px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(251, 191, 36, 0.24);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.quick-links {
    justify-content: center;
}

.quick-links a,
.footer-links a {
    padding: 10px 14px;
    color: var(--amber-700);
    background: var(--amber-50);
    border-radius: 999px;
    font-weight: 800;
}

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

.featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

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

.movie-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.38);
    box-shadow: var(--shadow-lg);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--amber-100), var(--amber-500));
}

.movie-card.compact .poster-link {
    aspect-ratio: 2 / 3;
}

.poster-link img,
.category-card img,
.category-cover img,
.rank-item img,
.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.play-chip,
.year-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 9px;
    color: var(--white);
    background: rgba(17, 24, 39, 0.72);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.play-chip {
    left: 12px;
    bottom: 12px;
}

.year-chip {
    top: 12px;
    right: 12px;
    background: var(--amber-500);
}

.rank-badge {
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

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

.movie-card-body h3 {
    margin: 0 0 7px;
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

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

.meta-line,
.one-line {
    margin: 0 0 10px;
    color: var(--gray-500);
    font-size: 13px;
}

.one-line {
    display: -webkit-box;
    min-height: 42px;
    overflow: hidden;
    color: var(--gray-600);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.soft-bg {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100vw - 1180px) / 2));
    padding-right: max(16px, calc((100vw - 1180px) / 2));
    background: linear-gradient(180deg, #fff7ed, #ffffff);
}

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

.category-card {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: var(--white);
    background: var(--gray-900);
    border-radius: 26px;
    box-shadow: var(--shadow-md);
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.78));
}

.category-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.category-card span,
.category-card p {
    position: relative;
    z-index: 2;
}

.category-card span {
    font-size: 24px;
    font-weight: 950;
}

.category-card p {
    margin: 8px 0 0;
    color: #ffedd5;
    font-size: 14px;
}

.split-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: start;
}

.category-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 42px 62px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    background: var(--white);
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    border-color: var(--amber-200);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
    border-radius: 999px;
    font-weight: 950;
}

.rank-item img {
    width: 62px;
    height: 62px;
    border-radius: 14px;
}

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

.rank-item strong {
    color: var(--gray-900);
    font-size: 15px;
}

.rank-item em {
    color: var(--gray-500);
    font-size: 12px;
    font-style: normal;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 0 0 24px;
}

.filter-button {
    min-height: 40px;
    padding: 0 16px;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
}

.filter-button.active,
.filter-button:hover {
    color: var(--white);
    background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
    border-color: transparent;
}

.page-main {
    padding-top: 24px;
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 92px 42px;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 34%), linear-gradient(135deg, #d97706, #ea580c 60%, #431407);
    border-radius: 34px;
    box-shadow: var(--shadow-lg);
}

.page-hero h1 {
    max-width: 780px;
    margin: 0 0 14px;
    font-size: clamp(36px, 6vw, 62px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: #ffedd5;
    font-size: 18px;
}

.category-overview-grid {
    display: grid;
    gap: 22px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 18px;
    background: var(--white);
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
}

.category-cover {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 22px;
    background: var(--amber-100);
}

.mini-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.mini-row a {
    padding: 6px 10px;
    color: var(--amber-700);
    background: var(--amber-50);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.side-panel {
    position: sticky;
    top: 100px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.side-panel h2 {
    font-size: 26px;
}

.breadcrumb {
    width: min(1180px, calc(100% - 32px));
    margin: 8px auto 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    color: var(--gray-500);
    font-size: 14px;
}

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

.detail-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
    padding: 36px;
    color: var(--white);
    background: radial-gradient(circle at 20% 10%, rgba(251, 191, 36, 0.8), transparent 32%), linear-gradient(135deg, #431407, #d97706 52%, #ea580c);
    border-radius: 34px;
    box-shadow: var(--shadow-lg);
}

.detail-poster {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.detail-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.detail-one-line {
    max-width: 760px;
    margin: 0 0 22px;
    color: #ffedd5;
    font-size: 18px;
}

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

.detail-meta div {
    padding: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
}

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

.detail-meta dd {
    margin: 3px 0 0;
    color: var(--white);
    font-weight: 900;
}

.large-tags span {
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
}

.player-section {
    padding-bottom: 32px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    background: var(--black);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
}

.video-shell video {
    width: 100%;
    height: 100%;
    display: block;
    background: var(--black);
    object-fit: contain;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 10px;
    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62));
    border: 0;
    cursor: pointer;
}

.player-overlay span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    padding-left: 6px;
    color: var(--amber-600);
    background: var(--white);
    border-radius: 999px;
    font-size: 34px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
}

.player-overlay strong {
    font-size: 20px;
}

.player-overlay.is-hidden {
    display: none;
}

.detail-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding-top: 24px;
}

.content-card {
    padding: 26px;
    background: var(--white);
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.content-card h2 {
    font-size: 28px;
}

.site-footer {
    margin-top: 40px;
    padding: 44px 0;
    background: #111827;
    color: var(--white);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.footer-brand {
    margin-bottom: 10px;
    font-size: 22px;
    color: var(--white);
}

.site-footer p {
    max-width: 620px;
    color: #d1d5db;
}

.footer-links a {
    color: #ffedd5;
    background: rgba(255, 255, 255, 0.08);
}

.is-filtered-out,
.is-search-hidden {
    display: none !important;
}

@media (max-width: 1080px) {
    .movie-grid,
    .compact-grid,
    .rank-grid,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .hero-slide,
    .split-layout,
    .category-layout,
    .detail-hero,
    .detail-text {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: 1;
        margin-top: 104px;
    }

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

    .side-panel {
        position: static;
    }
}

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

    .menu-toggle {
        display: grid;
        place-items: center;
    }

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

    .header-inner {
        height: 68px;
    }

    .hero-slider,
    .hero-track {
        min-height: 720px;
    }

    .hero-slide {
        gap: 24px;
    }

    .hero-image img {
        height: 320px;
    }

    .hero-control {
        display: none;
    }

    .movie-grid,
    .featured-grid,
    .compact-grid,
    .rank-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

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

    .detail-hero,
    .page-hero {
        padding: 26px;
        border-radius: 26px;
    }

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

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

@media (max-width: 560px) {
    .section-wrap {
        padding: 46px 0;
    }

    .intro-panel {
        padding: 22px;
    }

    .movie-grid,
    .featured-grid,
    .compact-grid,
    .rank-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .brand-name {
        font-size: 20px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 38px;
    }

    .hero-content p,
    .page-hero p,
    .detail-one-line {
        font-size: 16px;
    }

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

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