:root {
    --primary-50: #fdf8f3;
    --primary-100: #faeee0;
    --primary-400: #e1a06a;
    --primary-600: #cb6f3f;
    --primary-700: #a95636;
    --primary-900: #6e3b2c;
    --accent-50: #fef6ee;
    --accent-500: #ee6820;
    --secondary-50: #f5f5f4;
    --secondary-100: #e7e5e4;
    --secondary-200: #d1ccc9;
    --secondary-300: #b1aaa6;
    --secondary-400: #948c87;
    --secondary-500: #7c746e;
    --secondary-600: #6b645f;
    --secondary-700: #59534f;
    --secondary-800: #4d4845;
    --secondary-900: #433f3d;
    --secondary-950: #2a2725;
    --white: #ffffff;
    --black: #000000;
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.12), 0 2px 4px -2px rgb(0 0 0 / 0.12);
    --shadow-lg: 0 14px 28px -18px rgb(0 0 0 / 0.45);
    --shadow-xl: 0 24px 50px -28px rgb(0 0 0 / 0.5);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-height: 100vh;
    color: var(--secondary-900);
    background: var(--secondary-50);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.5;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: var(--secondary-950);
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.18);
}

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

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    white-space: nowrap;
    transition: opacity 0.25s ease;
}

.brand:hover,
.footer-logo:hover {
    opacity: 0.82;
}

.brand-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-400);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 600;
}

.desktop-nav a,
.mobile-menu a,
.site-footer a {
    transition: color 0.25s ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover,
.site-footer a:hover {
    color: var(--primary-400);
}

.header-search {
    position: relative;
    width: min(260px, 28vw);
}

.header-search input,
.mobile-search input,
.large-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 999px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-search input,
.mobile-search input {
    padding: 10px 42px 10px 16px;
    color: var(--white);
    background: var(--secondary-800);
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: var(--secondary-400);
}

.header-search input:focus,
.mobile-search input:focus,
.large-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--primary-600);
    box-shadow: 0 0 0 3px rgb(203 111 63 / 0.18);
}

.header-search button {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 28px;
    height: 28px;
    padding: 0;
    color: var(--secondary-300);
    border: 0;
    background: transparent;
    transform: translateY(-50%);
}

.header-search button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 10px;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--white);
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--secondary-800);
    background: var(--secondary-950);
}

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

.mobile-menu nav,
.mobile-search {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
}

.mobile-menu nav {
    display: grid;
    gap: 12px;
    padding: 0 0 18px;
}

.mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 18px 0 14px;
}

.mobile-search button,
.large-search button {
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--primary-600);
    font-weight: 700;
}

main {
    min-height: 60vh;
}

.hero-section {
    position: relative;
    height: 70vh;
    min-height: 540px;
    overflow: hidden;
    color: var(--white);
    background: var(--secondary-900);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--secondary-900), rgb(67 63 61 / 0.72), rgb(0 0 0 / 0.15));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: min(100% - 32px, 1280px);
    height: 100%;
    margin: 0 auto;
}

.hero-copy {
    max-width: 780px;
}

.hero-kicker,
.page-hero-inner > span,
.ranking-hero span {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: var(--white);
    background: var(--primary-600);
    font-size: 14px;
    font-weight: 700;
}

.hero-copy h1 {
    margin: 0 0 18px;
    font-family: "Noto Serif SC", Georgia, serif;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-line {
    max-width: 720px;
    margin: 0 0 20px;
    color: var(--secondary-200);
    font-size: clamp(16px, 2vw, 22px);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    color: var(--secondary-200);
}

.hero-meta span {
    padding-right: 12px;
    border-right: 1px solid rgb(255 255 255 / 0.22);
}

.hero-meta span:last-child {
    border-right: 0;
}

.hero-actions,
.section-title-row,
.detail-meta,
.inline-links,
.tag-list,
.card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-actions {
    gap: 14px;
    margin-bottom: 26px;
}

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

.primary-button {
    color: var(--white);
    background: var(--primary-600);
    box-shadow: var(--shadow-lg);
}

.primary-button:hover {
    background: var(--primary-700);
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.ghost-button {
    color: var(--white);
    border: 1px solid rgb(255 255 255 / 0.35);
    background: rgb(0 0 0 / 0.2);
}

.ghost-button:hover {
    background: rgb(255 255 255 / 0.12);
    transform: translateY(-2px);
}

.hero-categories,
.category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-categories a,
.category-strip a,
.tag-list a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.hero-categories a {
    color: var(--secondary-100);
    background: rgb(255 255 255 / 0.12);
    backdrop-filter: blur(10px);
}

.hero-categories a:hover {
    color: var(--white);
    background: rgb(203 111 63 / 0.55);
}

.content-section {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
    padding: 48px 0;
}

.muted-section {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100% - 1280px) / 2));
    padding-right: max(16px, calc((100% - 1280px) / 2));
    background: var(--secondary-100);
}

.section-title-row {
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.section-title-row h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
}

.section-title-row a {
    color: var(--primary-600);
    font-weight: 800;
}

.section-title-row a:hover {
    color: var(--primary-700);
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--secondary-200);
}

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

.movie-card:hover .poster-link img,
.category-preview:hover img,
.category-card:hover img,
.related-card:hover img {
    transform: scale(1.08);
}

.poster-shade {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(to top, rgb(0 0 0 / 0.75), rgb(0 0 0 / 0.18), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.movie-card:hover .poster-shade {
    opacity: 1;
}

.type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 9px;
    border-radius: 6px;
    color: var(--white);
    background: rgb(0 0 0 / 0.72);
    font-size: 12px;
}

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

.movie-card-body h3 {
    margin: 0 0 8px;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-card-body h3 a {
    transition: color 0.25s ease;
}

.movie-card:hover h3 a {
    color: var(--primary-600);
}

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

.compact .movie-card-body p {
    display: none;
}

.card-meta {
    justify-content: space-between;
    gap: 10px;
    color: var(--secondary-500);
    font-size: 12px;
}

.card-meta span:first-child {
    padding: 3px 8px;
    border-radius: 5px;
    color: var(--primary-700);
    background: var(--primary-100);
    font-weight: 700;
}

.category-preview-grid,
.category-card-grid,
.related-grid {
    display: grid;
    gap: 24px;
}

.category-preview-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 22px;
}

.category-preview,
.category-card {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    border-radius: 16px;
    color: var(--white);
    background: var(--secondary-900);
    box-shadow: var(--shadow-md);
}

.category-preview img,
.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
    transition: transform 0.5s ease;
}

.category-preview span,
.category-preview small,
.category-card span,
.category-card p {
    position: relative;
    z-index: 1;
}

.category-preview {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.category-preview::after,
.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(42 39 37 / 0.82), rgb(42 39 37 / 0.18));
}

.category-preview span {
    font-size: 20px;
    font-weight: 900;
}

.category-preview small {
    color: var(--secondary-200);
}

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

.rank-item a {
    display: grid;
    grid-template-columns: 54px 72px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-item a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.rank-number {
    color: var(--primary-600);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

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

.rank-info {
    min-width: 0;
}

.rank-info strong {
    display: block;
    overflow: hidden;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info small {
    display: block;
    margin-top: 6px;
    color: var(--secondary-500);
}

.page-hero,
.ranking-hero {
    color: var(--white);
    background: linear-gradient(to right, var(--secondary-900), var(--secondary-800));
}

.page-hero-inner {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
    padding: 64px 0;
}

.page-hero h1,
.ranking-hero h1 {
    margin: 0 0 14px;
    font-family: "Noto Serif SC", Georgia, serif;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
}

.page-hero p,
.ranking-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--secondary-200);
    font-size: 18px;
}

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

.category-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 260px;
    padding: 22px;
}

.category-card span {
    display: block;
    font-size: 24px;
    font-weight: 900;
}

.category-card p {
    margin: 8px 0 0;
    color: var(--secondary-200);
    font-size: 14px;
}

.filter-panel {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 14px;
    padding: 18px;
    margin-bottom: 26px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--secondary-600);
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    min-height: 44px;
    padding: 0 14px;
    color: var(--secondary-900);
    background: var(--secondary-50);
}

.empty-state {
    padding: 48px 16px;
    color: var(--secondary-500);
    text-align: center;
}

.ranking-hero {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    align-items: center;
    gap: 48px;
    padding: 56px max(16px, calc((100% - 1280px) / 2));
}

.ranking-hero img {
    width: 100%;
    max-height: 520px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

.ranking-hero p {
    margin-bottom: 24px;
}

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

.large-search {
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 12px;
    max-width: 680px;
    margin-top: 24px;
}

.large-search input {
    min-height: 52px;
    padding: 0 20px;
    color: var(--secondary-900);
    background: var(--white);
}

.large-search button {
    min-height: 52px;
}

.detail-wrap {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
    padding: 28px 0 56px;
}

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

.breadcrumb a {
    color: var(--primary-600);
    font-weight: 700;
}

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

.player-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    background: var(--black);
    box-shadow: var(--shadow-xl);
}

.movie-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--black);
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: var(--white);
    background: linear-gradient(to top, rgb(0 0 0 / 0.72), rgb(0 0 0 / 0.28));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    padding-left: 6px;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary-600);
    box-shadow: 0 16px 40px rgb(0 0 0 / 0.32);
    font-size: 30px;
    line-height: 1;
}

.detail-panel,
.side-card {
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.detail-panel {
    margin-top: 24px;
    padding: 28px;
}

.detail-panel h1 {
    margin: 0 0 16px;
    font-family: "Noto Serif SC", Georgia, serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
}

.detail-meta {
    gap: 10px;
    margin-bottom: 18px;
}

.detail-meta span {
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--primary-700);
    background: var(--primary-100);
    font-size: 13px;
    font-weight: 800;
}

.lead-text {
    margin: 0 0 20px;
    color: var(--secondary-700);
    font-size: 18px;
}

.tag-list {
    gap: 8px;
    margin-bottom: 26px;
}

.tag-list a {
    color: var(--secondary-700);
    background: var(--secondary-100);
}

.tag-list a:hover {
    color: var(--white);
    background: var(--primary-600);
}

.detail-panel h2,
.side-card h2,
.related-section h2,
.site-footer h2 {
    margin: 26px 0 12px;
    font-size: 22px;
}

.detail-panel p {
    margin: 0 0 16px;
    color: var(--secondary-700);
    line-height: 1.85;
}

.inline-links {
    gap: 10px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--secondary-100);
}

.inline-links a {
    color: var(--primary-600);
    font-weight: 700;
}

.inline-links a:hover {
    text-decoration: underline;
}

.detail-poster {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

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

.side-card h2 {
    margin-top: 0;
}

.side-card dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px 14px;
    margin: 0;
}

.side-card dt {
    color: var(--secondary-500);
    font-weight: 800;
}

.side-card dd {
    margin: 0;
    color: var(--secondary-800);
}

.related-section {
    margin-top: 42px;
}

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

.related-card {
    overflow: hidden;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.related-card a {
    display: block;
}

.related-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.related-card span {
    display: block;
    overflow: hidden;
    padding: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-footer {
    color: var(--secondary-300);
    background: var(--secondary-950);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 36px;
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
    padding: 48px 0;
}

.footer-logo {
    color: var(--white);
}

.footer-brand p,
.site-footer p {
    margin: 14px 0 0;
    font-size: 14px;
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 17px;
}

.site-footer ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 14px;
}

.footer-bottom {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
    padding: 18px 0 26px;
    border-top: 1px solid var(--secondary-800);
    color: var(--secondary-400);
    font-size: 13px;
}

@media (max-width: 1180px) {
    .movie-grid,
    .movie-grid.six-col,
    .category-preview-grid,
    .category-card-grid,
    .related-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .detail-side {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 20px;
    }

    .side-card {
        margin-top: 0;
    }
}

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

    .menu-toggle {
        display: flex;
    }

    .hero-section {
        height: auto;
        min-height: 560px;
    }

    .hero-content {
        padding: 80px 0 64px;
    }

    .movie-grid,
    .movie-grid.six-col,
    .movie-grid.four-col,
    .category-preview-grid,
    .category-card-grid,
    .related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .rank-grid,
    .full-rank-list,
    .ranking-hero,
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-inner,
    .content-section,
    .detail-wrap,
    .page-hero-inner,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 24px, 1280px);
    }

    .brand span {
        font-size: 18px;
    }

    .hero-content {
        width: min(100% - 24px, 1280px);
    }

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

    .movie-grid,
    .movie-grid.six-col,
    .movie-grid.four-col,
    .category-preview-grid,
    .category-card-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .movie-card-body h3 {
        font-size: 15px;
    }

    .rank-item a {
        grid-template-columns: 44px 58px minmax(0, 1fr);
    }

    .rank-item img {
        width: 58px;
        height: 78px;
    }

    .filter-panel,
    .large-search,
    .detail-side {
        grid-template-columns: 1fr;
    }

    .detail-panel {
        padding: 20px;
    }

    .play-circle {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
}
