* {
    box-sizing: border-box;
}

:root {
    --teal: #0f766e;
    --teal-bright: #14b8a6;
    --blue: #2563eb;
    --sky: #38bdf8;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #dbeafe;
    --soft: #f8fafc;
    --white: #ffffff;
    --shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(135deg, #f8fafc 0%, #ecfeff 45%, #eff6ff 100%);
    min-height: 100vh;
}

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: 100;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(20, 184, 166, 0.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(15, 118, 110, 0.08);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    font-weight: 800;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--teal-bright), var(--blue));
    box-shadow: 0 0 0 8px rgba(20, 184, 166, 0.12), 0 12px 28px rgba(37, 99, 235, 0.25);
    animation: pulseMark 2.8s ease-in-out infinite;
}

.logo-text {
    font-size: 22px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    color: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.nav-link {
    color: #334155;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal);
    transform: translateY(-1px);
}

.nav-link-soft {
    color: #64748b;
}

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

.header-search input,
.mobile-search input,
.side-search input,
.page-filter-input {
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    width: 190px;
    padding: 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.side-search input:focus,
.page-filter-input:focus {
    border-color: var(--teal-bright);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.16);
}

.header-search button,
.mobile-search button,
.side-search button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(90deg, var(--teal-bright), var(--blue));
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.menu-toggle {
    display: none;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: var(--teal);
    background: #ccfbf1;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.mobile-panel.open {
    display: grid;
    gap: 10px;
}

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
    color: #334155;
    font-weight: 700;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--teal);
    background: #ecfeff;
}

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

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

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

.hero-bg,
.hero-bg img,
.hero-shade {
    position: absolute;
    inset: 0;
}

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

.hero-shade {
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.86) 0%, rgba(15, 23, 42, 0.62) 48%, rgba(15, 118, 110, 0.1) 100%), linear-gradient(0deg, rgba(2, 6, 23, 0.7), rgba(2, 6, 23, 0.08));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1180px;
    padding-top: 20px;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5eead4;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker::before,
.eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2dd4bf;
    box-shadow: 0 0 22px #2dd4bf;
}

.hero h1 {
    width: min(680px, 100%);
    margin: 18px 0 20px;
    color: #ffffff;
    font-size: clamp(38px, 7vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero p {
    width: min(660px, 100%);
    margin: 0 0 24px;
    color: #dbeafe;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
}

.hero-tags,
.tag-row,
.detail-tags,
.side-chips,
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.tag-row span,
.detail-tags a,
.side-chips a,
.filter-chip {
    border: 1px solid rgba(20, 184, 166, 0.28);
    border-radius: 999px;
    padding: 6px 12px;
    color: var(--teal);
    background: rgba(236, 254, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span {
    color: #ccfbf1;
    background: rgba(15, 118, 110, 0.22);
    border-color: rgba(94, 234, 212, 0.36);
    backdrop-filter: blur(12px);
}

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

.btn,
.text-link,
.side-link,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn {
    padding: 14px 24px;
}

.btn:hover,
.text-link:hover,
.side-link:hover,
.section-more:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--teal-bright), var(--blue));
    box-shadow: 0 18px 35px rgba(37, 99, 235, 0.26);
}

.btn.glass,
.btn.ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

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

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

.hero-dot.active {
    width: 34px;
    background: #2dd4bf;
}

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

.content-section.white {
    background: rgba(255, 255, 255, 0.66);
}

.content-section.tint {
    background: linear-gradient(135deg, rgba(236, 254, 255, 0.86), rgba(239, 246, 255, 0.9));
}

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

.section-heading h2,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.section-more,
.text-link,
.side-link {
    color: var(--teal);
    font-weight: 800;
}

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

.movie-grid.compact {
    gap: 20px;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(15, 118, 110, 0.16);
}

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

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

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

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.72));
    opacity: 0.92;
}

.play-dot {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(20, 184, 166, 0.92);
    transform: translate(-50%, -50%) scale(0.88);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.category-pill,
.duration-pill,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    padding: 6px 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.category-pill {
    left: 12px;
    top: 12px;
    background: rgba(20, 184, 166, 0.92);
}

.duration-pill {
    right: 12px;
    bottom: 12px;
    background: rgba(2, 6, 23, 0.78);
}

.rank-badge {
    right: 12px;
    top: 12px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.card-body {
    padding: 16px;
}

.card-body h2,
.list-content h2 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.35;
}

.card-body h2 a:hover,
.list-content h2 a:hover {
    color: var(--teal);
}

.card-body p,
.list-content p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.65;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
}

.card-meta span {
    display: inline-flex;
    align-items: center;
}

.card-meta span + span::before {
    content: "•";
    margin-right: 8px;
    color: #94a3b8;
}

.tag-row {
    margin-top: 14px;
}

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

.category-box {
    display: block;
    min-height: 150px;
    padding: 24px;
    border: 1px solid rgba(20, 184, 166, 0.18);
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff, #ecfeff);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-box:hover,
.category-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(15, 118, 110, 0.14);
}

.category-box span {
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 900;
    color: var(--teal);
}

.category-box p,
.category-card-large p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

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

.side-panel,
.detail-side,
.text-panel,
.player-card,
.category-card-large {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

.side-panel,
.detail-side {
    padding: 28px;
    position: sticky;
    top: 100px;
}

.side-panel h2,
.detail-side h2,
.player-card h2,
.text-panel h2 {
    margin: 0 0 18px;
    color: var(--ink);
}

.side-search {
    align-items: stretch;
    flex-direction: column;
}

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

.side-chips {
    margin-top: 20px;
}

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

.rank-list.small {
    gap: 12px;
}

.list-card {
    display: grid;
    grid-template-columns: 48px 150px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 14px;
}

.list-rank {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.list-rank.soft {
    background: linear-gradient(135deg, var(--teal-bright), var(--blue));
}

.list-cover {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 14px;
    background: #0f172a;
}

.page-main,
.detail-main {
    min-height: 60vh;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 54px;
    background: radial-gradient(circle at top left, rgba(20, 184, 166, 0.22), transparent 36%), linear-gradient(135deg, #f8fafc, #ecfeff 48%, #eff6ff);
}

.page-hero.simple::after,
.page-hero.category-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: #64748b;
    font-size: 14px;
}

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

.page-filter-bar {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.page-filter-input {
    width: min(680px, 100%);
    padding: 14px 18px;
}

.filter-chip {
    border: 0;
    cursor: pointer;
}

.filter-chip.active {
    color: #ffffff;
    background: linear-gradient(90deg, var(--teal-bright), var(--blue));
}

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

.category-card-large {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 22px;
    padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-thumb-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.category-thumb-stack img {
    width: 100%;
    height: 86px;
    object-fit: cover;
    border-radius: 12px;
    background: #0f172a;
}

.category-card-large h2 {
    margin: 0 0 10px;
    color: var(--ink);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: #020617;
}

.detail-backdrop,
.detail-backdrop img,
.detail-backdrop span {
    position: absolute;
    inset: 0;
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px);
    transform: scale(1.08);
    opacity: 0.48;
}

.detail-backdrop span {
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.72), rgba(15, 118, 110, 0.34));
}

.detail-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.detail-cover {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    aspect-ratio: 3 / 4;
    background: #0f172a;
}

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

.detail-info h1,
.detail-info .breadcrumb,
.detail-one-line,
.detail-info .detail-meta,
.detail-tags a {
    color: #ffffff;
}

.detail-info h1 {
    margin-bottom: 18px;
    font-size: clamp(36px, 5vw, 66px);
}

.detail-one-line {
    max-width: 800px;
    margin: 0 0 20px;
    color: #dbeafe;
    font-size: 20px;
    line-height: 1.8;
}

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

.detail-meta span {
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
}

.detail-tags a {
    background: rgba(15, 118, 110, 0.35);
    border-color: rgba(94, 234, 212, 0.4);
}

.detail-info .btn {
    margin-top: 28px;
}

.player-card {
    overflow: hidden;
}

.video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    background: #020617;
    aspect-ratio: 16 / 9;
}

.main-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #020617;
    object-fit: contain;
}

.video-trigger {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.18), rgba(2, 6, 23, 0.18));
}

.video-trigger span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 34px;
    background: linear-gradient(135deg, var(--teal-bright), var(--blue));
    box-shadow: 0 20px 50px rgba(20, 184, 166, 0.32);
}

.video-trigger.hidden {
    display: none;
}

.player-card h2,
.player-card p {
    padding-left: 24px;
    padding-right: 24px;
}

.player-card h2 {
    padding-top: 24px;
}

.player-card p {
    margin: 0;
    padding-bottom: 24px;
    color: var(--muted);
    line-height: 1.8;
}

.detail-side dl {
    margin: 0;
    display: grid;
    gap: 16px;
}

.detail-side dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
}

.detail-side dt {
    color: #64748b;
}

.detail-side dd {
    margin: 0;
    text-align: right;
    font-weight: 800;
}

.side-link {
    margin-top: 24px;
}

.article-wrap {
    display: grid;
    gap: 22px;
}

.text-panel {
    padding: 30px;
}

.text-panel p {
    margin: 0;
    color: #334155;
    line-height: 2;
    font-size: 17px;
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(135deg, #0f172a, #164e63 62%, #0f766e);
}

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

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

.footer-brand p {
    margin: 0;
    line-height: 1.8;
}

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

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #cbd5e1;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px;
    text-align: center;
    color: #94a3b8;
}

@keyframes pulseMark {
    0%, 100% {
        box-shadow: 0 0 0 8px rgba(20, 184, 166, 0.12), 0 12px 28px rgba(37, 99, 235, 0.25);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(20, 184, 166, 0.06), 0 16px 34px rgba(37, 99, 235, 0.32);
    }
}

@media (max-width: 1180px) {
    .main-nav .nav-link-soft {
        display: none;
    }

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

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .header-inner {
        height: 68px;
    }

    .hero {
        height: 640px;
    }

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

    .two-column,
    .detail-content-grid,
    .footer-inner,
    .category-list-large,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-cover {
        width: min(320px, 100%);
    }

    .side-panel,
    .detail-side {
        position: static;
    }
}

@media (max-width: 640px) {
    .container,
    .header-inner,
    .hero-content,
    .footer-inner,
    .mobile-panel {
        width: min(100% - 22px, 1180px);
    }

    .logo-text {
        font-size: 19px;
    }

    .hero {
        height: 620px;
        min-height: 620px;
    }

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

    .hero p,
    .detail-one-line {
        font-size: 16px;
    }

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

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

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

    .list-card {
        grid-template-columns: 42px 100px minmax(0, 1fr);
        gap: 12px;
    }

    .list-content p {
        display: none;
    }

    .category-card-large {
        grid-template-columns: 1fr;
    }

    .detail-hero {
        padding: 44px 0;
    }

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

    .video-trigger span {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}
