* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
    color: #78350f;
    background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 48%, #fffbeb 100%);
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 237, 0.96));
    border-bottom: 1px solid #fcd34d;
    box-shadow: 0 12px 30px rgba(146, 64, 14, 0.12);
    backdrop-filter: blur(16px);
}

.header-inner {
    max-width: 1280px;
    height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, #d97706, #c2410c);
    box-shadow: 0 14px 24px rgba(194, 65, 12, 0.24);
}

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

.logo-text strong {
    font-size: 21px;
    color: #92400e;
    letter-spacing: 0.02em;
}

.logo-text em {
    margin-top: 4px;
    font-size: 12px;
    color: #b45309;
    font-style: normal;
}

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

.nav-link,
.mobile-link {
    color: #78350f;
    border-radius: 14px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 10px 15px;
    font-weight: 600;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: #7c2d12;
    background: #fde68a;
}

.nav-dropdown {
    position: relative;
}

.nav-more {
    border: 0;
    background: transparent;
}

.dropdown-panel {
    position: absolute;
    right: 0;
    top: 44px;
    min-width: 180px;
    padding: 12px;
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    border: 1px solid #fed7aa;
    border-radius: 18px;
    background: rgba(255, 251, 235, 0.98);
    box-shadow: 0 24px 60px rgba(120, 53, 15, 0.18);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    display: grid;
}

.dropdown-panel a {
    padding: 10px 12px;
    border-radius: 12px;
    color: #92400e;
}

.dropdown-panel a:hover {
    background: #ffedd5;
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: transparent;
}

.mobile-menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #78350f;
    border-radius: 10px;
}

.mobile-nav {
    display: none;
    padding: 10px 24px 18px;
    border-top: 1px solid #fed7aa;
    background: #fff7ed;
}

.mobile-link {
    display: block;
    padding: 13px 16px;
    font-weight: 700;
}

.hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: #111827;
}

.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-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.14));
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    right: 24px;
    bottom: 82px;
    max-width: 820px;
    color: #ffffff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    font-size: 14px;
    color: #ffffff;
    background: linear-gradient(90deg, #d97706, #c2410c);
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.28);
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 720px;
    margin: 0 0 30px;
    color: #fef3c7;
    font-size: 19px;
    line-height: 1.8;
}

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

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

.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, #d97706, #c2410c);
    box-shadow: 0 18px 40px rgba(194, 65, 12, 0.28);
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px) scale(1.02);
}

.ghost-button {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(10px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(8px);
    transform: translateY(-50%);
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.56);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

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

.search-band,
.content-section,
.feature-panel,
.filter-panel,
.detail-layout {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.search-band {
    margin-top: -44px;
    position: relative;
    z-index: 10;
    padding: 28px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    align-items: center;
    border-radius: 28px;
    background: rgba(255, 251, 235, 0.96);
    border: 1px solid #fed7aa;
    box-shadow: 0 24px 60px rgba(120, 53, 15, 0.14);
}

.search-band h2 {
    margin: 0 0 8px;
    font-size: 28px;
    color: #78350f;
}

.search-band p {
    margin: 0;
    color: #a16207;
    line-height: 1.7;
}

.search-form,
.filter-panel {
    display: flex;
    gap: 12px;
}

.search-form input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    color: #78350f;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    background: #ffffff;
    outline: none;
}

.search-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.search-form button {
    min-width: 116px;
    border: 0;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, #d97706, #c2410c);
}

.content-section,
.feature-panel {
    padding: 64px 24px 0;
}

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

.section-heading h2 {
    margin: 0 0 8px;
    color: #78350f;
    font-size: 32px;
    line-height: 1.2;
}

.section-heading p {
    margin: 0 0 12px;
    color: #a16207;
}

.section-heading span {
    display: block;
    width: 82px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d97706, #ea580c);
}

.section-more {
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: 14px;
    color: #92400e;
    background: #ffedd5;
    font-weight: 800;
}

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

.category-card,
.category-overview-card {
    display: block;
    min-height: 154px;
    padding: 22px;
    border: 1px solid #fed7aa;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff, #fff7ed);
    box-shadow: 0 14px 32px rgba(120, 53, 15, 0.09);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 52px rgba(120, 53, 15, 0.16);
}

.category-card strong,
.category-overview-card h2 {
    display: block;
    margin: 0 0 10px;
    color: #78350f;
    font-size: 21px;
}

.category-card span,
.category-overview-card p {
    color: #a16207;
    line-height: 1.7;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(120, 53, 15, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 54px rgba(120, 53, 15, 0.18);
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #f59e0b, #7c2d12);
}

.movie-card-compact .movie-cover {
    aspect-ratio: 16 / 11;
}

.movie-cover img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .movie-cover img {
    transform: scale(1.08);
}

.movie-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.04));
    opacity: 0;
    transition: opacity 0.25s ease;
}

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

.movie-play {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.9);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.movie-card:hover .movie-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.movie-region {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(217, 119, 6, 0.92);
}

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

.movie-card-body h2 {
    margin: 0 0 9px;
    color: #78350f;
    font-size: 18px;
    line-height: 1.35;
}

.movie-card-body h2 a:hover {
    color: #b45309;
}

.movie-card-body p {
    min-height: 48px;
    margin: 0 0 14px;
    color: #a16207;
    font-size: 14px;
    line-height: 1.7;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #b45309;
    font-size: 12px;
}

.movie-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #ffedd5;
}

.movie-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.movie-tags span,
.detail-tags span {
    padding: 4px 8px;
    border-radius: 999px;
    color: #92400e;
    font-size: 12px;
    background: #fef3c7;
}

.feature-panel {
    margin-top: 64px;
    padding: 42px 24px;
    border-radius: 32px;
    background: linear-gradient(135deg, #fef3c7, #ffedd5);
    box-shadow: 0 22px 54px rgba(120, 53, 15, 0.12);
}

.horizontal-list {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
}

.horizontal-list .movie-card {
    width: 286px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.horizontal-list::-webkit-scrollbar {
    display: none;
}

.rank-and-focus {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 28px;
    align-items: start;
}

.rank-box,
.focus-box {
    min-width: 0;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 38px 76px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(120, 53, 15, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    box-shadow: 0 18px 38px rgba(120, 53, 15, 0.14);
}

.rank-row span {
    color: #d97706;
    font-weight: 900;
    font-size: 22px;
    text-align: center;
}

.rank-row img {
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-row strong {
    display: block;
    color: #78350f;
    font-size: 15px;
}

.rank-row em {
    display: block;
    margin-top: 4px;
    color: #a16207;
    font-size: 12px;
    font-style: normal;
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background: radial-gradient(circle at 22% 10%, rgba(251, 191, 36, 0.48), transparent 30%), linear-gradient(135deg, #78350f, #c2410c 58%, #92400e);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
}

.page-hero > div {
    position: relative;
    z-index: 2;
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 56px 24px;
}

.small-hero {
    min-height: 240px;
}

.category-hero {
    min-height: 300px;
}

.page-hero span {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
}

.page-hero p {
    max-width: 760px;
    margin: 0 0 22px;
    color: #fef3c7;
    font-size: 18px;
    line-height: 1.8;
}

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

.filter-panel select {
    max-width: 180px;
}

.category-overview-card {
    min-height: 260px;
}

.category-overview-card > a span {
    display: inline-flex;
    margin-top: 14px;
    color: #c2410c;
    font-weight: 800;
}

.mini-links {
    display: grid;
    gap: 7px;
    margin-top: 18px;
}

.mini-links a {
    color: #92400e;
    font-size: 14px;
}

.mini-links a:hover {
    color: #c2410c;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 64px 180px 1fr;
    gap: 20px;
    align-items: center;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(120, 53, 15, 0.1);
}

.ranking-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, #d97706, #c2410c);
}

.ranking-cover {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 18px;
}

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

.ranking-info h2 {
    margin: 0 0 8px;
    color: #78350f;
    font-size: 22px;
}

.ranking-info p {
    margin: 0 0 12px;
    color: #a16207;
    line-height: 1.7;
}

.detail-layout {
    padding: 24px 24px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 18px 0;
    color: #a16207;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #c2410c;
}

.player-section {
    overflow: hidden;
    border-radius: 30px;
    background: #111827;
    box-shadow: 0 30px 70px rgba(17, 24, 39, 0.32);
}

.player-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18));
    cursor: pointer;
}

.player-overlay span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    padding-left: 5px;
    border-radius: 50%;
    font-size: 34px;
    background: linear-gradient(135deg, #d97706, #c2410c);
    box-shadow: 0 20px 52px rgba(194, 65, 12, 0.4);
}

.player-overlay strong {
    font-size: 18px;
}

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

.detail-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 34px;
    padding: 30px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(120, 53, 15, 0.11);
}

.detail-poster {
    overflow: hidden;
    align-self: start;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(120, 53, 15, 0.16);
}

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

.detail-info h1 {
    margin: 0 0 14px;
    color: #78350f;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}

.detail-one-line {
    margin: 0 0 18px;
    color: #a16207;
    font-size: 18px;
    line-height: 1.8;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    color: #92400e;
    background: #ffedd5;
    font-weight: 700;
}

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

.detail-info h2 {
    margin: 24px 0 10px;
    color: #78350f;
    font-size: 23px;
}

.detail-info p {
    color: #92400e;
    line-height: 1.9;
}

.related-section {
    padding-left: 0;
    padding-right: 0;
}

.site-footer {
    margin-top: 80px;
    color: #fef3c7;
    background: linear-gradient(180deg, #78350f, #431407);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 46px 24px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 36px;
}

.footer-logo {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

.footer-brand p {
    max-width: 440px;
    color: #fde68a;
    line-height: 1.8;
}

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

.footer-links div {
    display: grid;
    gap: 9px;
}

.footer-links a {
    color: #fde68a;
}

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

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px 28px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(253, 230, 138, 0.24);
    color: #fcd34d;
    font-size: 14px;
}

[data-movie-card].is-hidden {
    display: none;
}

@media (max-width: 1120px) {
    .category-grid,
    .overview-grid,
    .dense-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .rank-and-focus {
        grid-template-columns: 1fr;
    }
}

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

    .mobile-menu-button {
        display: block;
    }

    body.menu-open .mobile-nav {
        display: block;
    }

    .hero {
        height: 560px;
    }

    .hero-content {
        left: 22px;
        bottom: 72px;
    }

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

    .hero-arrow {
        display: none;
    }

    .search-band {
        grid-template-columns: 1fr;
        margin-left: 16px;
        margin-right: 16px;
        padding: 22px;
    }

    .search-form,
    .filter-panel {
        flex-direction: column;
    }

    .filter-panel select {
        max-width: none;
    }

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

    .ranking-card {
        grid-template-columns: 48px 112px 1fr;
        gap: 14px;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .header-inner {
        padding: 0 16px;
    }

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

    .logo-text em {
        display: none;
    }

    .hero {
        height: 520px;
    }

    .hero-content {
        right: 18px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .ghost-button {
        width: 100%;
    }

    .content-section,
    .feature-panel,
    .detail-layout {
        padding-left: 16px;
        padding-right: 16px;
    }

    .category-grid,
    .overview-grid,
    .movie-grid,
    .dense-grid,
    .two-col {
        grid-template-columns: 1fr;
    }

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

    .ranking-card {
        grid-template-columns: 42px 1fr;
    }

    .ranking-cover {
        display: none;
    }

    .detail-main {
        padding: 20px;
    }

    .player-section {
        border-radius: 20px;
    }
}
