:root {
    --bg: #f8fafc;
    --card: #ffffff;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --brand: #10b981;
    --brand-dark: #059669;
    --brand-soft: rgba(16, 185, 129, 0.14);
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

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(226, 232, 240, 0.9);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), #22d3ee);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.35);
    font-size: 15px;
}

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

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #334155;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.nav-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    width: min(360px, 34vw);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.nav-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 10px 14px 10px 18px;
    background: transparent;
}

.nav-search button,
.hero-search button {
    border: 0;
    color: #ffffff;
    background: var(--brand);
    font-weight: 800;
    padding: 10px 18px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-search button:hover,
.hero-search button:hover {
    background: var(--brand-dark);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--ink);
}

.mobile-panel {
    display: none;
}

.hero-slider {
    position: relative;
    height: 76vh;
    min-height: 560px;
    overflow: hidden;
    color: #ffffff;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.9s ease, transform 1.1s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    filter: blur(30px) saturate(1.2);
    transform: scale(1.12);
    opacity: 0.48;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 30%, rgba(16, 185, 129, 0.24), transparent 28%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.68) 45%, rgba(2, 6, 23, 0.18) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.9));
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 140px 24px 0;
}

.hero-kicker,
.detail-kicker,
.page-hero span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #a7f3d0;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(167, 243, 208, 0.18);
    font-weight: 800;
}

.hero-content h1 {
    max-width: 760px;
    margin: 24px 0 18px;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.95;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.hero-content p {
    max-width: 670px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.8;
}

.hero-tags,
.tag-row,
.detail-meta,
.movie-meta-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-meta span,
.movie-meta-line span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.primary-action,
.ghost-action,
.ranking-action,
.category-overview-head > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-action {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand), #22c55e);
    padding: 13px 24px;
    box-shadow: 0 18px 36px rgba(16, 185, 129, 0.34);
}

.primary-action:hover,
.ranking-action:hover,
.category-overview-head > a:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.28);
}

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

.hero-control-wrap {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 34px;
    width: min(1280px, calc(100% - 48px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

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

.hero-dot.is-active {
    width: 72px;
    background: var(--brand);
}

.hero-search {
    width: min(520px, 46vw);
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

.hero-search input {
    width: 100%;
    min-width: 0;
    padding: 14px 20px;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.quick-links {
    max-width: 1280px;
    margin: -24px auto 0;
    position: relative;
    z-index: 8;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-links a {
    color: #0f766e;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

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

.no-top-space {
    padding-top: 28px;
}

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

.section-heading h2,
.page-hero h1,
.detail-info h1,
.detail-content h2,
.ranking-body h2,
.category-overview-head h2 {
    margin: 0;
    color: var(--ink);
    font-weight: 950;
    letter-spacing: -0.04em;
}

.section-heading h2 {
    font-size: clamp(28px, 3vw, 42px);
}

.section-heading p,
.page-hero p,
.category-overview-head p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-heading > a {
    color: var(--brand-dark);
    font-weight: 900;
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.28);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #0f172a;
}

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

.movie-card:hover .poster-link img,
.category-tile:hover img,
.ranking-item:hover img {
    transform: scale(1.06);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(2, 6, 23, 0.72));
    opacity: 0.7;
}

.poster-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--brand);
    box-shadow: 0 14px 28px rgba(16, 185, 129, 0.35);
}

.card-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(239, 68, 68, 0.9);
    font-size: 12px;
    font-weight: 950;
}

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

.movie-meta-line span {
    color: #047857;
    background: rgba(16, 185, 129, 0.1);
}

.movie-card h3 {
    margin: 12px 0 8px;
    font-size: 18px;
    line-height: 1.28;
    font-weight: 900;
}

.movie-card p {
    min-height: 44px;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.tag-row span {
    color: #475569;
    background: #f1f5f9;
}

.is-compact .movie-card-body {
    padding: 13px;
}

.is-compact h3 {
    font-size: 16px;
}

.is-compact p {
    display: none;
}

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

.category-tile {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: 24px;
    color: #ffffff;
    background: #020617;
    box-shadow: var(--shadow);
}

.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0.74;
    transition: transform 0.35s ease;
}

.category-glow {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.86)),
        radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.3), transparent 32%);
}

.category-tile strong,
.category-tile em {
    position: absolute;
    left: 20px;
    right: 20px;
}

.category-tile strong {
    bottom: 68px;
    font-size: 25px;
    font-weight: 950;
}

.category-tile em {
    bottom: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
    line-height: 1.5;
    font-size: 14px;
}

.page-main {
    padding-bottom: 48px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 70px;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 20%, rgba(34, 211, 238, 0.32), transparent 32%),
        linear-gradient(135deg, #020617, #064e3b);
    box-shadow: var(--shadow);
}

.page-hero h1 {
    margin-top: 18px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 64px);
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.slim-hero,
.category-hero,
.ranking-hero {
    min-height: 260px;
    display: flex;
    align-items: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

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

.filter-panel {
    margin: 24px 0 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.filter-search {
    display: grid;
    gap: 10px;
}

.filter-search span {
    color: #334155;
    font-weight: 900;
}

.filter-input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    outline: 0;
    padding: 14px 16px;
    background: #f8fafc;
}

.filter-input:focus {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 14px;
}

.filter-chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #334155;
    background: #ffffff;
    padding: 8px 14px;
    font-weight: 900;
    cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
    color: #ffffff;
    border-color: var(--brand);
    background: var(--brand);
}

.empty-state {
    margin-top: 16px;
    padding: 22px;
    color: var(--muted);
    text-align: center;
    border-radius: 18px;
    background: #f8fafc;
    font-weight: 800;
}

.category-overview-list {
    display: grid;
    gap: 28px;
    margin-top: 28px;
}

.category-overview-card {
    padding: 24px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.category-overview-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 20px;
}

.category-overview-head h2 {
    font-size: 30px;
}

.category-overview-head > a,
.ranking-action {
    color: #ffffff;
    background: var(--brand);
    padding: 11px 18px;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 92px 76px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.ranking-cover {
    aspect-ratio: 2 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
}

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

.ranking-number {
    color: #94a3b8;
    font-size: 30px;
    font-weight: 950;
    text-align: center;
}

.ranking-body h2 {
    font-size: 22px;
}

.ranking-body p {
    margin: 9px 0 12px;
    color: var(--muted);
    line-height: 1.7;
}

.detail-main {
    padding-bottom: 60px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
    padding: 34px;
    border-radius: 34px;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 12%, rgba(16, 185, 129, 0.28), transparent 30%),
        linear-gradient(135deg, #020617, #0f172a 58%, #064e3b);
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.35);
}

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

.detail-info h1 {
    margin-top: 20px;
    color: #ffffff;
    font-size: clamp(34px, 6vw, 70px);
    line-height: 1.02;
}

.detail-one-line {
    max-width: 780px;
    margin: 18px 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.8;
}

.detail-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-tags {
    margin-top: 16px;
}

.detail-tags span {
    color: #d1fae5;
    background: rgba(16, 185, 129, 0.16);
}

.detail-play-anchor {
    margin-top: 28px;
}

.player-section,
.detail-content,
.detail-nav-links {
    margin-top: 38px;
}

.single-heading {
    margin-bottom: 18px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.72));
}

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

.player-play-icon {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--brand);
    font-size: 32px;
    box-shadow: 0 24px 50px rgba(16, 185, 129, 0.38);
}

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

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.detail-content article {
    padding: 26px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.detail-content h2 {
    font-size: 26px;
}

.detail-content p {
    margin: 14px 0 0;
    color: #475569;
    line-height: 1.9;
}

.detail-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.detail-nav-links a {
    padding: 18px 20px;
    border-radius: 20px;
    color: #047857;
    background: #ffffff;
    border: 1px solid var(--line);
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.site-footer {
    margin-top: 72px;
    color: #cbd5e1;
    background: #020617;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 42px 24px;
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.footer-logo {
    color: #ffffff;
}

.footer-inner p {
    max-width: 560px;
    color: #94a3b8;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: flex-start;
    justify-content: flex-end;
}

.footer-links a {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-copy {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 30px;
    color: #64748b;
}

[hidden] {
    display: none !important;
}

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

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

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

    .detail-hero {
        grid-template-columns: 260px minmax(0, 1fr);
    }
}

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

    .menu-toggle {
        display: block;
    }

    .mobile-panel {
        padding: 0 24px 18px;
        border-top: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.97);
    }

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

    .mobile-logo {
        padding: 18px 0 10px;
        font-weight: 950;
        color: var(--ink);
    }

    .mobile-links,
    .mobile-cats {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .mobile-cats {
        margin-top: 10px;
    }

    .mobile-links a,
    .mobile-cats a {
        padding: 9px 12px;
        border-radius: 999px;
        background: #f1f5f9;
        color: #334155;
        font-weight: 800;
    }

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

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

    .hero-control-wrap {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-search {
        width: 100%;
    }

    .page-hero {
        padding: 42px 28px;
        border-radius: 28px;
    }

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

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

    .detail-poster {
        width: min(320px, 100%);
    }

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

    .ranking-item {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .ranking-number {
        grid-column: 1;
        grid-row: 1 / span 2;
        font-size: 22px;
    }

    .ranking-cover {
        grid-column: 1;
        grid-row: 1;
        display: none;
    }

    .ranking-action {
        grid-column: 2;
        justify-self: start;
    }

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .nav-wrap,
    .content-section,
    .page-main,
    .detail-main {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-control-wrap {
        width: calc(100% - 32px);
    }

    .quick-links {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .section-heading,
    .category-overview-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-search {
        border-radius: 22px;
        flex-direction: column;
    }

    .hero-search button {
        width: 100%;
        border-radius: 0;
    }

    .player-play-icon {
        width: 72px;
        height: 72px;
        font-size: 24px;
    }
}
