:root {
    --accent: #ef4444;
    --accent-strong: #dc2626;
    --accent-soft: #fff1f2;
    --orange: #f97316;
    --gold: #fbbf24;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --paper: #ffffff;
    --soft: #f9fafb;
    --dark: #111827;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 28%, #f9fafb 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(229, 231, 235, 0.88);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-mark,
.footer-brand span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--orange));
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.25);
    transition: transform 0.24s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-3deg);
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--accent-strong), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-text small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #374151;
    font-weight: 700;
}

.desktop-nav a,
.nav-more {
    position: relative;
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.nav-more:hover {
    color: var(--accent-strong);
}

.desktop-nav a::after,
.nav-more::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--accent), var(--orange));
    border-radius: 99px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after,
.nav-more:hover::after {
    transform: scaleX(1);
}

.nav-more-panel {
    position: absolute;
    top: 42px;
    left: 50%;
    display: grid;
    width: 188px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-more-panel a {
    padding: 8px 10px;
    border-radius: 12px;
}

.nav-more-panel a:hover {
    background: var(--accent-soft);
}

.nav-more:hover .nav-more-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.header-search input {
    width: 210px;
    border: 0;
    outline: 0;
    padding: 8px 8px 8px 14px;
    background: transparent;
}

.header-search button,
.filter-box button,
.hero-button,
.ranking-action,
.player-action {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--orange));
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button {
    padding: 8px 16px;
    font-weight: 800;
}

.header-search button:hover,
.filter-box button:hover,
.hero-button:hover,
.ranking-action:hover,
.player-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(239, 68, 68, 0.28);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-nav a {
    padding: 10px 14px;
    font-weight: 700;
    border-radius: 14px;
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
    color: var(--accent-strong);
    background: var(--accent-soft);
}

.mobile-nav form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.mobile-nav input {
    min-width: 0;
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.mobile-nav button {
    padding: 10px 14px;
    color: #ffffff;
    background: var(--accent);
    border: 0;
    border-radius: 14px;
}

.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: radial-gradient(circle at 12% 20%, rgba(254, 240, 138, 0.28), transparent 26%), linear-gradient(135deg, #ef4444 0%, #f97316 48%, #db2777 100%);
}

.hero::before,
.hero::after {
    position: absolute;
    content: "";
    border-radius: 999px;
    filter: blur(34px);
    pointer-events: none;
}

.hero::before {
    top: 96px;
    left: 8%;
    width: 260px;
    height: 260px;
    background: rgba(250, 204, 21, 0.22);
    animation: glowFloat 8s ease-in-out infinite;
}

.hero::after {
    right: 7%;
    bottom: 90px;
    width: 340px;
    height: 340px;
    background: rgba(244, 63, 94, 0.22);
    animation: glowFloat 9s ease-in-out infinite reverse;
}

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

.hero-slide.is-active {
    opacity: 1;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.24;
    transform: scale(1.03);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(127, 29, 29, 0.88), rgba(127, 29, 29, 0.56) 42%, rgba(17, 24, 39, 0.15));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 42px;
    width: min(1180px, calc(100% - 32px));
    min-height: 650px;
    margin: 0 auto;
    padding: 72px 0;
}

.hero-copy {
    max-width: 720px;
    color: #ffffff;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.hero h1 {
    margin: 0 0 20px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.03;
    letter-spacing: -0.06em;
}

.hero h1 span {
    color: #fff7ad;
}

.hero p {
    max-width: 680px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    font-weight: 900;
}

.hero-button.is-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

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

.hero-tags a,
.tag-row span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
}

.hero-tags a {
    padding: 8px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-panel {
    padding: 18px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(127, 29, 29, 0.25);
    backdrop-filter: blur(16px);
}

.hero-panel img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(17, 24, 39, 0.35);
}

.hero-panel h2 {
    margin: 16px 0 8px;
    color: #ffffff;
    font-size: 24px;
}

.hero-panel p {
    margin: 0;
    font-size: 14px;
}

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

.hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #ffffff;
}

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

.page-hero {
    padding: 64px 0 34px;
}

.page-hero-card {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 52px);
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(254, 240, 138, 0.24), transparent 36%), linear-gradient(135deg, var(--accent), var(--orange));
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.page-hero-card h1 {
    max-width: 780px;
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.page-hero-card p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

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

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

.section-heading .eyebrow {
    margin: 0 0 10px;
    color: var(--accent-strong);
    background: var(--accent-soft);
    border-color: rgba(239, 68, 68, 0.12);
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--accent-strong);
    font-weight: 900;
}

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

.movie-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.92);
    border-radius: var(--radius);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    border-color: rgba(239, 68, 68, 0.28);
    box-shadow: 0 22px 48px rgba(239, 68, 68, 0.13);
    transform: translateY(-6px);
}

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #fee2e2, #ffedd5);
}

.poster-wrap img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.32s ease;
}

.movie-card:hover .poster-wrap img {
    transform: scale(1.06);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(17, 24, 39, 0.62));
}

.play-mark {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: rgba(239, 68, 68, 0.92);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.card-body {
    padding: 17px;
}

.card-body h2 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.25;
}

.card-body h2 a:hover,
.ranking-info h2 a:hover,
.category-body h2 a:hover {
    color: var(--accent-strong);
}

.card-body p,
.ranking-info p,
.category-body p,
.detail-copy p,
.detail-text p {
    color: var(--muted);
}

.card-body p {
    min-height: 52px;
    margin: 0 0 12px;
    font-size: 14px;
}

.card-meta {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 700;
}

.tag-row,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tag-row span,
.detail-tags span {
    padding: 5px 9px;
    color: var(--accent-strong);
    background: var(--accent-soft);
    font-size: 12px;
    font-weight: 800;
}

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

.category-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.category-visual {
    position: relative;
    display: grid;
    min-height: 210px;
    place-items: end start;
    padding: 22px;
    color: #ffffff;
    background-position: center;
    background-size: cover;
}

.category-visual span {
    padding: 8px 12px;
    background: rgba(17, 24, 39, 0.42);
    border-radius: 999px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.category-body {
    padding: 26px;
}

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

.category-body p {
    margin: 0 0 18px;
}

.category-sample {
    display: grid;
    gap: 8px;
}

.category-sample a {
    color: #4b5563;
    font-weight: 800;
}

.category-sample a:hover {
    color: var(--accent-strong);
}

.filter-box {
    display: flex;
    gap: 12px;
    margin: 0 0 24px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.filter-box input {
    min-width: 0;
    flex: 1;
    padding: 13px 16px;
    border: 0;
    outline: 0;
    background: transparent;
}

.filter-box button {
    padding: 12px 20px;
    font-weight: 900;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 70px 86px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-item:hover {
    border-color: rgba(239, 68, 68, 0.24);
    transform: translateY(-3px);
}

.ranking-number {
    display: grid;
    place-items: center;
    color: var(--accent-strong);
    font-weight: 1000;
    font-size: 20px;
}

.ranking-cover img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 16px;
}

.ranking-info h2 {
    margin: 0 0 6px;
    font-size: 22px;
}

.ranking-info p {
    margin: 0 0 8px;
}

.ranking-action {
    padding: 10px 16px;
    font-weight: 900;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0 18px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--accent-strong);
    font-weight: 800;
}

.detail-hero {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    margin-bottom: 38px;
}

.detail-poster {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

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

.detail-copy {
    padding: clamp(26px, 4vw, 40px);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.detail-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-copy p {
    margin: 0 0 18px;
    font-size: 18px;
}

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

.detail-meta div {
    padding: 12px 14px;
    background: #f9fafb;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.detail-meta span {
    display: block;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 900;
}

.detail-meta strong {
    display: block;
    margin-top: 2px;
}

.player-section,
.detail-text,
.related-section {
    margin-bottom: 42px;
    padding: clamp(20px, 3vw, 28px);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

.player-section h2,
.detail-text h2,
.related-section h2 {
    margin: 0 0 18px;
    font-size: clamp(26px, 4vw, 36px);
    letter-spacing: -0.04em;
}

.player-box {
    position: relative;
    overflow: hidden;
    background: #000000;
    border-radius: 24px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
}

.player-box video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    cursor: pointer;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    color: #ffffff;
    background-position: center;
    background-size: cover;
    border: 0;
    cursor: pointer;
    isolation: isolate;
}

.player-cover::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.78), rgba(127, 29, 29, 0.62));
}

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

.player-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 22px;
    font-weight: 1000;
}

.player-action span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--accent-strong);
    background: #ffffff;
    border-radius: 999px;
}

.detail-text p {
    margin: 0 0 16px;
    font-size: 17px;
}

.empty-state {
    display: none;
    padding: 32px;
    text-align: center;
    color: var(--muted);
    background: #ffffff;
    border: 1px dashed var(--line);
    border-radius: 24px;
}

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

.site-footer {
    margin-top: 48px;
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 38px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 34px;
}

.footer-brand {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
}

.site-footer p {
    max-width: 460px;
    margin: 14px 0 0;
    color: #d1d5db;
}

.site-footer a:not(.footer-brand) {
    display: block;
    margin: 7px 0;
    color: #d1d5db;
}

.site-footer a:hover {
    color: #ffffff;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 26px;
    color: #9ca3af;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes glowFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(18px, -20px, 0) scale(1.06);
    }
}

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

    .menu-toggle {
        display: block;
    }

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

    .hero-panel {
        max-width: 360px;
    }

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

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

@media (max-width: 760px) {
    .header-inner {
        height: 68px;
    }

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

    .brand-text small {
        display: none;
    }

    .hero,
    .hero-content {
        min-height: auto;
    }

    .hero-content {
        padding: 50px 0 82px;
    }

    .hero-panel {
        display: none;
    }

    .hero-actions,
    .section-heading,
    .filter-box {
        align-items: stretch;
        flex-direction: column;
    }

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

    .card-body {
        padding: 13px;
    }

    .card-body h2 {
        font-size: 16px;
    }

    .card-body p {
        min-height: auto;
        font-size: 13px;
    }

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

    .category-visual {
        min-height: 170px;
    }

    .ranking-number {
        justify-content: start;
    }

    .ranking-cover {
        width: 110px;
    }

    .ranking-action {
        justify-self: start;
    }

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

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

    .brand-mark,
    .footer-brand span {
        width: 38px;
        height: 38px;
    }
}
