:root {
    --bg: #fff7fb;
    --panel: rgba(255, 255, 255, 0.88);
    --text: #16151c;
    --muted: #6b6472;
    --line: rgba(25, 19, 31, 0.1);
    --pink: #ec4899;
    --yellow: #f59e0b;
    --green: #22c55e;
    --shadow: 0 24px 70px rgba(142, 67, 106, 0.18);
    --radius: 28px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 0%, rgba(236, 72, 153, 0.18), transparent 32rem),
        radial-gradient(circle at 92% 8%, rgba(245, 158, 11, 0.16), transparent 28rem),
        linear-gradient(180deg, #fffaf1 0%, #fff7fb 42%, #f7fff9 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body.menu-open {
    overflow: hidden;
}

img {
    object-fit: cover;
}

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

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text);
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--yellow), var(--pink), var(--green));
    box-shadow: 0 14px 30px rgba(236, 72, 153, 0.25);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a,
.mobile-nav a {
    color: #4a4453;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--pink);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.mobile-nav.is-open {
    display: grid;
    gap: 14px;
}

.hero {
    position: relative;
    width: min(1240px, calc(100% - 32px));
    min-height: 660px;
    margin: 28px auto 0;
    overflow: hidden;
    border-radius: 38px;
    background: #111111;
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: none;
    min-height: 660px;
}

.hero-slide.is-active {
    display: block;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: saturate(1.05);
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 10, 18, 0.88), rgba(12, 10, 18, 0.46), rgba(12, 10, 18, 0.16)),
        linear-gradient(0deg, rgba(12, 10, 18, 0.82), transparent 56%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 660px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 56px;
    padding: 76px clamp(28px, 7vw, 92px) 120px;
}

.hero-copy {
    max-width: 680px;
    color: #ffffff;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    padding: 7px 13px;
    border-radius: 999px;
    color: #db2777;
    background: rgba(252, 231, 243, 0.96);
    font-size: 13px;
    font-weight: 900;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin-top: 20px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.075em;
}

.hero-copy p {
    max-width: 620px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
    line-height: 1.8;
}

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

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    padding: 6px 11px;
    border-radius: 999px;
    color: #7c2d12;
    background: rgba(254, 243, 199, 0.94);
    font-size: 12px;
    font-weight: 800;
}

.hero-actions,
.detail-copy .btn {
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(236, 72, 153, 0.22);
}

.btn.primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--yellow));
}

.btn.light {
    color: #211826;
    background: rgba(255, 255, 255, 0.92);
}

.btn.wide {
    width: 100%;
    margin-top: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--yellow));
}

.hero-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    height: 100%;
}

.hero-poster span,
.play-dot,
.player-cover span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--yellow));
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.35);
}

.hero-poster span {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    font-size: 24px;
}

.hero-toolbar {
    position: absolute;
    z-index: 5;
    left: clamp(24px, 7vw, 92px);
    right: clamp(24px, 7vw, 92px);
    bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hero-search,
.filter-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.hero-search input,
.filter-search input {
    width: min(420px, 52vw);
    padding: 0 12px;
    color: #221827;
    outline: none;
    background: transparent;
}

.hero-search button,
.filter-search button,
.filter-buttons button {
    min-height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--yellow));
    font-weight: 900;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

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

.soft-panel {
    width: min(1240px, calc(100% - 32px));
    padding: 64px clamp(20px, 5vw, 60px);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: var(--shadow);
}

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

.section-head h2,
.ranking-panel h2,
.side-feature-panel h2 {
    margin-top: 12px;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 950;
    letter-spacing: -0.055em;
}

.section-head p {
    max-width: 640px;
    margin-top: 10px;
    color: var(--muted);
}

.section-more,
.text-link {
    color: var(--pink);
    font-weight: 900;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(142, 67, 106, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 58px rgba(142, 67, 106, 0.2);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.16), rgba(245, 158, 11, 0.14));
}

.poster-link img {
    width: 100%;
    height: 100%;
    transition: transform 0.28s ease;
}

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

.score-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 17, 17, 0.72);
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.play-dot {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
}

.movie-body {
    padding: 18px;
}

.movie-meta {
    color: var(--pink);
    font-size: 12px;
    font-weight: 900;
}

.movie-body h3 {
    margin-top: 8px;
    color: #18151d;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 950;
}

.movie-body p {
    min-height: 52px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

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

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

.category-card {
    min-height: 246px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(142, 67, 106, 0.12);
}

.category-card strong {
    display: block;
    margin-top: 18px;
    font-size: 22px;
    font-weight: 950;
}

.category-card em {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-style: normal;
    line-height: 1.7;
}

.category-covers {
    display: flex;
    height: 92px;
}

.category-covers img {
    width: 76px;
    height: 92px;
    margin-right: -22px;
    border: 4px solid #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

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

.ranking-panel,
.side-feature-panel {
    position: sticky;
    top: 100px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.rank-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.rank-item {
    display: grid;
    grid-template-columns: 44px 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 247, 251, 0.8);
}

.rank-num {
    color: var(--pink);
    font-size: 19px;
    font-weight: 950;
}

.rank-item img {
    width: 54px;
    height: 72px;
    border-radius: 12px;
}

.rank-info strong,
.rank-info em {
    display: block;
}

.rank-info strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 900;
}

.rank-info em {
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-item b {
    color: var(--yellow);
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 36px auto 0;
    padding: clamp(42px, 7vw, 82px);
    border-radius: 36px;
    background:
        radial-gradient(circle at 80% 10%, rgba(34, 197, 94, 0.16), transparent 28rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 250, 0.72));
    box-shadow: var(--shadow);
}

.page-hero p {
    max-width: 760px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.filter-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 30px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 16px 38px rgba(142, 67, 106, 0.1);
}

.filter-search {
    box-shadow: none;
    border: 1px solid var(--line);
}

.filter-search input {
    width: min(360px, 44vw);
}

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

.filter-buttons button {
    color: #5d5162;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px var(--line);
}

.filter-buttons button.active,
.filter-buttons button:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--yellow));
    box-shadow: none;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(142, 67, 106, 0.12);
}

.category-preview {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 190px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.16), rgba(245, 158, 11, 0.14));
}

.category-preview img {
    width: 100%;
    height: 100%;
}

.category-overview-card h2 {
    margin-top: 12px;
    font-size: 28px;
    font-weight: 950;
}

.category-overview-card p {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.75;
}

.category-overview-card .tag-row {
    margin-top: 16px;
}

.category-overview-card .text-link {
    display: inline-block;
    margin-top: 18px;
}

.mini-feature-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.mini-feature {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 170px;
    border-radius: 22px;
    background: #111111;
}

.mini-feature img {
    width: 100%;
    height: 100%;
    opacity: 0.78;
}

.mini-feature span {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    color: #ffffff;
    font-weight: 900;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    color: #ffffff;
    background: #111111;
}

.detail-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(4px) saturate(1.05);
    transform: scale(1.08);
}

.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 8, 15, 0.93), rgba(10, 8, 15, 0.62)),
        linear-gradient(0deg, rgba(10, 8, 15, 0.96), rgba(10, 8, 15, 0.2));
}

.detail-wrap {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 80px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

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

.detail-main {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: clamp(30px, 7vw, 70px);
    align-items: center;
    margin-top: 40px;
}

.detail-poster {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 32px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.36);
}

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

.detail-copy .lead {
    max-width: 820px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
    line-height: 1.8;
}

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

.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.detail-stats span {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.1);
}

.detail-stats b {
    color: #fde68a;
    font-size: 22px;
}

.detail-section {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 30px;
    align-items: start;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    background: #08070a;
    box-shadow: var(--shadow);
}

.movie-video,
.player-cover,
.player-cover img {
    width: 100%;
    height: 100%;
}

.movie-video {
    position: absolute;
    inset: 0;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #000000;
}

.player-cover img {
    position: absolute;
    inset: 0;
    opacity: 0.78;
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 0%, rgba(0, 0, 0, 0.38) 62%, rgba(0, 0, 0, 0.74) 100%);
}

.player-cover span {
    position: relative;
    z-index: 3;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    font-size: 32px;
}

.player-shell.is-playing .player-cover {
    display: none;
}

.detail-text {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 45px rgba(142, 67, 106, 0.12);
}

.detail-text h2 {
    margin-top: 24px;
    font-size: 24px;
    font-weight: 950;
}

.detail-text h2:first-child {
    margin-top: 0;
}

.detail-text p {
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.9;
}

.full-rank {
    margin-top: 0;
}

.full-rank .rank-item {
    grid-template-columns: 54px 74px minmax(0, 1fr) auto;
    padding: 14px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
}

.full-rank .rank-item img {
    width: 74px;
    height: 98px;
}

.side-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
}

.side-grid .movie-card:nth-child(n + 7) {
    display: none;
}

.site-footer {
    margin-top: 50px;
    padding: 58px 0 34px;
    background: rgba(255, 255, 255, 0.76);
    border-top: 1px solid var(--line);
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 180px;
    gap: 40px;
}

.footer-grid p {
    max-width: 420px;
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-grid h3 {
    margin-bottom: 14px;
    font-weight: 950;
}

.footer-grid a:not(.brand) {
    display: block;
    margin-top: 9px;
    color: var(--muted);
}

.footer-grid a:not(.brand):hover {
    color: var(--pink);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding-top: 24px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

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

@media (max-width: 1080px) {
    .hero-content,
    .split-layout,
    .detail-section,
    .rank-page-layout {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }

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

    .ranking-panel,
    .side-feature-panel {
        position: relative;
        top: auto;
    }

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

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

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

    .hero,
    .hero-slide,
    .hero-content {
        min-height: 650px;
    }

    .hero-content {
        padding: 48px 22px 142px;
    }

    .hero-toolbar,
    .filter-panel,
    .section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-search,
    .filter-search {
        width: 100%;
    }

    .hero-search input,
    .filter-search input {
        width: 100%;
        min-width: 0;
    }

    .hero-dots {
        justify-content: center;
    }

    .movie-grid,
    .featured-grid,
    .compact-grid,
    .library-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .movie-body {
        padding: 14px;
    }

    .movie-body h3 {
        font-size: 16px;
    }

    .movie-body p {
        min-height: auto;
        font-size: 13px;
    }

    .category-overview-card,
    .detail-main,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-preview {
        min-height: 150px;
    }

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

    .detail-main {
        gap: 24px;
    }

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

    .full-rank .rank-item,
    .rank-item {
        grid-template-columns: 38px 54px minmax(0, 1fr);
    }

    .rank-item b {
        display: none;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 17px;
    }

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

    .movie-grid,
    .featured-grid,
    .compact-grid,
    .library-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

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