:root {
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.86);
    --panel-solid: #0f172a;
    --panel-soft: #111827;
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --amber: #f59e0b;
    --orange: #f97316;
    --red: #ef4444;
    --green: #22c55e;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.14), transparent 34rem),
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.13), transparent 30rem),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #020617 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 6, 23, 0.82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

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

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 16px 36px rgba(245, 158, 11, 0.28);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-copy strong {
    font-size: 1.22rem;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #fde68a, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.76rem;
    margin-top: 4px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav > a,
.nav-dropdown > button {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    color: var(--soft);
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.main-nav > a:hover,
.main-nav > a.is-active,
.nav-dropdown:hover > button {
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.22);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    display: grid;
    gap: 6px;
    padding: 12px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown-panel a {
    padding: 9px 10px;
    border-radius: 10px;
    color: var(--soft);
}

.nav-dropdown-panel a:hover {
    color: #fbbf24;
    background: rgba(148, 163, 184, 0.10);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    color: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.7);
}

.hero {
    position: relative;
    min-height: 82vh;
    overflow: hidden;
    background: #020617;
}

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(1.1) contrast(1.04);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.75) 42%, rgba(2, 6, 23, 0.24)),
        linear-gradient(0deg, rgba(2, 6, 23, 1), rgba(2, 6, 23, 0.08) 46%, rgba(2, 6, 23, 0.72));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 140px;
}

.hero-copy {
    width: min(760px, 100%);
}

.hero-kicker,
.hero-tags,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-kicker span,
.hero-tags span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 11px;
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
}

.hero-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.5rem, 6vw, 5.8rem);
    line-height: 1;
    letter-spacing: -0.06em;
    text-shadow: 0 20px 80px rgba(0, 0, 0, 0.72);
}

.hero-copy p {
    max-width: 680px;
    margin: 0 0 22px;
    color: var(--soft);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: #111827;
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    box-shadow: 0 18px 36px rgba(245, 158, 11, 0.28);
}

.btn.ghost {
    color: var(--text);
    background: rgba(15, 23, 42, 0.68);
    border-color: rgba(148, 163, 184, 0.24);
}

.btn.full {
    width: 100%;
}

.small-actions {
    margin-top: 22px;
}

.hero-control {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 4;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.hero-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.74);
    font-size: 1.9rem;
    line-height: 1;
}

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

.hero-thumb {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 8px;
    color: var(--soft);
    text-align: left;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.70);
}

.hero-thumb img {
    width: 62px;
    height: 46px;
    object-fit: cover;
    border-radius: 10px;
}

.hero-thumb span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hero-thumb.is-active {
    color: #ffffff;
    border-color: rgba(245, 158, 11, 0.55);
    background: rgba(245, 158, 11, 0.18);
}

.section-block {
    padding: 58px 0;
}

.intro-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 28px;
    align-items: center;
    margin-top: -16px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: #fbbf24;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

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

.section-heading h2,
.intro-band h2,
.page-hero h1,
.watch-info h1 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-heading a {
    color: #fbbf24;
    font-weight: 700;
}

.inline-heading {
    display: block;
}

.intro-band p,
.page-hero p,
.category-tile p,
.category-overview-card p,
.detail-main p,
.watch-info p,
.site-footer p {
    color: var(--muted);
}

.site-search,
.filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.70);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
}

.site-search input,
.filter-bar input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 12px;
    outline: none;
    background: rgba(2, 6, 23, 0.72);
}

.site-search button,
.filter-bar span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    color: #111827;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    font-weight: 800;
}

.large-filter {
    margin-bottom: 28px;
}

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

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

.movie-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
}

.movie-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.78);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.38);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #111827;
}

.catalog-grid .movie-poster,
.related-grid .movie-poster {
    aspect-ratio: 3 / 4;
}

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

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

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 55%);
}

.movie-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.90);
    transform: translate(-50%, -50%) scale(0.88);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-year {
    position: absolute;
    z-index: 2;
    right: 12px;
    top: 12px;
    padding: 4px 9px;
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.32);
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
}

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

.movie-title {
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.movie-title:hover {
    color: #fbbf24;
}

.movie-card-body p {
    min-height: 3.4em;
    margin: 8px 0 12px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.9rem;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: #94a3b8;
    font-size: 0.78rem;
}

.movie-meta span {
    max-width: 100%;
    overflow: hidden;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.10);
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

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

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

.compact-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.68);
}

.compact-card:hover {
    border-color: rgba(245, 158, 11, 0.36);
}

.compact-card img {
    grid-row: 1 / span 2;
    width: 76px;
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
}

.compact-card span,
.compact-card small {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.compact-card span {
    color: #ffffff;
    font-weight: 800;
}

.compact-card small {
    color: var(--muted);
}

.ranking-panel,
.category-overview-card,
.detail-main,
.detail-side,
.filter-panel,
.intro-band,
.page-hero .container {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.68);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.ranking-panel {
    padding: 22px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 40px 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.42);
}

.rank-item:hover {
    background: rgba(245, 158, 11, 0.12);
}

.rank-number {
    color: #fbbf24;
    font-size: 1.04rem;
    font-weight: 900;
}

.rank-item img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 12px;
}

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

.rank-copy strong,
.rank-copy small {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-copy small {
    color: var(--muted);
}

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

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

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

.category-tile {
    position: relative;
    min-height: 230px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(15, 23, 42, 0.68)),
        rgba(15, 23, 42, 0.76);
}

.category-tile:hover {
    border-color: rgba(245, 158, 11, 0.42);
}

.category-name {
    color: #fbbf24;
    font-weight: 800;
}

.category-tile strong {
    display: block;
    margin: 8px 0 8px;
    font-size: 2rem;
}

.category-thumbs {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
}

.category-thumbs img {
    width: 64px;
    height: 86px;
    object-fit: cover;
    margin-left: -22px;
    border: 3px solid #0f172a;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.category-overview-card {
    padding: 22px;
}

.category-overview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.category-overview-head span {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 900;
}

.category-overview-head strong {
    color: #fbbf24;
}

.page-hero {
    padding: 56px 0 10px;
}

.compact-hero .container {
    padding: 44px;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 24rem),
        rgba(15, 23, 42, 0.72);
}

.filter-panel {
    padding: 26px;
}

.watch-hero {
    padding: 42px 0 20px;
    background:
        radial-gradient(circle at 18% 8%, rgba(245, 158, 11, 0.16), transparent 28rem),
        linear-gradient(180deg, rgba(15, 23, 42, 0.86), transparent);
}

.watch-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.22);
    border-radius: 28px;
    background: #000000;
    box-shadow: var(--shadow);
}

.player-shell video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #ffffff;
    border: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.26));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #fbbf24, #fb923c);
    box-shadow: 0 20px 45px rgba(245, 158, 11, 0.32);
    font-size: 2rem;
}

.watch-info {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.72);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.9rem;
}

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

.watch-info h1 {
    margin-bottom: 16px;
}

.detail-meta {
    margin: 20px 0;
}

.detail-tags span {
    color: #bfdbfe;
    border-color: rgba(59, 130, 246, 0.28);
    background: rgba(59, 130, 246, 0.12);
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 26px;
}

.detail-main,
.detail-side {
    padding: 26px;
}

.detail-main h2 {
    margin: 0 0 14px;
    font-size: 1.6rem;
}

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

.detail-main p {
    margin: 0;
    font-size: 1.05rem;
}

.detail-side img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    margin-bottom: 18px;
    border-radius: 20px;
}

.site-footer {
    margin-top: 40px;
    padding: 50px 0 24px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 34px;
}

.site-footer h3 {
    margin: 0 0 12px;
}

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

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 30px auto 0;
    padding-top: 18px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    text-align: center;
    font-size: 0.92rem;
}

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

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

    .split-layout,
    .watch-layout,
    .detail-grid,
    .intro-band {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        order: -1;
    }

    .full-rank-list,
    .category-grid.wide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 840px) {
    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .main-nav {
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(15, 23, 42, 0.98);
        box-shadow: var(--shadow);
    }

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

    .nav-dropdown-panel {
        position: static;
        width: auto;
        margin-top: 8px;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 70px;
        padding-bottom: 210px;
    }

    .hero-control {
        grid-template-columns: 1fr;
    }

    .hero-arrow {
        display: none;
    }

    .hero-thumbs {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .brand {
        min-width: 0;
    }

    .brand-copy small {
        display: none;
    }

    .hero {
        min-height: 680px;
    }

    .hero-kicker span,
    .hero-tags span,
    .detail-meta span {
        min-height: 28px;
        font-size: 0.78rem;
    }

    .hero-actions,
    .small-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .movie-row {
        grid-auto-columns: minmax(76vw, 1fr);
    }

    .compact-hero .container,
    .filter-panel,
    .watch-info,
    .detail-main,
    .detail-side {
        padding: 20px;
        border-radius: 22px;
    }
}
