:root {
    --bg: #f7fbff;
    --text: #172033;
    --muted: #65758b;
    --line: rgba(91, 130, 170, 0.18);
    --primary: #0891b2;
    --primary-dark: #2563eb;
    --accent: #facc15;
    --card: #ffffff;
    --shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.96), rgba(37, 99, 235, 0.96), rgba(20, 184, 166, 0.96));
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #0f5f9f;
    background: #ffffff;
    box-shadow: inset 0 -5px 12px rgba(14, 165, 233, 0.2);
}

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

.brand-text strong {
    font-size: 22px;
    letter-spacing: 0.03em;
}

.brand-text small {
    font-size: 12px;
    opacity: 0.9;
}

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

.nav-link {
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0f5f9f;
    background: #ffffff;
}

.header-search {
    display: flex;
    align-items: center;
    width: min(290px, 28vw);
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.header-search input,
.mobile-search input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    padding: 9px 12px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.header-search button,
.mobile-search button {
    border: 0;
    cursor: pointer;
    color: #0f5f9f;
    background: #ffffff;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding: 16px 16px 20px;
}

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

.mobile-search {
    display: flex;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.mobile-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.mobile-link {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
}

.hero {
    position: relative;
    height: clamp(520px, 70vh, 720px);
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #22d3ee, #2563eb 52%, #7c3aed);
}

.hero::after,
.gradient-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.28) 12.5%, transparent 12.5%, transparent 50%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0.28) 62.5%, transparent 62.5%, transparent 100%);
    background-size: 42px 42px;
    pointer-events: none;
}

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

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

.hero-bg,
.detail-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-img,
.detail-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 34%, rgba(34, 211, 238, 0.18), transparent 30%), linear-gradient(90deg, rgba(2, 6, 23, 0.85), rgba(15, 23, 42, 0.56) 45%, rgba(59, 130, 246, 0.28));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-info h1 {
    margin: 12px 0 16px;
    font-size: clamp(40px, 7vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.hero-desc {
    width: min(720px, 100%);
    max-height: 130px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(16px, 2vw, 20px);
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    color: #ffffff;
    background: rgba(6, 182, 212, 0.86);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

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

.primary-btn,
.ghost-btn,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 900;
    transition: 0.25s ease;
}

.primary-btn {
    color: #155e75;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.primary-btn:hover {
    color: #1d4ed8;
    background: var(--accent);
    transform: translateY(-2px) scale(1.02);
}

.primary-btn.light {
    color: #1d4ed8;
}

.ghost-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.ghost-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
}

.hero-dot.active {
    width: 28px;
    border-radius: 999px;
    background: #ffffff;
}

.section {
    padding: 76px 0;
}

.section-soft {
    background: linear-gradient(180deg, #f8fbff, #ffffff);
}

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

.section-head.compact {
    align-items: center;
}

.section-head h2,
.panel-head h2,
.content-panel h2 {
    margin: 4px 0 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.section-head p,
.page-hero p,
.content-panel p,
.site-footer p {
    margin: 8px 0 0;
    color: var(--muted);
}

.section-more {
    color: #0f5f9f;
    background: #e0f7ff;
}

.section-more:hover {
    color: #ffffff;
    background: var(--primary-dark);
}

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

.featured-card {
    position: relative;
    min-height: 330px;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #0f172a;
    transition: 0.3s ease;
}

.featured-card:hover,
.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.featured-poster,
.featured-poster .poster-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.featured-poster .poster-img {
    object-fit: cover;
    transition: transform 0.55s ease;
}

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

.featured-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.88));
}

.featured-content {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    color: #ffffff;
}

.featured-content strong {
    font-size: 24px;
    line-height: 1.2;
}

.featured-content em {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-style: normal;
}

.meta-line {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

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

.category-card,
.category-overview-link {
    position: relative;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 22px;
    padding: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, #06b6d4, #2563eb 58%, #7c3aed);
    box-shadow: var(--soft-shadow);
}

.category-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    top: -50px;
    right: -40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.category-name {
    position: relative;
    z-index: 1;
    font-size: 23px;
    font-weight: 900;
}

.category-desc,
.category-sample {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 20px;
    background: var(--card);
    box-shadow: var(--soft-shadow);
    transition: 0.3s ease;
}

.card-link {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.card-poster {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #22d3ee, #2563eb, #7c3aed);
}

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

.poster-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    border-radius: 999px;
    padding: 5px 10px;
    color: #ffffff;
    background: rgba(8, 145, 178, 0.9);
    font-size: 12px;
    font-weight: 900;
}

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 9px;
    padding: 16px;
}

.card-title {
    font-size: 18px;
    line-height: 1.3;
}

.card-desc {
    color: var(--muted);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.card-meta span {
    border-radius: 999px;
    padding: 3px 8px;
    background: #f1f5f9;
}

.rank-panel,
.content-panel,
.player-card,
.category-overview-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.rank-panel {
    padding: 24px;
}

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

.compact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 18px;
    padding: 10px;
    background: #f8fafc;
    transition: 0.24s ease;
}

.compact-card:hover {
    background: #eefaff;
}

.rank-poster {
    width: 96px;
    height: 64px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #22d3ee, #2563eb, #7c3aed);
}

.compact-info {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.compact-info strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.cta-band {
    color: #ffffff;
    background: linear-gradient(90deg, #06b6d4, #2563eb, #7c3aed);
}

.cta-inner {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 70px 0;
    text-align: center;
}

.cta-inner h2 {
    margin: 0;
    font-size: clamp(30px, 5vw, 48px);
}

.cta-inner p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.82);
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 92px 0 80px;
}

.gradient-hero {
    background: linear-gradient(135deg, #06b6d4, #2563eb 54%, #7c3aed);
}

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

.page-hero p {
    width: min(720px, 100%);
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

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

.category-overview-card {
    overflow: hidden;
    padding: 16px;
}

.category-overview-link {
    min-height: 142px;
    margin-bottom: 12px;
}

.mini-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tool-bar {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.movie-filter-input,
.movie-sort-select {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: 0;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.movie-filter-input {
    flex: 1;
    padding: 0 18px;
}

.movie-sort-select {
    padding: 0 18px;
    color: var(--text);
}

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

.filter-chip {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    color: #0f5f9f;
    background: #e0f7ff;
    cursor: pointer;
    font-weight: 800;
}

.filter-chip.active,
.filter-chip:hover {
    color: #ffffff;
    background: var(--primary-dark);
}

.empty-state {
    display: none;
    margin-top: 32px;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    color: var(--muted);
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.empty-state.show {
    display: block;
}

.ranking-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.rank-panel.large {
    max-height: none;
}

.numbered {
    counter-reset: rank;
}

.numbered .compact-card {
    position: relative;
    padding-left: 48px;
}

.numbered .compact-card::before {
    counter-increment: rank;
    content: counter(rank);
    position: absolute;
    left: 12px;
    top: 50%;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    font-size: 13px;
    font-weight: 900;
    transform: translateY(-50%);
}

.detail-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: #ffffff;
    background: #0f172a;
}

.detail-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(15, 23, 42, 0.68) 48%, rgba(14, 165, 233, 0.26)), linear-gradient(0deg, rgba(2, 6, 23, 0.9), transparent 42%);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 38px 0 72px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

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

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

.detail-poster {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    background: linear-gradient(135deg, #22d3ee, #2563eb, #7c3aed);
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.35);
}

.detail-info h1 {
    margin-top: 8px;
}

.detail-desc {
    width: min(760px, 100%);
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.detail-meta-grid span {
    display: grid;
    gap: 3px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 13px 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.detail-meta-grid strong {
    color: var(--accent);
    font-size: 12px;
}

.player-card {
    overflow: hidden;
    background: #0f172a;
}

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.24), rgba(2, 6, 23, 1));
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.55));
    cursor: pointer;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.play-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #0f5f9f;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.26);
    font-size: 28px;
}

.player-info {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    color: #ffffff;
    background: linear-gradient(90deg, #0f172a, #164e63);
}

.player-info span {
    color: rgba(255, 255, 255, 0.72);
}

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

.content-panel {
    padding: 28px;
}

.site-footer {
    color: #cbd5e1;
    background: #0f172a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
    padding: 54px 0 32px;
}

.footer-brand {
    color: #ffffff;
    font-size: 24px;
}

.site-footer strong {
    display: block;
    color: #ffffff;
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding: 18px 16px;
    text-align: center;
    color: #94a3b8;
}

.poster-frame.is-missing {
    position: relative;
    background: linear-gradient(135deg, #06b6d4, #2563eb 55%, #7c3aed);
}

.poster-frame.is-missing::after {
    content: attr(data-title);
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 18px;
    color: #ffffff;
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.02em;
    background: radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.18), transparent 32%);
}

.is-hidden-card {
    display: none !important;
}

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

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

    .menu-toggle {
        display: block;
    }

    .featured-grid,
    .ranking-columns {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 820px) {
    .header-inner {
        min-height: 66px;
    }

    .brand-text small,
    .header-search {
        display: none;
    }

    .hero {
        height: 620px;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 40px;
    }

    .section {
        padding: 54px 0;
    }

    .section-head,
    .tool-bar,
    .player-info {
        flex-direction: column;
        align-items: stretch;
    }

    .category-grid,
    .movie-grid,
    .small-grid,
    .category-overview-grid,
    .mini-row,
    .detail-content-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-poster {
        width: min(310px, 100%);
    }

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

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

    .brand-mark {
        width: 38px;
        height: 38px;
    }

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

    .hero-actions,
    .hero-tags {
        gap: 10px;
    }

    .primary-btn,
    .ghost-btn,
    .section-more {
        width: 100%;
    }

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