* {
    box-sizing: border-box;
}

:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --blue-700: #1d4ed8;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --cyan-500: #06b6d4;
    --red-500: #ef4444;
    --green-500: #22c55e;
    --purple-500: #a855f7;
    --radius-xl: 24px;
    --radius-lg: 18px;
    --shadow-card: 0 20px 50px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #182235;
    background: #f8fafc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--slate-900), var(--slate-800));
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.32);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue-500), var(--cyan-500));
    border-radius: 12px;
    box-shadow: 0 12px 22px rgba(37, 99, 235, 0.36);
    font-size: 14px;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.78);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 15px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
}

.header-search {
    display: flex;
    align-items: center;
    width: min(360px, 28vw);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    overflow: hidden;
}

.header-search input,
.mobile-panel input,
.hero-search input,
.rank-search input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: inherit;
    background: transparent;
}

.header-search input {
    color: #ffffff;
    padding: 9px 14px;
}

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

.header-search button,
.mobile-panel button,
.hero-search button,
.rank-search button {
    border: 0;
    color: #ffffff;
    background: var(--blue-600);
    padding: 9px 16px;
    cursor: pointer;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    padding: 0 16px 16px;
    background: var(--slate-900);
}

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

.mobile-panel a {
    color: #ffffff;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.mobile-panel form {
    display: flex;
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
}

.mobile-panel input {
    color: #ffffff;
    padding: 12px;
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800), var(--slate-700));
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.54), rgba(2, 6, 23, 0.18));
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(680px, 92%);
    color: #ffffff;
}

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

.hero-tags span {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 700;
}

.hero-tags span:first-child {
    background: var(--blue-600);
    border-color: var(--blue-600);
}

.hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(44px, 8vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero p {
    max-width: 620px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(18px, 2.4vw, 26px);
}

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

.primary-button,
.ghost-button,
.section-more,
.rank-watch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #ffffff;
    background: var(--blue-600);
    padding: 14px 26px;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.34);
}

.primary-button:hover,
.rank-watch:hover {
    transform: translateY(-2px);
    background: var(--blue-700);
}

.ghost-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 13px 25px;
    backdrop-filter: blur(10px);
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    font-size: 38px;
    line-height: 1;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

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

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

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

.section-block,
.category-strip {
    padding: 72px 0;
}

.section-block.alt,
.category-strip,
.ranking-preview {
    background: #ffffff;
}

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

.section-heading.compact {
    margin-bottom: 22px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-600);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.section-heading h2,
.ranking-copy h2,
.article-block h2,
.side-card h2,
.player-section h2 {
    margin: 6px 0 0;
    color: #0f172a;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.12;
}

.section-more {
    color: var(--blue-600);
    background: #eff6ff;
    padding: 10px 17px;
}

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

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

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

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.22);
    box-shadow: var(--shadow-card);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--slate-900);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.04));
    opacity: 0.86;
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.92);
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.poster-label {
    position: absolute;
    left: 14px;
    bottom: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.card-body {
    padding: 18px;
}

.card-meta {
    margin-bottom: 8px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.card-meta span {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    background: #f1f5f9;
    border-radius: 999px;
}

.movie-card h2,
.rank-info h2 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.3;
}

.movie-card h2 a:hover,
.rank-info h2 a:hover {
    color: var(--blue-600);
}

.movie-card p,
.rank-info p,
.category-card-large p,
.ranking-copy p,
.page-hero p,
.detail-copy p,
.article-block p,
.footer-grid p {
    margin: 0;
    color: #64748b;
}

.card-tags {
    margin-top: 12px;
    color: var(--blue-600);
    font-size: 13px;
    font-weight: 800;
}

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

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

.category-tile,
.category-card-large a {
    display: grid;
    gap: 9px;
    min-height: 126px;
    padding: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile:hover,
.category-card-large a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.category-tile span,
.category-card-large span {
    font-size: 22px;
    font-weight: 900;
}

.category-tile small,
.category-card-large p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.ranking-preview {
    padding: 72px 0;
}

.ranking-preview-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: center;
}

.ranking-copy {
    padding: 38px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.ranking-copy h2,
.ranking-copy p {
    color: #ffffff;
}

.ranking-copy p {
    margin: 16px 0 24px;
    color: rgba(255, 255, 255, 0.75);
}

.ranking-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-list a {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.ranking-list span,
.rank-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red-500), #f97316);
    border-radius: 14px;
    font-weight: 900;
}

.ranking-list strong {
    color: #0f172a;
}

.ranking-list em {
    color: #64748b;
    font-style: normal;
    font-size: 13px;
}

.page-hero {
    padding: 72px 0;
    color: #ffffff;
    background: linear-gradient(90deg, var(--slate-900), var(--slate-800));
}

.page-hero h1 {
    margin: 8px 0 12px;
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.06;
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 18px;
}

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

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

.breadcrumb.light {
    color: rgba(255, 255, 255, 0.72);
}

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

.filter-panel {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr) auto;
    gap: 12px;
    margin-bottom: 28px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.filter-panel label {
    display: grid;
    gap: 7px;
    color: #475569;
    font-size: 13px;
    font-weight: 900;
}

.filter-panel input,
.filter-panel select {
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 11px 12px;
}

.filter-panel button {
    align-self: end;
    border: 0;
    color: #ffffff;
    background: var(--slate-800);
    border-radius: 12px;
    padding: 12px 18px;
    cursor: pointer;
}

.empty-result {
    display: none;
    margin-top: 22px;
    padding: 22px;
    text-align: center;
    color: #64748b;
    background: #ffffff;
    border-radius: 16px;
}

.empty-result.is-visible {
    display: block;
}

.search-hero .container {
    display: grid;
    gap: 16px;
}

.hero-search,
.rank-search {
    display: flex;
    width: min(720px, 100%);
    margin-top: 16px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
}

.hero-search input,
.rank-search input {
    padding: 15px 20px;
    color: #0f172a;
}

.search-results {
    display: grid;
    gap: 18px;
}

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 230px 1fr;
}

.movie-card-horizontal .poster-link {
    height: 100%;
    aspect-ratio: auto;
}

.movie-card-horizontal .card-body {
    padding: 22px;
}

.rank-container {
    display: grid;
    gap: 20px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 58px 154px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.rank-thumb {
    display: block;
    overflow: hidden;
    height: 94px;
    background: var(--slate-900);
    border-radius: 14px;
}

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

.rank-watch {
    color: #ffffff;
    background: var(--blue-600);
    padding: 10px 18px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    color: #ffffff;
    background: var(--slate-900);
}

.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    transform: scale(1.04);
}

.detail-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.66), rgba(2, 6, 23, 0.40));
}

.detail-hero-inner {
    position: relative;
    padding: 42px 0 58px;
}

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

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.5);
}

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

.detail-copy h1 {
    margin: 18px 0 16px;
    font-size: clamp(40px, 7vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.detail-copy p {
    max-width: 760px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
}

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

.detail-content,
.detail-sidebar {
    display: grid;
    gap: 22px;
}

.player-section,
.article-block,
.side-card {
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.player-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 18px;
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: #000000;
    cursor: pointer;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

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

.player-cover-mask {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.45);
}

.player-icon {
    position: absolute;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    color: #ffffff;
    background: rgba(37, 99, 235, 0.92);
    border-radius: 999px;
    box-shadow: 0 20px 42px rgba(37, 99, 235, 0.36);
    font-size: 30px;
}

.player-status {
    position: absolute;
    left: 18px;
    bottom: 16px;
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.article-block h2,
.side-card h2 {
    margin-bottom: 14px;
    font-size: 24px;
}

.article-block p {
    color: #334155;
    font-size: 17px;
}

.side-card dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px 12px;
    margin: 0;
}

.side-card dt {
    color: #64748b;
    font-weight: 900;
}

.side-card dd {
    margin: 0;
    color: #0f172a;
}

.tag-list span {
    color: var(--blue-700);
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 900;
}

.site-footer {
    color: rgba(255, 255, 255, 0.75);
    background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px;
    padding: 48px 0;
}

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

.footer-grid p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.64);
}

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

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

.footer-bottom {
    padding: 18px 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.52);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

    .menu-toggle {
        display: grid;
        place-items: center;
    }

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

    .ranking-preview-inner,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .hero {
        height: 560px;
    }

    .hero-arrow {
        display: none;
    }

    .section-block,
    .category-strip,
    .ranking-preview {
        padding: 48px 0;
    }

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

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

    .movie-card-horizontal,
    .rank-row,
    .detail-panel {
        grid-template-columns: 1fr;
    }

    .movie-card-horizontal .poster-link {
        aspect-ratio: 16 / 10;
    }

    .rank-thumb {
        height: 180px;
    }

    .rank-watch,
    .rank-number {
        width: 100%;
    }

    .filter-panel {
        grid-template-columns: 1fr;
    }

    .hero-search,
    .rank-search {
        border-radius: 18px;
        flex-direction: column;
    }

    .hero-search button,
    .rank-search button {
        padding: 13px 16px;
    }

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

    .detail-copy p {
        font-size: 17px;
    }
}

@media (max-width: 460px) {
    .brand-text {
        display: none;
    }

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

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

    .hero-actions {
        display: grid;
    }
}
