* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #111827;
    background: linear-gradient(180deg, #fff7ed 0%, #fff 26%, #f8fafc 100%);
}

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;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(251, 146, 60, 0.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

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

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

.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #fb923c, #f43f5e);
    box-shadow: 0 12px 26px rgba(244, 63, 94, 0.28);
}

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

.nav-link {
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    color: #4b5563;
    transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ea580c;
    background: #ffedd5;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #ffedd5;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: #ea580c;
}

.site-menu {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.mobile-category-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.mobile-category-link {
    padding: 8px 10px;
    border-radius: 999px;
    background: #fff7ed;
    color: #9a3412;
    font-size: 13px;
    font-weight: 700;
}

.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #0f172a;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 20%, rgba(251, 146, 60, 0.46), transparent 34%),
        radial-gradient(circle at 84% 18%, rgba(244, 63, 94, 0.42), transparent 32%),
        linear-gradient(135deg, #111827 0%, #7c2d12 48%, #fb923c 100%);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0.82));
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    min-height: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 76px 0 120px;
}

.hero-slides {
    position: relative;
    min-height: 540px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.74fr);
    align-items: center;
    gap: 56px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-text {
    color: #fff;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    color: #ea580c;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-text .eyebrow,
.detail-copy .section-kicker,
.sub-hero .section-kicker {
    color: #fed7aa;
}

.hero-text h1,
.sub-hero h1,
.detail-copy h1 {
    margin: 0 0 20px;
    font-size: clamp(38px, 7vw, 74px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-text p,
.sub-hero p,
.detail-copy p {
    margin: 0 0 26px;
    max-width: 720px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.hero-tags,
.detail-tags,
.movie-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-size: 12px;
    font-weight: 800;
}

.hero-tags .tag-chip,
.detail-tags .tag-chip {
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #fb923c, #f43f5e);
    box-shadow: 0 18px 34px rgba(244, 63, 94, 0.28);
}

.btn-primary:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.btn-ghost.light {
    color: #fff;
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 34px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-height: 560px;
    transform: rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.hero-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 44%, rgba(15, 23, 42, 0.46));
}

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

.hero-poster:hover img {
    transform: scale(1.04);
}

.hero-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 32px;
    line-height: 1;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    transition: 0.25s ease;
}

.hero-dot.active {
    width: 28px;
    background: #fff;
}

.section {
    padding: 72px 0;
}

.section-overlap {
    position: relative;
    z-index: 2;
    margin-top: -62px;
    padding: 0;
}

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

.compact-head {
    margin-bottom: 18px;
}

.section-head h2,
.spotlight-box h2,
.player-card h2,
.content-card h2,
.side-card h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 40px);
    letter-spacing: -0.04em;
}

.text-link {
    color: #ea580c;
    font-weight: 900;
}

.search-panel {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
    backdrop-filter: blur(18px);
}

.search-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 900;
    color: #9a3412;
}

.search-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.search-line input {
    width: 100%;
    min-height: 50px;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    padding: 0 18px;
    outline: none;
    background: #fff7ed;
}

.search-line input:focus {
    border-color: #fb923c;
    box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.15);
}

.search-line button {
    min-height: 50px;
    padding: 0 18px;
    border: 0;
    border-radius: 16px;
    color: #fff;
    background: #ea580c;
    font-weight: 900;
    cursor: pointer;
}

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

.category-card,
.category-large-card {
    display: block;
    min-height: 148px;
    padding: 22px;
    border-radius: 24px;
    color: #111827;
    background: linear-gradient(135deg, #fff, #fff7ed);
    border: 1px solid rgba(251, 146, 60, 0.16);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    transition: 0.2s ease;
}

.category-card:hover,
.category-large-card:hover,
.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.13);
}

.category-card span,
.category-large-card h2 {
    display: block;
    margin-bottom: 10px;
    color: #ea580c;
    font-weight: 900;
}

.category-card strong,
.category-large-card p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.65;
}

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

.category-large-card {
    min-height: 210px;
}

.category-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #fb923c, #f43f5e);
    font-weight: 900;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.hot-section,
.soft-section {
    background: linear-gradient(180deg, #fff7ed, #fff);
}

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

.rank-item {
    display: grid;
    grid-template-columns: 42px 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
    transition: 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
}

.rank-item img {
    width: 64px;
    height: 86px;
    object-fit: cover;
    border-radius: 14px;
    background: #fed7aa;
}

.rank-num {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #fb923c, #f43f5e);
    font-size: 13px;
    font-weight: 900;
}

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

.rank-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
}

.rank-copy em {
    margin-top: 5px;
    color: #6b7280;
    font-size: 12px;
    font-style: normal;
}

.rank-score {
    color: #ea580c;
    font-weight: 900;
}

.spotlight-box {
    position: sticky;
    top: 96px;
    padding: 30px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.22), transparent 28%),
        linear-gradient(135deg, #9a3412, #f97316 55%, #f43f5e);
    box-shadow: 0 28px 70px rgba(234, 88, 12, 0.22);
}

.spotlight-box .section-kicker {
    color: #ffedd5;
}

.spotlight-box p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

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

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    transition: 0.2s ease;
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
}

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

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

.play-corner {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: rgba(249, 115, 22, 0.92);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #f97316, #e11d48);
    font-size: 13px;
    font-weight: 900;
}

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

.movie-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 42px;
    color: #111827;
    font-size: 16px;
    line-height: 1.32;
    font-weight: 900;
}

.movie-title:hover {
    color: #ea580c;
}

.movie-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 42px;
    margin: 8px 0 12px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.movie-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    color: #9a3412;
    background: #fff7ed;
    font-size: 12px;
    font-weight: 800;
}

.no-result {
    margin: 28px 0 0;
    padding: 28px;
    border-radius: 22px;
    color: #9a3412;
    background: #fff7ed;
    text-align: center;
    font-weight: 900;
}

.sub-hero {
    position: relative;
    padding: 96px 0 84px;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 30%, rgba(251, 146, 60, 0.48), transparent 32%),
        linear-gradient(135deg, #111827, #7c2d12 60%, #f97316);
}

.sub-hero p {
    max-width: 800px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.86);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 22px;
    color: #9ca3af;
    font-size: 14px;
}

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

.breadcrumb.light {
    color: rgba(255, 255, 255, 0.72);
}

.breadcrumb.light a:hover {
    color: #ffedd5;
}

.pill-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.pill-link {
    padding: 9px 14px;
    border-radius: 999px;
    background: #fff;
    color: #6b7280;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.pill-link:hover,
.pill-link.active {
    color: #fff;
    background: linear-gradient(135deg, #fb923c, #f43f5e);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    color: #fff;
    background: #111827;
}

.detail-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(16px) saturate(1.2);
    transform: scale(1.08);
    opacity: 0.45;
}

.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 84% 24%, rgba(251, 146, 60, 0.28), transparent 30%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.72));
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    padding: 76px 0 92px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-cover-wrap {
    padding: 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.detail-cover {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 24px;
    background: #fed7aa;
}

.detail-main {
    padding-top: 48px;
}

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

.player-card,
.content-card,
.side-card {
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.player-card,
.content-card {
    padding: 24px;
    margin-bottom: 24px;
}

.side-card {
    padding: 22px;
    margin-bottom: 18px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    margin-top: 18px;
    border-radius: 24px;
    background: #000;
    aspect-ratio: 16 / 9;
}

.movie-player {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.74));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #fb923c, #f43f5e);
    box-shadow: 0 18px 38px rgba(244, 63, 94, 0.35);
    font-size: 30px;
}

.play-overlay strong {
    max-width: min(90%, 620px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 22px;
}

.play-overlay em {
    color: #fed7aa;
    font-style: normal;
    font-weight: 900;
}

.content-card p {
    margin: 16px 0 0;
    color: #374151;
    font-size: 16px;
    line-height: 1.95;
    white-space: pre-line;
}

.review-card {
    background: linear-gradient(135deg, #fff, #fff7ed);
}

.detail-side {
    position: sticky;
    top: 96px;
}

.info-list {
    margin: 16px 0 0;
}

.info-list div {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.info-list dt {
    color: #9ca3af;
    font-weight: 800;
}

.info-list dd {
    margin: 0;
    color: #111827;
    font-weight: 800;
}

.side-tags .tag-chip {
    color: #9a3412;
    background: #ffedd5;
}

.site-footer {
    padding: 50px 0;
    background: #111827;
    color: #e5e7eb;
}

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

.footer-logo {
    color: #fff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-weight: 800;
}

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

.footer-inner p {
    margin: 0;
    color: #9ca3af;
}

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

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

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

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

    .nav-toggle {
        display: inline-flex;
    }

    .site-menu.open {
        display: block;
    }

    .site-menu .nav-link {
        display: block;
        margin-bottom: 6px;
    }

    .hero,
    .hero-inner {
        min-height: 820px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .hero-poster {
        max-width: 280px;
        justify-self: center;
        transform: none;
    }

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

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

    .detail-side,
    .spotlight-box {
        position: static;
    }

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

@media (max-width: 720px) {
    .site-header-inner {
        min-height: 64px;
    }

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

    .logo-mark {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .hero,
    .hero-inner {
        min-height: 760px;
    }

    .hero-inner {
        padding-top: 48px;
    }

    .hero-slides {
        min-height: 610px;
    }

    .hero-text p,
    .sub-hero p,
    .detail-copy p {
        font-size: 15px;
    }

    .section {
        padding: 48px 0;
    }

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

    .search-line {
        grid-template-columns: 1fr;
    }

    .category-grid,
    .movie-grid,
    .category-movie-grid,
    .top-rank-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .movie-title {
        font-size: 14px;
    }

    .movie-desc {
        font-size: 12px;
    }

    .rank-item {
        grid-template-columns: 32px 54px minmax(0, 1fr);
    }

    .rank-score {
        display: none;
    }

    .rank-item img {
        width: 54px;
        height: 72px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .sub-hero,
    .detail-hero-inner {
        padding: 56px 0;
    }

    .player-card,
    .content-card,
    .side-card {
        padding: 18px;
        border-radius: 22px;
    }

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

@media (max-width: 460px) {
    .category-grid,
    .movie-grid,
    .category-movie-grid,
    .top-rank-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
}
