:root {
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.76);
    --panel-solid: #0f172a;
    --panel-soft: rgba(30, 41, 59, 0.72);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --dim: #94a3b8;
    --amber: #fbbf24;
    --amber-strong: #f59e0b;
    --rose: #f43f5e;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34rem),
        radial-gradient(circle at 85% 10%, rgba(244, 63, 94, 0.10), transparent 28rem),
        linear-gradient(180deg, #020617 0%, #0f172a 44%, #020617 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

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

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

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    color: #111827;
    background: linear-gradient(135deg, #fbbf24, #fde68a);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(251, 191, 36, 0.24);
}

.brand-name {
    max-width: 16em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

.nav-link,
.mobile-link {
    color: var(--muted);
    padding: 10px 14px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--amber);
    background: rgba(251, 191, 36, 0.10);
}

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

.header-search input,
.mobile-search input,
.local-tools input,
.search-panel input {
    color: var(--text);
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.24);
    outline: none;
    border-radius: 999px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

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

.header-search input:focus,
.mobile-search input:focus,
.local-tools input:focus,
.search-panel input:focus {
    border-color: rgba(251, 191, 36, 0.8);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.10);
}

.header-search button,
.mobile-search button {
    cursor: pointer;
    color: #111827;
    background: var(--amber);
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    color: var(--text);
    background: rgba(148, 163, 184, 0.14);
    border: 1px solid var(--line);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.95);
}

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

.mobile-search input {
    flex: 1;
    padding: 10px 14px;
}

.hero-carousel {
    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.9s ease;
}

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.08) contrast(1.02);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(15, 23, 42, 0.68) 42%, rgba(15, 23, 42, 0.24) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.35) 45%, rgba(2, 6, 23, 0.62) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 380px);
    gap: 48px;
    align-items: end;
    padding: 120px 0 86px;
}

.hero-copy h1 {
    max-width: 780px;
    margin: 16px 0 18px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.95;
    font-weight: 950;
    letter-spacing: -0.06em;
    text-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}

.hero-copy p {
    max-width: 760px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 22px);
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
}

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

.hero-tags span,
.movie-tags span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    color: #111827;
    background: rgba(251, 191, 36, 0.92);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
}

.movie-tags span:nth-child(n+2),
.detail-tags span:nth-child(n+2) {
    color: var(--amber);
    background: rgba(251, 191, 36, 0.10);
    border: 1px solid rgba(251, 191, 36, 0.16);
}

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

.primary-button,
.ghost-button,
.text-button,
.section-more,
.inline-link,
.pill-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 850;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.primary-button {
    color: #111827;
    background: var(--amber);
    padding: 13px 22px;
    box-shadow: 0 16px 40px rgba(251, 191, 36, 0.24);
}

.ghost-button {
    color: var(--text);
    background: rgba(15, 23, 42, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 12px 20px;
}

.text-button,
.section-more,
.inline-link {
    color: var(--amber);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover,
.section-more:hover,
.inline-link:hover,
.pill-link:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow);
    aspect-ratio: 2 / 3;
    align-self: end;
}

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

.hero-poster span {
    position: absolute;
    right: 18px;
    top: 18px;
    padding: 7px 12px;
    color: #111827;
    background: var(--amber);
    border-radius: 999px;
    font-weight: 900;
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--text);
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

.hero-control:hover {
    color: #111827;
    background: var(--amber);
}

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

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

.hero-dot.is-active {
    width: 34px;
    background: var(--amber);
}

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

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

.panel-section {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 44px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.80), rgba(30, 41, 59, 0.45));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

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

.eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--amber);
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading h2,
.page-hero h1,
.detail-content h1,
.ranking-head h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p {
    max-width: 720px;
    margin: 8px 0 0;
    color: var(--dim);
}

.movie-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.62);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, border 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.44);
    background: rgba(15, 23, 42, 0.88);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: rgba(15, 23, 42, 0.86);
}

.large-card .poster-wrap {
    aspect-ratio: 16 / 10;
}

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

.movie-card:hover .poster-wrap img,
.movie-row:hover .row-poster img,
.ranking-card:hover .ranking-cover img {
    transform: scale(1.08);
}

.rating-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 5px 9px;
    color: #111827;
    background: var(--amber);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.movie-card-body {
    padding: 16px;
}

.movie-title {
    margin: 12px 0 8px;
    color: var(--text);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.28;
}

.movie-title a:hover,
.row-body h3 a:hover,
.ranking-card h2 a:hover {
    color: var(--amber);
}

.movie-meta,
.movie-line {
    margin: 0;
    color: var(--dim);
    font-size: 13px;
}

.movie-line {
    display: -webkit-box;
    margin-top: 10px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

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

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

.category-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.76));
}

.category-card > a {
    display: block;
    min-height: 170px;
    padding: 24px;
}

.category-card span {
    display: block;
    color: var(--amber);
    font-size: 22px;
    font-weight: 950;
}

.category-card p {
    margin: 12px 0 0;
    color: var(--muted);
}

.category-samples {
    display: grid;
    gap: 8px;
    padding: 0 24px 24px;
}

.category-samples a {
    color: var(--dim);
    font-size: 14px;
}

.category-samples a:hover {
    color: var(--amber);
}

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

.ranking-panel {
    position: sticky;
    top: 96px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.82);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.20);
}

.ranking-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ranking-head span {
    color: var(--amber);
    font-weight: 950;
}

.ranking-head a {
    color: var(--amber);
    font-size: 14px;
    font-weight: 800;
}

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

.rank-link {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.44);
}

.rank-link:hover {
    background: rgba(251, 191, 36, 0.10);
}

.rank-number {
    color: var(--amber);
    font-weight: 950;
}

.rank-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 850;
}

.rank-meta {
    color: var(--dim);
    font-size: 12px;
}

.page-main {
    padding-bottom: 80px;
}

.page-hero {
    margin: 48px 0 26px;
    padding: 54px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.16), transparent 28rem),
        linear-gradient(135deg, rgba(15, 23, 42, 0.90), rgba(30, 41, 59, 0.54));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.compact-hero h1 {
    max-width: 900px;
}

.local-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.local-tools input {
    width: min(460px, 100%);
    padding: 13px 18px;
}

.local-tools a {
    color: var(--amber);
    font-weight: 850;
}

.search-panel {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.72);
}

.search-panel input {
    width: 100%;
    padding: 14px 18px;
}

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

.filter-button {
    cursor: pointer;
    color: var(--muted);
    background: rgba(30, 41, 59, 0.78);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 13px;
}

.filter-button:hover,
.filter-button.is-active {
    color: #111827;
    background: var(--amber);
    border-color: var(--amber);
}

.empty-state {
    margin: 36px 0 0;
    padding: 24px;
    color: var(--muted);
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.72);
}

.ranking-page {
    display: grid;
    gap: 18px;
}

.ranking-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 22px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(15, 23, 42, 0.68);
}

.ranking-cover {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 2 / 3;
}

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

.ranking-cover span {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 6px 10px;
    color: #111827;
    background: var(--amber);
    border-radius: 999px;
    font-weight: 950;
}

.ranking-card h2 {
    margin: 10px 0 8px;
    font-size: 24px;
}

.ranking-card p {
    color: var(--muted);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 30px 0 18px;
    color: var(--dim);
    font-size: 14px;
}

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

.player-section {
    margin-bottom: 34px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    background: #000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: #000;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.56;
    filter: saturate(1.08);
}

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

.play-symbol {
    position: absolute;
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    padding-left: 6px;
    color: #111827;
    background: var(--amber);
    border-radius: 999px;
    font-size: 38px;
    box-shadow: 0 18px 50px rgba(251, 191, 36, 0.28);
}

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

.detail-content,
.detail-side,
.side-box {
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.72);
    border-radius: 28px;
}

.detail-content {
    padding: 34px;
}

.detail-content h1 {
    margin: 18px 0 14px;
}

.detail-lead {
    color: var(--muted);
    font-size: 18px;
}

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

.detail-meta-grid div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(30, 41, 59, 0.48);
}

.detail-meta-grid span {
    display: block;
    color: var(--dim);
    font-size: 12px;
}

.detail-meta-grid strong {
    display: block;
    margin-top: 6px;
    color: var(--text);
}

.detail-content section {
    margin-top: 30px;
}

.detail-content h2 {
    margin: 0 0 12px;
    color: var(--amber);
    font-size: 24px;
}

.detail-content p {
    color: var(--muted);
}

.detail-side {
    padding: 16px;
}

.side-poster {
    display: block;
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 2 / 3;
}

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

.side-box {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    padding: 18px;
}

.side-box h2 {
    margin: 0 0 4px;
    font-size: 20px;
}

.pill-link {
    color: var(--amber);
    border: 1px solid rgba(251, 191, 36, 0.24);
    background: rgba(251, 191, 36, 0.08);
    padding: 10px 14px;
}

.related-section {
    padding-top: 44px;
}

.site-footer {
    margin-top: 70px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.78);
}

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

.footer-brand {
    color: var(--text);
    font-size: 22px;
}

.site-footer p {
    max-width: 560px;
    color: var(--dim);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.footer-links a {
    color: var(--muted);
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
}

.footer-links a:hover {
    color: var(--amber);
}

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

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

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

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

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

    .ranking-panel {
        position: static;
    }
}

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

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

    .header-inner {
        min-height: 64px;
    }

    .brand-name {
        max-width: 11em;
    }

    .hero-carousel {
        height: auto;
        min-height: 680px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: center;
        padding: 86px 0 84px;
    }

    .hero-poster {
        width: min(260px, 76vw);
    }

    .hero-control {
        display: none;
    }

    .section-heading,
    .local-tools,
    .footer-inner {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
    }

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

    .panel-section,
    .page-hero,
    .detail-content {
        padding: 24px;
        border-radius: 24px;
    }

    .large-grid,
    .four-grid,
    .six-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .ranking-card {
        grid-template-columns: 108px minmax(0, 1fr);
    }

    .rank-link {
        grid-template-columns: 38px 1fr;
    }

    .rank-meta {
        display: none;
    }

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

    .player-shell {
        border-radius: 22px;
    }

    .play-symbol {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 460px) {
    .large-grid,
    .four-grid,
    .six-grid {
        grid-template-columns: 1fr;
    }

    .movie-card-body {
        padding: 14px;
    }

    .hero-copy h1 {
        font-size: 40px;
    }
}
