:root {
    --bg: #f9fafb;
    --panel: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --red: #ef4444;
    --red-dark: #dc2626;
    --orange: #f97316;
    --yellow: #facc15;
    --green: #10b981;
    --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
    --soft-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body::selection {
    background: rgba(239, 68, 68, 0.18);
}

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

img {
    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(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(229, 231, 235, 0.88);
    backdrop-filter: blur(18px);
}

.nav-shell {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 10px 22px rgba(239, 68, 68, 0.26);
}

.brand-text {
    font-size: 20px;
    white-space: nowrap;
}

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

.nav-link,
.mobile-link {
    color: #4b5563;
    font-weight: 650;
    border-radius: 999px;
    transition: 0.2s ease;
}

.nav-link {
    padding: 9px 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--red);
    background: rgba(239, 68, 68, 0.08);
}

.top-search,
.mobile-search,
.hero-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-search input,
.mobile-search input,
.hero-search input,
.local-search input {
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: none;
    background: #ffffff;
    color: var(--text);
    transition: 0.2s ease;
}

.top-search input {
    width: 228px;
    padding: 10px 14px;
}

.mobile-search input,
.hero-search input,
.local-search input {
    width: 100%;
    padding: 12px 16px;
}

.top-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.local-search input:focus {
    border-color: rgba(239, 68, 68, 0.65);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.top-search button,
.mobile-search button,
.hero-search button,
.primary-button,
.text-button {
    border: none;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    font-weight: 750;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-search button,
.mobile-search button,
.hero-search button {
    padding: 10px 16px;
}

.primary-button,
.text-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
}

.top-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.primary-button:hover,
.text-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(239, 68, 68, 0.28);
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(239, 68, 68, 0.24);
    color: var(--red-dark);
    background: rgba(255, 255, 255, 0.8);
    font-weight: 750;
    transition: 0.2s ease;
}

.ghost-button:hover {
    border-color: rgba(239, 68, 68, 0.48);
    background: #ffffff;
    transform: translateY(-2px);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: #f3f4f6;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-button span {
    width: 18px;
    height: 2px;
    background: #374151;
    border-radius: 99px;
}

.mobile-panel {
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.mobile-panel-inner {
    padding: 16px 0 20px;
    display: grid;
    gap: 10px;
}

.mobile-link {
    padding: 12px 14px;
}

.hero-zone {
    position: relative;
    overflow: hidden;
    padding: 74px 0 42px;
    background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 52%, #fefce8 100%);
}

.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(36px);
    opacity: 0.33;
    pointer-events: none;
}

.glow-one {
    top: -150px;
    left: -120px;
    background: #fca5a5;
}

.glow-two {
    right: -120px;
    bottom: -160px;
    background: #fdba74;
}

.hero-container {
    position: relative;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 42px;
    align-items: center;
}

.hero-slide.active {
    display: grid;
    animation: fadeRise 0.55s ease both;
}

@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    color: var(--red-dark);
    background: rgba(239, 68, 68, 0.1);
    border-radius: 999px;
    font-weight: 760;
    margin: 0 0 18px;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
    margin: 20px 0 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.8;
}

.hero-tags,
.card-tags,
.detail-meta,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.card-tags span,
.detail-meta span,
.detail-tags a {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: #4b5563;
    font-size: 13px;
    font-weight: 680;
    border: 1px solid rgba(229, 231, 235, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-poster {
    position: relative;
    min-height: 480px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.hero-poster::after,
.card-cover::after,
.overview-images::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.46));
    opacity: 0.76;
    pointer-events: none;
}

.hero-poster img,
.card-cover img,
.poster-panel img,
.player-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-pulse,
.play-circle {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 18px 36px rgba(239, 68, 68, 0.32);
}

.play-pulse {
    right: 28px;
    bottom: 28px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    z-index: 2;
}

.hero-dots {
    display: flex;
    gap: 9px;
    margin-top: 28px;
}

.hero-dot {
    width: 28px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.22);
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-dot.active {
    width: 54px;
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.hero-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.compact-card {
    position: relative;
    min-height: 108px;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--soft-shadow);
    transition: 0.2s ease;
}

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

.compact-card img {
    width: 74px;
    height: 88px;
    object-fit: cover;
    border-radius: 12px;
}

.compact-card strong,
.compact-card em {
    display: block;
}

.compact-card strong {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 6px;
}

.compact-card em {
    color: var(--muted);
    font-style: normal;
    font-size: 12px;
    line-height: 1.4;
}

.compact-rank {
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 2;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--red);
    font-size: 12px;
    font-weight: 800;
}

.quick-channel {
    margin-top: -18px;
    position: relative;
    z-index: 3;
}

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

.quick-grid a {
    padding: 24px;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 18px 34px rgba(239, 68, 68, 0.24);
}

.quick-grid strong,
.quick-grid span {
    display: block;
}

.quick-grid strong {
    font-size: 20px;
    margin-bottom: 8px;
}

.quick-grid span {
    opacity: 0.9;
}

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

.warm-section {
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
}

.soft-section {
    background: #f3f4f6;
}

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

.section-head h2,
.tag-section h2,
.plain-title {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-more {
    color: var(--red-dark);
    font-weight: 760;
}

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

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

.movie-card {
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.76);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.card-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e5e7eb;
}

.card-cover img {
    transition: transform 0.35s ease;
}

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

.score-badge,
.rank-badge,
.score-large {
    position: absolute;
    z-index: 3;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    font-weight: 850;
    box-shadow: 0 10px 22px rgba(239, 68, 68, 0.26);
}

.score-badge {
    right: 12px;
    bottom: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 13px;
}

.rank-badge {
    left: 12px;
    top: 12px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-body {
    padding: 17px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 10px;
}

.card-body h2 {
    margin: 0 0 9px;
    font-size: 18px;
    line-height: 1.35;
}

.card-body h2 a:hover {
    color: var(--red);
}

.card-body p {
    min-height: 48px;
    margin: 0 0 14px;
    color: #4b5563;
    line-height: 1.65;
    font-size: 14px;
}

.card-tags span {
    background: #fff1f2;
    color: var(--red-dark);
    border-color: rgba(248, 113, 113, 0.18);
}

.ranking-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 26px;
    align-items: start;
}

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

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

.category-tile {
    position: relative;
    min-height: 220px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    isolation: isolate;
}

.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
}

.category-tile span {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: #ffffff;
}

.category-tile strong,
.category-tile em {
    display: block;
}

.category-tile strong {
    font-size: 20px;
    margin-bottom: 6px;
}

.category-tile em {
    font-style: normal;
    opacity: 0.86;
    line-height: 1.5;
}

.tag-section {
    padding: 62px 0 74px;
    background: #ffffff;
}

.tag-section h2 {
    text-align: center;
    margin-bottom: 24px;
}

.tag-cloud,
.related-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tag-cloud a,
.related-links a {
    padding: 10px 16px;
    border-radius: 999px;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    font-weight: 700;
    transition: 0.2s ease;
}

.tag-cloud a:hover,
.related-links a:hover {
    color: #ffffff;
    background: var(--red);
    border-color: var(--red);
}

.page-hero {
    padding: 66px 0;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.page-hero .eyebrow {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 780px;
}

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

.category-overview-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(229, 231, 235, 0.8);
}

.overview-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 150px;
    overflow: hidden;
}

.overview-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overview-card div:not(.overview-images) {
    padding: 22px;
}

.category-overview-card h2 {
    margin: 0 0 10px;
    font-size: 23px;
}

.category-overview-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.filter-panel {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(229, 231, 235, 0.8);
}

.local-search {
    display: grid;
    gap: 8px;
    color: #374151;
    font-weight: 760;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-button {
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: #4b5563;
    background: #ffffff;
    cursor: pointer;
    font-weight: 700;
    transition: 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
    color: #ffffff;
    border-color: var(--red);
    background: var(--red);
}

.result-status,
.no-results {
    color: var(--muted);
    font-weight: 700;
}

.no-results {
    padding: 40px;
    text-align: center;
    border-radius: 22px;
    background: #ffffff;
}

.detail-hero {
    padding: 46px 0;
    background: linear-gradient(135deg, #111827, #7f1d1d 56%, #9a3412);
    color: #ffffff;
}

.detail-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 34px;
    align-items: center;
}

.poster-panel {
    position: relative;
    height: 430px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.score-large {
    right: 18px;
    bottom: 18px;
    padding: 9px 13px;
    border-radius: 14px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 20px;
}

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

.detail-copy h1 {
    max-width: 880px;
}

.detail-one-line {
    color: rgba(255, 255, 255, 0.86);
    max-width: 860px;
}

.detail-meta {
    margin-top: 22px;
}

.detail-meta span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
}

.detail-actions .ghost-button {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
}

.watch-section {
    padding: 46px 0 0;
    background: #111827;
}

.watch-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.watch-frame video {
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-poster {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    padding: 0;
    color: #ffffff;
    background: #000000;
    cursor: pointer;
    overflow: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.66));
}

.player-poster img {
    position: absolute;
    inset: 0;
    filter: blur(1px);
    transform: scale(1.02);
}

.play-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    z-index: 2;
    font-size: 26px;
}

.player-poster strong {
    position: relative;
    z-index: 2;
    margin-top: 112px;
    font-size: 20px;
}

.watch-frame.is-playing .player-poster,
.watch-frame.is-ready .player-poster {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.detail-content-section {
    background: #ffffff;
}

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

.detail-article,
.detail-side {
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.82);
    border-radius: 24px;
    box-shadow: var(--soft-shadow);
}

.detail-article {
    padding: 30px;
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 16px;
    font-size: 24px;
}

.detail-article p {
    margin: 0 0 24px;
    color: #374151;
    line-height: 1.9;
    font-size: 16px;
}

.detail-tags a {
    color: var(--red-dark);
    background: #fff1f2;
}

.detail-side {
    padding: 24px;
    position: sticky;
    top: 92px;
}

.detail-side dl {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    margin: 0;
}

.detail-side dt {
    color: var(--muted);
}

.detail-side dd {
    margin: 0;
    font-weight: 700;
}

.prev-next {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.prev-next a {
    padding: 18px 20px;
    border-radius: 18px;
    background: #ffffff;
    color: #374151;
    font-weight: 750;
    box-shadow: var(--soft-shadow);
}

.prev-next a:hover {
    color: var(--red);
}

.site-footer {
    color: #d1d5db;
    background: #111827;
    padding: 54px 0 0;
}

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

.footer-brand {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 16px;
}

.site-footer p {
    margin: 0;
    line-height: 1.75;
    color: #9ca3af;
}

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

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 38px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ca3af;
}

@media (max-width: 1080px) {
    .top-search {
        display: none;
    }

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

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

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

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

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

    .menu-button {
        display: inline-flex;
        margin-left: auto;
    }

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

    .hero-zone {
        padding-top: 44px;
    }

    .hero-poster {
        min-height: 360px;
    }

    .quick-grid,
    .movie-grid,
    .compact-grid,
    .category-grid,
    .category-overview-grid,
    .footer-grid,
    .prev-next {
        grid-template-columns: 1fr;
    }

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

    .poster-panel {
        height: 360px;
        max-width: 310px;
    }

    .detail-side {
        position: static;
    }
}

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

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

    .hero-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 34px;
    }

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

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

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

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

    .watch-frame {
        border-radius: 18px;
    }

    .detail-article,
    .detail-side,
    .filter-panel {
        padding: 20px;
    }

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