:root {
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --cyan: #0891b2;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #f8fafc;
    --white: #ffffff;
    --shadow: 0 20px 55px rgba(15, 23, 42, 0.14);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background: #f3f4f6;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(229, 231, 235, 0.92);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
}

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

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

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    box-shadow: 0 12px 26px rgba(13, 148, 136, 0.26);
    transition: transform 0.25s ease;
}

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

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

.brand-text strong,
.footer-brand strong {
    font-size: 20px;
    color: var(--ink);
}

.brand-text em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-link,
.nav-group > a {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    color: #374151;
    font-size: 15px;
    font-weight: 650;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-group:hover > a,
.nav-link.is-active,
.nav-group > a.is-active {
    color: var(--teal-dark);
    background: #ccfbf1;
}

.nav-group {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 210px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-group:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a,
.mobile-subnav a {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    color: #374151;
    font-size: 14px;
}

.nav-dropdown a:hover,
.mobile-subnav a:hover {
    color: var(--teal-dark);
    background: #ecfdf5;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 10px;
    background: #374151;
}

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

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

.mobile-nav > a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #374151;
    font-weight: 650;
}

.mobile-nav > a:hover {
    background: #f3f4f6;
}

.mobile-subnav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    margin-top: 6px;
    padding-left: 12px;
}

.hero-carousel {
    position: relative;
    height: 68vh;
    min-height: 520px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.85s ease;
}

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

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: max(24px, calc((100vw - 1180px) / 2));
    width: min(650px, calc(100% - 56px));
    transform: translateY(-50%);
    color: #fff;
}

.hero-pill,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.02em;
}

.hero-content h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 580px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(17px, 2.2vw, 22px);
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-button,
.ghost-button,
.section-more,
.rank-watch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-button {
    color: #0f172a;
    background: #fff;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.primary-button:hover {
    color: #fff;
    background: var(--teal);
    transform: translateY(-2px);
}

.primary-button.small {
    min-height: 42px;
    padding: 0 18px;
    color: #fff;
    background: var(--teal);
}

.primary-button.small:hover {
    background: var(--teal-dark);
}

.ghost-button {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.ghost-button:hover {
    color: var(--ink);
    background: #fff;
}

.ghost-button.dark {
    color: var(--teal-dark);
    border-color: #99f6e4;
    background: #ecfdf5;
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
}

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

.hero-control.prev {
    left: 24px;
}

.hero-control.next {
    right: 24px;
}

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

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

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

.featured-panel {
    position: relative;
    z-index: 4;
    margin-top: -70px;
}

.featured-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    padding: 24px;
    border: 1px solid rgba(229, 231, 235, 0.95);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.featured-cover {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 16 / 10;
    background: #111827;
}

.featured-cover img,
.thumb img,
.category-card img,
.detail-poster img,
.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.featured-cover span,
.detail-poster span,
.play-badge {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: rgba(13, 148, 136, 0.92);
}

.featured-cover span {
    inset: auto 18px 18px auto;
    width: 46px;
    height: 46px;
}

.featured-cover:hover img,
.movie-card:hover .thumb img,
.category-card:hover img,
.detail-poster:hover img,
.ranking-row:hover .rank-thumb img {
    transform: scale(1.06);
}

.featured-copy h2,
.section-heading h2,
.page-hero h1,
.detail-copy h1,
.story-card h2 {
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.03em;
}

.featured-copy h2 {
    margin-bottom: 12px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
}

.featured-copy p {
    color: #4b5563;
}

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

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

.section-heading.compact {
    margin-bottom: 18px;
}

.section-heading p {
    margin: 0 0 6px;
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 760;
}

.section-heading h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 850;
}

.section-more {
    min-height: 38px;
    padding: 0 16px;
    color: var(--teal-dark);
    background: #ccfbf1;
}

.section-more:hover {
    color: #fff;
    background: var(--teal);
}

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

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

.catalog-grid {
    align-items: stretch;
}

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.9);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    border-color: #99f6e4;
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.13);
    transform: translateY(-4px);
}

.thumb {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #111827;
}

.play-badge {
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.34);
}

.card-body {
    padding: 16px;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
}

.movie-card h3,
.ranking-row h2 {
    margin: 8px 0 8px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.3;
}

.movie-card h3 a:hover,
.ranking-row h2 a:hover,
.featured-copy h2 a:hover {
    color: var(--teal-dark);
}

.movie-card p,
.ranking-row p {
    margin: 0 0 12px;
    color: #4b5563;
    font-size: 14px;
}

.tag-list,
.detail-meta,
.mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list span,
.detail-meta span,
.mini-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    color: #0f766e;
    background: #ccfbf1;
    font-size: 12px;
    font-weight: 700;
}

.movie-card.horizontal {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
}

.movie-card.horizontal .thumb {
    aspect-ratio: 16 / 10;
    height: 100%;
}

.rank-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.white-block {
    margin: 24px -24px 0;
    padding: 46px 24px;
    border-radius: 28px;
    background: #fff;
}

.category-strip {
    padding: 34px 0;
}

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

.site-footer {
    margin-top: 72px;
    padding: 46px 0 26px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 34px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-brand p {
    max-width: 560px;
    margin: 8px 0 0;
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
}

.footer-links a {
    color: #4b5563;
    font-weight: 650;
}

.footer-links a:hover {
    color: var(--teal-dark);
}

.copyright {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 0;
    color: var(--muted);
    font-size: 13px;
}

.subpage {
    padding-top: 44px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 46px;
    border-radius: 30px;
    color: #fff;
    background: radial-gradient(circle at 20% 20%, rgba(20, 184, 166, 0.34), transparent 32%), linear-gradient(135deg, #0f172a, #0f766e);
    box-shadow: var(--shadow);
}

.page-hero.soft {
    color: var(--ink);
    background: linear-gradient(135deg, #ffffff, #ecfeff);
    border: 1px solid rgba(153, 246, 228, 0.8);
}

.page-hero .eyebrow {
    background: rgba(13, 148, 136, 0.9);
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 14px;
    color: inherit;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    font-weight: 880;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: inherit;
    opacity: 0.86;
    font-size: 18px;
}

.inline-actions {
    margin-top: 24px;
}

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

.category-card {
    min-height: 320px;
    overflow: hidden;
    border-radius: 28px;
    background: #111827;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.category-card a {
    position: relative;
    display: block;
    height: 100%;
    min-height: 320px;
}

.category-card img {
    position: absolute;
    inset: 0;
}

.category-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.86));
}

.category-card div {
    position: absolute;
    inset: auto 22px 24px 22px;
    color: #fff;
}

.category-card h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.category-card p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.82);
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px;
    gap: 14px;
    margin-bottom: 26px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.filter-bar label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #374151;
    font-size: 13px;
    font-weight: 750;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0 13px;
    outline: 0;
    background: #f9fafb;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--teal);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 56px 110px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
}

.rank-number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    font-weight: 880;
}

.rank-thumb {
    display: block;
    overflow: hidden;
    width: 110px;
    height: 74px;
    border-radius: 16px;
    background: #111827;
}

.rank-info h2 {
    margin: 0 0 6px;
    font-size: 20px;
}

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

.rank-watch {
    min-height: 40px;
    color: #fff;
    background: var(--teal);
}

.rank-watch:hover {
    background: var(--teal-dark);
}

.detail-main {
    background: #f3f4f6;
}

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

.detail-backdrop {
    position: absolute;
    inset: 0;
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(2px) saturate(1.05);
}

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.38));
}

.detail-layout {
    position: relative;
    z-index: 2;
    min-height: 560px;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    align-items: center;
    gap: 42px;
    padding: 54px 0;
}

.detail-poster {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    background: #111827;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.detail-poster span {
    left: 50%;
    top: 50%;
    width: 68px;
    height: 68px;
    transform: translate(-50%, -50%);
    font-size: 25px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.breadcrumb a:hover {
    color: #99f6e4;
}

.detail-copy h1 {
    color: #fff;
    font-size: clamp(42px, 6vw, 74px);
    line-height: 1.03;
    font-weight: 900;
}

.detail-copy .lead {
    max-width: 820px;
    margin: 18px 0 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
}

.detail-copy .primary-button {
    margin-top: 26px;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.55));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(13, 148, 136, 0.92);
    box-shadow: 0 18px 42px rgba(13, 148, 136, 0.32);
    font-size: 32px;
}

.player-shell.is-playing .player-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.story-card {
    margin-top: 28px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.story-card h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.story-card h2:not(:first-child) {
    margin-top: 30px;
}

.story-card p {
    margin: 0;
    color: #374151;
    font-size: 17px;
}

.info-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 30px 0 0;
}

.info-list div {
    padding: 14px;
    border-radius: 16px;
    background: #f9fafb;
}

.info-list dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.info-list dd {
    margin: 4px 0 0;
    color: var(--ink);
    font-weight: 760;
}

.related-section {
    padding-bottom: 0;
}

[hidden],
.is-hidden {
    display: none !important;
}

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

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

    .hero-control {
        display: none;
    }

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

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

    .featured-card,
    .detail-layout,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

    .detail-layout {
        padding-top: 34px;
    }

    .detail-poster {
        width: min(310px, 72vw);
    }

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

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

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

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

    .brand-text em {
        display: none;
    }

    .hero-carousel {
        height: 76vh;
        min-height: 520px;
    }

    .hero-content {
        left: 18px;
        width: calc(100% - 36px);
    }

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

    .featured-panel {
        margin-top: -44px;
    }

    .featured-card,
    .page-hero,
    .story-card {
        padding: 22px;
        border-radius: 22px;
    }

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

    .movie-grid,
    .movie-grid.dense,
    .rank-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .movie-card.horizontal {
        grid-template-columns: 130px minmax(0, 1fr);
    }

    .filter-bar {
        grid-template-columns: 1fr;
    }

    .ranking-row {
        grid-template-columns: 44px 88px minmax(0, 1fr);
        gap: 12px;
    }

    .rank-watch {
        grid-column: 3;
        justify-self: start;
    }

    .rank-thumb {
        width: 88px;
        height: 72px;
    }

    .detail-hero,
    .detail-layout {
        min-height: auto;
    }

    .detail-layout {
        gap: 24px;
    }

    .detail-copy .lead {
        font-size: 17px;
    }

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

    .player-shell {
        border-radius: 18px;
    }

    .player-overlay span {
        width: 66px;
        height: 66px;
        font-size: 24px;
    }
}
