:root {
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --emerald-700: #047857;
    --amber-50: #fffbeb;
    --amber-500: #f59e0b;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(28, 25, 23, 0.1), 0 4px 6px -4px rgba(28, 25, 23, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(28, 25, 23, 0.13), 0 8px 10px -6px rgba(28, 25, 23, 0.1);
}

body {
    margin: 0;
    background: linear-gradient(180deg, var(--stone-50), var(--white));
    color: var(--stone-800);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--stone-200);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}

.header-inner {
    max-width: 1280px;
    height: 64px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--green-600), var(--emerald-700));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand:hover .brand-icon {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 20px;
    color: var(--stone-800);
}

.brand-text em {
    font-size: 12px;
    color: var(--stone-500);
    font-style: normal;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-weight: 600;
    color: var(--stone-700);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-600);
}

.header-search {
    width: 260px;
    position: relative;
}

.header-search input,
.mobile-search input,
.filter-search input {
    width: 100%;
    border: 1px solid var(--stone-200);
    background: var(--stone-50);
    border-radius: 12px;
    padding: 11px 14px 11px 40px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-search input:focus {
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--green-500);
}

.search-icon,
.filter-search span {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--stone-500);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--stone-100);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--stone-700);
    border-radius: 999px;
}

.mobile-panel {
    display: none;
    padding: 16px 24px 22px;
    border-top: 1px solid var(--stone-200);
}

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

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

.mobile-search input {
    padding-left: 14px;
}

.mobile-search button {
    border: 0;
    border-radius: 12px;
    padding: 0 16px;
    background: var(--green-600);
    color: var(--white);
    font-weight: 700;
}

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

.mobile-nav-link {
    padding: 10px 0;
    color: var(--stone-700);
    font-weight: 600;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: var(--stone-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg,
.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.hero-kicker,
.hero-meta,
.detail-meta,
.card-foot,
.poster-meta,
.detail-tags,
.hero-tags,
.tag-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-kicker span,
.detail-tags span,
.hero-tags span {
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
}

.hero-kicker span:first-child {
    background: var(--green-600);
}

.hero-kicker span:last-child,
.hero-tags span {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.hero-content h1 {
    max-width: 740px;
    margin: 16px 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 680px;
    color: var(--stone-200);
    font-size: 19px;
    line-height: 1.75;
}

.hero-meta {
    margin: 18px 0;
    color: var(--stone-300);
    font-weight: 600;
}

.hero-actions,
.intro-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.primary-btn,
.ghost-btn,
.section-more,
.ranking-action,
.intro-actions a {
    border-radius: 12px;
    font-weight: 800;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    background: var(--green-600);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.primary-btn:hover {
    background: var(--green-700);
    transform: scale(1.04);
    box-shadow: var(--shadow-xl);
}

.ghost-btn {
    padding: 13px 20px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hero-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 42px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    transition: width 0.3s ease, background 0.3s ease;
}

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

.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
}

.intro-section {
    padding-bottom: 18px;
}

.intro-card,
.green-panel,
.story-card {
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.intro-card {
    padding: 34px;
    background: linear-gradient(135deg, var(--green-50), var(--white));
    border: 1px solid var(--green-100);
}

.intro-card h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: var(--stone-800);
}

.intro-card p {
    max-width: 820px;
    color: var(--stone-600);
    font-size: 17px;
    line-height: 1.8;
}

.intro-actions a {
    padding: 12px 18px;
    background: var(--stone-900);
    color: var(--white);
}

.intro-actions a:first-child {
    background: var(--green-600);
}

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

.section-head h2 {
    margin: 0;
    color: var(--stone-800);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 900;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--stone-600);
}

.section-more {
    flex-shrink: 0;
    padding: 10px 16px;
    color: var(--green-600);
    background: var(--green-50);
}

.section-more:hover {
    color: var(--white);
    background: var(--green-600);
}

.green-panel {
    max-width: 1232px;
    padding: 40px;
    background: linear-gradient(135deg, var(--green-50), #ecfdf5);
}

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

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

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

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

.card-link {
    display: block;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.card-link:hover {
    transform: translateY(-4px);
    border-color: #86efac;
    box-shadow: var(--shadow-xl);
}

.poster-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--stone-900);
}

.featured .poster-wrap {
    aspect-ratio: 16 / 9;
}

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

.card-link:hover .poster-wrap img {
    transform: scale(1.1);
}

.poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.68));
}

.poster-meta {
    position: absolute;
    left: 12px;
    bottom: 12px;
    right: 12px;
    color: var(--white);
}

.poster-meta span,
.rank-badge {
    border-radius: 8px;
    padding: 5px 8px;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(4px);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green-600);
    color: var(--white);
    font-weight: 900;
}

.play-chip {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(22, 163, 74, 0.88);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-link:hover .play-chip {
    opacity: 1;
    transform: scale(1);
}

.play-chip svg,
.big-play svg {
    fill: currentColor;
    stroke: none;
}

.card-body {
    padding: 16px;
}

.card-body h3 {
    margin: 0 0 8px;
    color: var(--stone-800);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-link:hover h3 {
    color: var(--green-600);
}

.card-body p {
    min-height: 44px;
    margin: 0 0 12px;
    color: var(--stone-600);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-foot {
    color: var(--stone-500);
    font-size: 13px;
    margin-bottom: 10px;
}

.card-foot span + span::before {
    content: "•";
    margin-right: 8px;
    color: var(--stone-300);
}

.tag-row span {
    border-radius: 6px;
    padding: 4px 7px;
    color: var(--stone-600);
    background: var(--stone-100);
    font-size: 12px;
}

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

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

.category-tile {
    min-height: 150px;
    padding: 22px;
    border-radius: 24px;
    color: var(--stone-800);
    background: linear-gradient(135deg, var(--white), var(--green-50));
    border: 1px solid var(--stone-200);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-tile strong {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 900;
}

.category-tile span {
    color: var(--stone-600);
    line-height: 1.65;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    background: var(--stone-900);
}

.page-hero {
    min-height: 330px;
    display: flex;
    align-items: center;
    color: var(--white);
    background: radial-gradient(circle at 20% 0%, rgba(34, 197, 94, 0.45), transparent 36%), linear-gradient(135deg, var(--stone-900), #064e3b);
}

.page-hero div {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px;
}

.page-hero p {
    margin: 0 0 12px;
    color: #86efac;
    font-weight: 800;
}

.page-hero h1 {
    max-width: 820px;
    margin: 0 0 14px;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.page-hero span {
    max-width: 760px;
    display: block;
    color: var(--stone-200);
    font-size: 18px;
    line-height: 1.8;
}

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

.category-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    border: 1px solid var(--stone-200);
    border-radius: 24px;
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.category-card-cover {
    position: relative;
    min-height: 220px;
    background: var(--stone-900);
}

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

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

.category-card-cover span {
    position: absolute;
    z-index: 2;
    left: 16px;
    bottom: 16px;
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
}

.category-card-body {
    padding: 24px 24px 24px 0;
}

.category-card-body h2 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 900;
}

.category-card-body p {
    margin: 0 0 18px;
    color: var(--stone-600);
    line-height: 1.7;
}

.sample-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sample-links a {
    border-radius: 999px;
    padding: 7px 11px;
    color: var(--green-700);
    background: var(--green-50);
    font-size: 13px;
    font-weight: 700;
}

.filter-shell {
    display: grid;
    gap: 16px;
    margin-bottom: 30px;
}

.filter-search {
    position: relative;
    max-width: 560px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    border: 1px solid var(--stone-200);
    border-radius: 999px;
    padding: 9px 14px;
    background: var(--white);
    color: var(--stone-700);
    font-weight: 700;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--green-600);
    background: var(--green-600);
    color: var(--white);
}

.empty-state {
    display: none;
    padding: 36px;
    text-align: center;
    color: var(--stone-600);
    border-radius: 18px;
    background: var(--stone-100);
}

.detail-hero {
    min-height: 640px;
    color: var(--white);
}

.detail-bg,
.detail-shade {
    position: absolute;
    inset: 0;
}

.detail-shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.24));
}

.detail-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    min-height: 640px;
    margin: 0 auto;
    padding: 72px 24px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 42px;
    align-items: center;
}

.detail-poster {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--stone-300);
}

.breadcrumb a:hover {
    color: #86efac;
}

.detail-info h1 {
    margin: 0 0 18px;
    max-width: 820px;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.detail-one-line {
    max-width: 820px;
    margin: 0 0 22px;
    color: var(--stone-200);
    font-size: 20px;
    line-height: 1.75;
}

.detail-meta span {
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-weight: 700;
}

.detail-tags {
    margin: 22px 0 8px;
}

.detail-tags span {
    background: rgba(22, 163, 74, 0.88);
    color: var(--white);
}

.player-section {
    padding-top: 52px;
    padding-bottom: 20px;
}

.video-player {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    background: #000000;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16 / 9;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
    cursor: pointer;
}

.player-overlay strong {
    max-width: 80%;
    font-size: clamp(22px, 4vw, 42px);
    text-align: center;
}

.big-play {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    background: var(--green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.big-play svg {
    width: 36px;
    height: 36px;
    margin-left: 4px;
}

.video-player.is-playing .player-overlay {
    display: none;
}

.detail-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.story-card {
    padding: 30px;
    border: 1px solid var(--stone-200);
}

.story-card h2 {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 900;
}

.story-card p {
    margin: 0;
    color: var(--stone-600);
    font-size: 17px;
    line-height: 1.9;
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 62px 112px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--stone-200);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.ranking-index {
    color: var(--green-600);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.ranking-cover {
    border-radius: 14px;
    overflow: hidden;
    background: var(--stone-900);
}

.ranking-cover img {
    width: 112px;
    height: 70px;
    object-fit: cover;
}

.ranking-info h2 {
    margin: 0 0 6px;
    color: var(--stone-800);
    font-size: 20px;
    font-weight: 900;
}

.ranking-info p {
    margin: 0 0 8px;
    color: var(--stone-600);
    line-height: 1.5;
}

.ranking-info div {
    display: flex;
    gap: 10px;
    color: var(--stone-500);
    font-size: 13px;
}

.ranking-action {
    padding: 10px 16px;
    color: var(--white);
    background: var(--green-600);
}

.site-footer {
    margin-top: 36px;
    background: var(--stone-900);
    color: var(--stone-300);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 46px 24px;
    display: grid;
    gap: 24px;
}

.footer-logo {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
}

.footer-brand p {
    max-width: 680px;
    color: var(--stone-300);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

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

.copyright {
    padding-top: 22px;
    border-top: 1px solid var(--stone-700);
    color: var(--stone-500);
}

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

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

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

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

    .menu-toggle {
        display: flex;
    }

    .hero {
        height: 76vh;
    }

    .hero-arrow {
        display: none;
    }

    .content-section {
        padding: 44px 18px;
    }

    .green-panel {
        padding: 28px 18px;
        border-radius: 22px;
    }

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

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

    .detail-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 42px;
    }

    .detail-poster {
        max-width: 300px;
    }

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

    .ranking-row {
        grid-template-columns: 42px 86px 1fr;
    }

    .ranking-action {
        display: none;
    }
}

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

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text em {
        display: none;
    }

    .hero-content {
        padding: 0 18px;
    }

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

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

    .hero-actions,
    .intro-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-btn,
    .ghost-btn,
    .intro-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

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

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

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

    .category-card-body {
        padding: 22px;
    }

    .detail-info h1 {
        font-size: 38px;
    }

    .detail-one-line {
        font-size: 16px;
    }

    .ranking-row {
        grid-template-columns: 34px 1fr;
    }

    .ranking-cover {
        display: none;
    }
}
