:root {
    --primary-500: #d4884b;
    --primary-600: #c6703f;
    --primary-700: #a55936;
    --accent-500: #ed7516;
    --secondary-900: #1c1917;
    --secondary-800: #292524;
    --secondary-700: #44403c;
    --warm-50: #faf9f7;
    --warm-100: #f4f2ee;
    --warm-200: #e8e4dc;
    --warm-300: #d9d3c7;
    --warm-400: #a79f90;
    --white: #ffffff;
    --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
    --shadow-soft-lg: 0 10px 40px -10px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.04);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--secondary-900);
    background: var(--warm-50);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 12px rgba(28, 25, 23, 0.08);
}

.nav-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--secondary-900);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand {
    font-size: 24px;
}

.brand-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--white);
    background: var(--primary-500);
    box-shadow: 0 10px 24px rgba(212, 136, 75, 0.25);
}

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

.nav-links a {
    color: var(--secondary-700);
    font-weight: 600;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.brand:hover {
    color: var(--primary-600);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 270px;
}

.nav-search input,
.filter-bar input,
.filter-bar select,
.global-search-form input {
    width: 100%;
    border: 1px solid var(--warm-200);
    border-radius: 12px;
    background: var(--white);
    padding: 11px 14px;
    color: var(--secondary-900);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus,
.global-search-form input:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(212, 136, 75, 0.12);
}

.nav-search button,
.global-search-form button,
.primary-button {
    border: 0;
    border-radius: 12px;
    background: var(--primary-500);
    color: var(--white);
    padding: 11px 18px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 14px 30px rgba(212, 136, 75, 0.22);
    white-space: nowrap;
}

.nav-search button:hover,
.global-search-form button:hover,
.primary-button:hover {
    transform: translateY(-1px);
    background: var(--primary-600);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--secondary-900);
    font-size: 28px;
    cursor: pointer;
}

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--secondary-900);
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-mask,
.detail-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 25, 23, 0.12), rgba(28, 25, 23, 0.72) 54%, rgba(28, 25, 23, 0.95));
}

.hero-content {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 80px;
    width: min(1180px, calc(100% - 40px));
    transform: translateX(-50%);
    color: var(--white);
    max-width: 740px;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary-500);
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-content h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-content p {
    margin: 0 0 22px;
    max-width: 680px;
    color: var(--warm-200);
    font-size: 18px;
}

.hero-tags,
.tag-row,
.detail-meta,
.card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-meta span,
.card-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span,
.detail-meta span {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
}

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

.ghost-button,
.panel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    color: var(--white);
    padding: 10px 18px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.ghost-button:hover,
.panel-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.16);
}

.hero-control {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.48);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hero-control:hover {
    background: rgba(0, 0, 0, 0.7);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--white);
}

.search-band,
.content-section,
.footer-grid,
.footer-bottom,
.detail-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.search-band {
    margin-top: -42px;
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    box-shadow: var(--shadow-soft-lg);
    padding-top: 26px;
    padding-bottom: 26px;
}

.search-band span {
    color: var(--primary-600);
    font-weight: 800;
}

.search-band h2 {
    margin: 4px 0 6px;
    font-size: clamp(24px, 3vw, 34px);
}

.search-band p {
    margin: 0;
    color: var(--secondary-700);
}

.search-band form,
.global-search-form {
    display: flex;
    gap: 10px;
}

.content-section {
    padding-top: 70px;
}

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

.section-heading h2,
.rank-panel h2,
.page-hero h1,
.detail-info h1,
.detail-content h2 {
    margin: 0;
    color: var(--secondary-900);
    line-height: 1.15;
}

.section-heading h2 {
    font-size: clamp(26px, 3vw, 38px);
}

.section-heading a {
    color: var(--primary-600);
    font-weight: 800;
    white-space: nowrap;
}

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

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

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

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

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

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--warm-200);
}

.compact-card .poster-link {
    aspect-ratio: 3 / 4;
}

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

.movie-card:hover .poster-link img {
    transform: scale(1.08);
    filter: brightness(0.8);
}

.play-mark {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--primary-600);
    background: rgba(255, 255, 255, 0.9);
    transform: scale(0);
    transition: transform 0.25s ease;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.movie-card:hover .play-mark {
    transform: scale(1);
}

.card-body {
    padding: 18px;
}

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

.card-meta span {
    color: var(--primary-700);
    background: rgba(212, 136, 75, 0.12);
}

.card-body h3 {
    margin: 12px 0 8px;
    color: var(--secondary-900);
    font-size: 18px;
    line-height: 1.35;
}

.compact-card .card-body h3 {
    margin: 8px 0 6px;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-body h3 a:hover,
.ranking-body h2 a:hover {
    color: var(--primary-600);
}

.card-body p {
    margin: 0 0 14px;
    color: var(--secondary-700);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-row span {
    color: var(--secondary-700);
    background: var(--warm-100);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.rank-panel {
    position: sticky;
    top: 102px;
    border-radius: 22px;
    background: var(--secondary-900);
    color: var(--warm-100);
    padding: 28px;
    box-shadow: var(--shadow-soft-lg);
}

.rank-panel h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
}

.rank-panel ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.rank-panel li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    color: var(--warm-200);
}

.rank-panel li span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--primary-500);
    color: var(--white);
    font-weight: 800;
}

.rank-panel li a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-panel li a:hover {
    color: var(--primary-500);
}

.rank-panel li em {
    color: var(--warm-400);
    font-style: normal;
    font-size: 12px;
}

.panel-link {
    margin-top: 24px;
    width: 100%;
}

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

.category-grid > a,
.category-tile a {
    display: block;
    min-height: 128px;
    border-radius: 20px;
    padding: 22px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.category-grid > a:hover,
.category-tile a:hover {
    transform: translateY(-4px);
    background: #fffdfb;
    box-shadow: var(--shadow-soft-lg);
}

.category-grid strong,
.category-tile h2 {
    display: block;
    margin: 0 0 8px;
    color: var(--secondary-900);
    font-size: 21px;
}

.category-grid span,
.category-tile p {
    display: block;
    color: var(--secondary-700);
    font-size: 14px;
}

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

.category-tile a {
    padding: 0;
    overflow: hidden;
}

.tile-posters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 150px;
    background: var(--warm-200);
}

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

.tile-body {
    padding: 22px;
}

.page-hero {
    position: relative;
    color: var(--white);
    background: radial-gradient(circle at top left, rgba(212, 136, 75, 0.5), transparent 32%), linear-gradient(135deg, #1c1917, #292524 55%, #3a2418);
}

.small-hero {
    padding: 74px 24px 66px;
}

.page-hero > div {
    max-width: 1240px;
    margin: 0 auto;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(34px, 4vw, 56px);
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 760px;
    color: var(--warm-200);
    font-size: 18px;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 180px;
    gap: 12px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.empty-state {
    padding: 34px;
    border-radius: 18px;
    text-align: center;
    color: var(--secondary-700);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 58px 180px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 18px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.rank-number {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-500);
    color: var(--white);
    font-weight: 900;
    font-size: 20px;
}

.ranking-poster {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    background: var(--warm-200);
}

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

.ranking-poster span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-600);
}

.ranking-body h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.ranking-body p {
    margin: 12px 0;
    color: var(--secondary-700);
}

.search-page {
    padding-bottom: 0;
}

.global-search-form {
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.detail-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: var(--secondary-900);
}

.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.52;
    filter: blur(1px);
}

.detail-shell {
    position: relative;
    z-index: 2;
    padding-top: 46px;
    padding-bottom: 58px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 28px;
    color: var(--warm-200);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--primary-500);
}

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

.detail-poster {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
    background: var(--warm-200);
}

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

.detail-info {
    color: var(--white);
}

.detail-info h1 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 64px);
    letter-spacing: -0.04em;
}

.detail-one-line {
    max-width: 820px;
    color: var(--warm-200);
    font-size: 19px;
}

.detail-meta {
    margin: 22px 0 16px;
}

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

.detail-tags span {
    color: var(--warm-100);
    background: rgba(255, 255, 255, 0.13);
}

.player-section {
    padding-top: 52px;
}

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

.movie-player,
.player-cover,
.player-cover img {
    width: 100%;
    height: 100%;
}

.movie-player {
    display: block;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #000000;
}

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

.player-cover img {
    object-fit: cover;
    filter: brightness(0.56);
}

.player-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-600);
    font-size: 34px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.36);
}

.detail-content article {
    max-width: 980px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.detail-content h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 28px;
}

.detail-content h2:not(:first-child) {
    margin-top: 28px;
}

.detail-content p {
    margin: 0;
    color: var(--secondary-700);
    font-size: 17px;
}

.site-footer {
    margin-top: 88px;
    background: var(--secondary-900);
    color: var(--warm-200);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 42px;
    padding-top: 46px;
    padding-bottom: 34px;
}

.footer-brand {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-grid p {
    margin: 0;
    color: var(--warm-300);
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

.footer-grid a:not(.footer-brand) {
    display: block;
    margin: 8px 0;
    color: var(--warm-300);
}

.footer-grid a:hover {
    color: var(--primary-500);
}

.footer-bottom {
    padding-top: 20px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--warm-400);
    font-size: 14px;
}

@media (max-width: 1120px) {
    .nav-shell {
        flex-wrap: wrap;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .nav-search {
        margin-left: auto;
    }

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

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

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

    .rank-panel {
        position: static;
    }

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

@media (max-width: 820px) {
    .nav-shell {
        gap: 14px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        order: 4;
        width: 100%;
        padding: 12px 0;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 10px 12px;
        border-radius: 10px;
        background: var(--warm-50);
    }

    .nav-search {
        order: 3;
        width: 100%;
        min-width: 0;
    }

    .hero-slider {
        height: 540px;
    }

    .hero-content {
        bottom: 72px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-control {
        width: 42px;
        height: 42px;
    }

    .search-band {
        grid-template-columns: 1fr;
        margin-top: 0;
        border-radius: 0;
    }

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

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

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

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

    .ranking-item {
        grid-template-columns: 42px 110px minmax(0, 1fr);
        gap: 14px;
    }

    .ranking-body h2 {
        font-size: 19px;
    }

    .ranking-body p,
    .ranking-body .tag-row {
        display: none;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .detail-poster {
        max-width: 260px;
    }

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

@media (max-width: 540px) {
    .brand {
        font-size: 20px;
    }

    .search-band,
    .content-section,
    .footer-grid,
    .footer-bottom,
    .detail-shell {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-slider {
        height: 500px;
    }

    .hero-content {
        width: calc(100% - 32px);
    }

    .hero-actions,
    .search-band form,
    .global-search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-control {
        display: none;
    }

    .movie-grid,
    .two-column-grid,
    .compact-grid,
    .category-grid,
    .large-category-grid {
        grid-template-columns: 1fr;
    }

    .compact-card .poster-link {
        aspect-ratio: 16 / 9;
    }

    .ranking-item {
        grid-template-columns: 40px 1fr;
    }

    .ranking-poster {
        display: none;
    }

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

    .detail-info h1 {
        font-size: 34px;
    }

    .player-button {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

    .detail-content article {
        padding: 24px;
    }
}
