:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --pink-500: #ec4899;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --yellow-400: #facc15;
    --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;
    --shadow-soft: 0 18px 45px rgba(225, 29, 72, 0.12);
    --shadow-card: 0 12px 30px rgba(17, 24, 39, 0.10);
    --shadow-card-hover: 0 22px 55px rgba(17, 24, 39, 0.16);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--gray-800);
    background: linear-gradient(180deg, var(--rose-50) 0%, #ffffff 42%, #fff7ed 100%);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 241, 242, 0.94), rgba(253, 242, 248, 0.94), rgba(255, 247, 237, 0.94));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(251, 113, 133, 0.18);
    box-shadow: 0 10px 30px rgba(244, 63, 94, 0.10);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 72px;
}

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

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--pink-500), var(--orange-500));
    box-shadow: 0 12px 25px rgba(244, 63, 94, 0.26);
    font-size: 14px;
    padding-left: 2px;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--rose-500), var(--pink-500), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

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

.nav-link,
.mobile-link {
    font-weight: 700;
    color: var(--gray-700);
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--rose-500);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
}

.header-search input,
.mobile-search input,
.tool-search input,
.tool-selects select {
    border: 1px solid rgba(251, 113, 133, 0.32);
    background: rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    outline: none;
    color: var(--gray-800);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
    width: 190px;
    padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.tool-search input:focus,
.tool-selects select:focus {
    border-color: var(--rose-500);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
    background: var(--white);
}

.header-search button,
.mobile-search button,
.primary-btn,
.ghost-btn {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.mobile-search button,
.primary-btn {
    color: var(--white);
    background: linear-gradient(90deg, var(--rose-500), var(--pink-500), var(--orange-500));
    box-shadow: 0 12px 24px rgba(244, 63, 94, 0.24);
}

.ghost-btn {
    color: var(--rose-600);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(244, 63, 94, 0.20);
}

.primary-btn:hover,
.ghost-btn:hover,
.header-search button:hover,
.mobile-search button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(244, 63, 94, 0.28);
}

.primary-btn.full {
    display: block;
    text-align: center;
    width: 100%;
}

.ghost-btn.small {
    padding: 8px 14px;
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.80);
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--gray-700);
    border-radius: 99px;
}

.mobile-panel {
    display: none;
    padding: 14px 24px 22px;
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid var(--rose-100);
}

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

.mobile-link {
    display: block;
    padding: 10px 0;
}

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

.mobile-search input {
    min-width: 0;
    flex: 1;
    padding: 10px 14px;
}

.hero-section,
.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #ffe4e6, #fce7f3, #ffedd5);
}

.hero-section {
    padding: 72px 0 84px;
}

.page-hero {
    padding: 56px 0;
}

.hero-orb {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(50px);
    opacity: 0.32;
    pointer-events: none;
    animation: softPulse 5s ease-in-out infinite;
}

.hero-orb-left {
    top: -90px;
    left: -70px;
    background: #fb7185;
}

.hero-orb-right {
    right: -90px;
    bottom: -120px;
    background: #fdba74;
    animation-delay: 1.2s;
}

@keyframes softPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: 42px;
}

.hero-copy {
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rose-600);
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 7vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.07em;
}

.hero-copy h1 span,
.page-hero h1 {
    background: linear-gradient(90deg, var(--rose-600), var(--pink-500), var(--orange-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy p,
.page-hero p {
    margin: 0;
    max-width: 660px;
    color: var(--gray-600);
    font-size: 19px;
}

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

.hero-chips a {
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--rose-600);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(244, 63, 94, 0.16);
    font-weight: 700;
}

.hero-slider {
    position: relative;
    min-height: 420px;
}

.hero-track {
    position: relative;
    height: 420px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(28px) scale(0.98);
    transition: opacity 0.55s ease, transform 0.55s ease;
    pointer-events: none;
}

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

.hero-card {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.25);
    transform: translateZ(0);
}

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

.hero-card:hover img {
    transform: scale(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.28) 35%, rgba(17, 24, 39, 0.82));
}

.hero-play,
.big-play,
.card-play {
    display: inline-grid;
    place-items: center;
    color: var(--rose-500);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.20);
}

.hero-play {
    position: absolute;
    left: 50%;
    top: 47%;
    width: 76px;
    height: 76px;
    transform: translate(-50%, -50%);
    font-size: 28px;
    padding-left: 4px;
}

.hero-info {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    color: var(--white);
}

.hero-info em,
.hero-info small {
    display: block;
    font-style: normal;
    color: rgba(255, 255, 255, 0.82);
}

.hero-info strong {
    display: block;
    margin: 7px 0;
    font-size: 28px;
    line-height: 1.15;
}

.hero-info small {
    font-size: 15px;
}

.hero-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.26);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 30px;
    background: linear-gradient(90deg, var(--rose-500), var(--orange-500));
}

.content-section {
    padding: 54px 0;
}

.band-section {
    padding: 54px 0;
    background: linear-gradient(90deg, var(--rose-50), #fff7ed);
}

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

.section-heading div:first-child {
    display: block;
}

.section-heading span {
    display: inline-block;
    margin-right: 8px;
    font-size: 26px;
}

.section-heading h2 {
    display: inline;
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
    color: var(--gray-800);
}

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

.section-link {
    color: var(--rose-600);
    font-weight: 800;
    white-space: nowrap;
}

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

.movie-card,
.category-tile,
.category-overview-card,
.detail-card,
.poster-card,
.side-card,
.list-tools {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(251, 113, 133, 0.15);
    box-shadow: var(--shadow-card);
}

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover,
.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-card-hover);
}

.card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose-100), #ffedd5);
}

.poster-media {
    aspect-ratio: 3 / 4;
}

.card-media img,
.compact-card img,
.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.movie-card:hover .card-media img,
.compact-card:hover img {
    transform: scale(1.08);
}

.card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(17, 24, 39, 0.60));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .card-media::after {
    opacity: 1;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(90deg, var(--rose-500), var(--pink-500));
    font-size: 13px;
    font-weight: 800;
}

.card-play {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .card-play {
    opacity: 1;
    transform: translateY(0);
}

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 17px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
    color: var(--gray-800);
    transition: color 0.2s ease;
}

.movie-card:hover h3,
.rank-item:hover strong {
    color: var(--rose-500);
}

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

.mini-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--gray-500);
    font-size: 13px;
}

.mini-meta span,
.detail-meta span,
.tag-row span {
    border-radius: 999px;
    padding: 4px 9px;
    background: var(--gray-100);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
    color: var(--rose-600);
    font-size: 12px;
    font-weight: 700;
}

.tag-row span {
    background: var(--rose-50);
}

.poster-row,
.mini-poster-row {
    display: grid;
    gap: 16px;
}

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

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

.compact-card {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--rose-100), #ffedd5);
    box-shadow: var(--shadow-card);
}

.compact-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(17, 24, 39, 0.78));
}

.compact-card span {
    position: absolute;
    z-index: 2;
    left: 12px;
    right: 12px;
    bottom: 12px;
    color: var(--white);
    font-weight: 800;
    line-height: 1.25;
}

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

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

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

.category-tile,
.category-overview-card {
    border-radius: var(--radius-md);
    padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), var(--rose-50));
}

.tile-icon,
.category-overview-head span {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-500), var(--orange-500));
}

.category-tile strong,
.category-overview-head strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-800);
    font-size: 20px;
}

.category-tile em,
.category-overview-head em {
    display: block;
    color: var(--gray-600);
    font-style: normal;
}

.category-overview-head {
    display: block;
    margin-bottom: 18px;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
    gap: 32px;
}

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

.rank-list-large {
    gap: 14px;
}

.rank-item {
    display: grid;
    grid-template-columns: 42px 96px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
    background: var(--rose-50);
    transform: translateX(4px);
}

.rank-index {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
    font-weight: 900;
}

.rank-item img {
    width: 96px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
}

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

.rank-text strong {
    color: var(--gray-800);
    font-size: 16px;
}

.rank-text em {
    color: var(--gray-500);
    font-size: 13px;
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-score {
    color: var(--gray-600);
    font-weight: 800;
    white-space: nowrap;
}

.list-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    margin-bottom: 28px;
    border-radius: var(--radius-md);
}

.tool-search {
    flex: 1;
}

.tool-search input {
    width: 100%;
    padding: 14px 18px;
}

.tool-selects {
    display: flex;
    gap: 12px;
}

.tool-selects select {
    padding: 13px 18px;
}

.empty-state {
    display: none;
    margin-top: 24px;
    padding: 28px;
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--gray-600);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--gray-200);
}

.empty-state.is-visible {
    display: block;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: var(--gray-600);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--rose-600);
    font-weight: 800;
}

.detail-main {
    padding: 34px 0 0;
}

.detail-wrap {
    padding-top: 18px;
}

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

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 24px;
    background: #050505;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.28);
}

.movie-player {
    width: 100%;
    height: 100%;
    background: #050505;
}

.player-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    overflow: hidden;
    color: var(--white);
    background: #050505;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

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

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

.player-dim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.78));
}

.big-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 88px;
    height: 88px;
    transform: translate(-50%, -50%);
    color: var(--rose-500);
    font-size: 32px;
    padding-left: 5px;
}

.cover-title {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    text-align: left;
    font-size: 24px;
    font-weight: 900;
}

.detail-card,
.poster-card,
.side-card {
    border-radius: var(--radius-md);
    padding: 24px;
}

.detail-card {
    margin-top: 22px;
}

.detail-head {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
}

.detail-card h1 {
    margin: 0;
    color: var(--gray-900);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.18;
}

.detail-meta {
    margin: 18px 0 8px;
}

.detail-tags {
    margin-bottom: 18px;
}

.lead-text {
    color: var(--gray-700);
    font-size: 18px;
    font-weight: 700;
}

.detail-card h2,
.side-card h2,
.poster-card h2 {
    margin: 24px 0 10px;
    color: var(--gray-900);
    font-size: 22px;
}

.detail-card p,
.poster-card p {
    margin: 0 0 14px;
    color: var(--gray-600);
}

.related-section {
    padding-top: 28px;
}

.watch-side {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 20px;
}

.poster-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--rose-100), #ffedd5);
}

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

.side-rank .rank-score {
    display: none;
}

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

.site-footer {
    margin-top: 70px;
    padding: 50px 0 24px;
    background: linear-gradient(180deg, #ffffff, var(--gray-100));
    border-top: 1px solid var(--gray-200);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-brand {
    margin-bottom: 12px;
}

.site-footer p {
    color: var(--gray-600);
    margin: 0;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--gray-800);
}

.site-footer a,
.site-footer span {
    display: block;
    margin: 7px 0;
    color: var(--gray-600);
}

.site-footer a:hover {
    color: var(--rose-500);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 36px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-500);
    font-size: 14px;
    text-align: center;
}

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

    .hero-layout,
    .watch-layout,
    .two-column-section {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-chips {
        justify-content: center;
    }

    .watch-side {
        position: static;
    }
}

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

    .mobile-toggle {
        display: block;
        margin-left: auto;
    }

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

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

    .list-tools {
        flex-direction: column;
        align-items: stretch;
    }

    .tool-selects {
        flex-wrap: wrap;
    }

    .tool-selects select {
        flex: 1;
        min-width: 160px;
    }

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

    .rank-score {
        display: none;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

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

    .hero-section {
        padding: 46px 0 60px;
    }

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

    .hero-info {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .hero-info strong {
        font-size: 22px;
    }

    .hero-play,
    .big-play {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .movie-grid,
    .category-grid,
    .poster-row,
    .mini-poster-row,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

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

    .section-heading h2 {
        font-size: 26px;
    }

    .detail-head {
        flex-direction: column;
    }

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

    .card-body p {
        min-height: auto;
    }
}
