:root {
    --bg: #fff7ed;
    --bg-soft: #fffbeb;
    --card: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #fed7aa;
    --orange: #ea580c;
    --amber: #f59e0b;
    --dark: #111827;
    --shadow: 0 20px 50px rgba(154, 52, 18, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 42%, #fffbeb 100%);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(253, 186, 116, 0.45);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(154, 52, 18, 0.08);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--amber));
    box-shadow: 0 14px 30px rgba(234, 88, 12, 0.28);
    transform: translateZ(0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 18px 38px rgba(234, 88, 12, 0.36);
}

.brand-copy strong {
    display: block;
    font-size: 22px;
    line-height: 1.15;
    color: transparent;
    background: linear-gradient(90deg, var(--orange), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
}

.brand-copy small {
    color: var(--muted);
    font-size: 12px;
}

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

.nav-link {
    position: relative;
    color: #374151;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), var(--amber));
    transition: width 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #fff7ed;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: #9a3412;
}

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

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

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

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

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 64px 0 76px;
    background:
        radial-gradient(circle at 15% 20%, rgba(251, 146, 60, 0.35), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(245, 158, 11, 0.25), transparent 30%),
        linear-gradient(135deg, #fff7ed 0%, #ffedd5 45%, #ffffff 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(255, 237, 213, 0.62)),
        repeating-linear-gradient(135deg, rgba(234, 88, 12, 0.08) 0 1px, transparent 1px 26px);
    pointer-events: none;
}

.hero-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: stretch;
    gap: 38px;
}

.hero-heading {
    align-self: center;
    padding: 36px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(251, 146, 60, 0.24);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-heading > span,
.page-hero span,
.section-title span,
.story-card span,
.detail-eyebrow,
.hero-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hero-heading h1 {
    margin: 22px 0 16px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: var(--dark);
}

.hero-heading p {
    margin: 0;
    color: #4b5563;
    font-size: 18px;
}

.hero-quick-links,
.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-quick-links a,
.primary-button,
.ghost-button,
.text-button {
    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, color 0.2s ease;
}

.hero-quick-links a,
.ghost-button {
    padding: 12px 18px;
    color: #9a3412;
    background: #ffffff;
    border: 1px solid #fed7aa;
}

.hero-quick-links a:hover,
.ghost-button:hover {
    transform: translateY(-2px);
    background: #fff7ed;
    box-shadow: 0 12px 30px rgba(234, 88, 12, 0.14);
}

.primary-button {
    padding: 13px 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--amber));
    box-shadow: 0 16px 34px rgba(234, 88, 12, 0.28);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(234, 88, 12, 0.34);
}

.hero-slider {
    position: relative;
    min-height: 540px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.88), rgba(124, 45, 18, 0.76)),
        linear-gradient(135deg, #111827, #7c2d12);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(24px) scale(0.98);
    transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(17, 24, 39, 0.28);
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(251, 191, 36, 0.28), transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(251, 146, 60, 0.22), transparent 28%);
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-copy h2 {
    margin: 20px 0 14px;
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.05;
}

.hero-copy p {
    margin: 0;
    max-width: 560px;
    color: #ffedd5;
    font-size: 17px;
}

.hero-tags span {
    color: #fff7ed;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
}

.hero-art {
    position: relative;
    z-index: 1;
    aspect-ratio: 3 / 4.2;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.hero-art img,
.movie-poster img,
.detail-poster img,
.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.carousel-controls button {
    pointer-events: auto;
}

.carousel-controls > button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.17);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

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

.carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
}

.carousel-dot.is-active {
    width: 28px;
    background: #ffffff;
}

.section-block {
    width: min(1180px, calc(100% - 32px));
    margin: 72px auto;
}

.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.section-title.no-link {
    display: block;
}

.section-title h2 {
    margin: 8px 0 0;
    color: var(--dark);
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.12;
}

.section-title a,
.text-button {
    color: var(--orange);
    font-weight: 900;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid rgba(253, 186, 116, 0.4);
    box-shadow: 0 12px 34px rgba(154, 52, 18, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.55);
    box-shadow: 0 22px 48px rgba(154, 52, 18, 0.16);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #ffedd5, #fff7ed);
}

.movie-poster img {
    transition: transform 0.35s ease, filter 0.35s ease;
}

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

.poster-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.72);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.movie-info {
    padding: 16px;
}

.movie-info h2 {
    margin: 8px 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.movie-info h2 a:hover,
.rank-content h2 a:hover,
.category-examples a:hover {
    color: var(--orange);
}

.movie-info p {
    margin: 0;
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #9a3412;
    font-size: 13px;
    font-weight: 800;
}

.movie-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff7ed;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-row span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #9a3412;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    font-size: 12px;
    font-weight: 800;
}

.warm-block {
    padding: 38px;
    border-radius: 34px;
    background: linear-gradient(135deg, #fff7ed, #fffbeb);
    border: 1px solid rgba(253, 186, 116, 0.55);
}

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

.category-tile,
.category-card,
.support-grid article,
.story-card,
.text-page article {
    display: block;
    padding: 24px;
    border-radius: var(--radius);
    background: #ffffff;
    border: 1px solid rgba(253, 186, 116, 0.48);
    box-shadow: 0 12px 30px rgba(154, 52, 18, 0.08);
}

.category-tile span,
.category-card-head span {
    display: block;
    color: var(--orange);
    font-size: 20px;
    font-weight: 900;
}

.category-tile strong,
.category-card p {
    display: block;
    margin: 12px 0 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

.category-tile em,
.category-card-head a {
    color: var(--orange);
    font-style: normal;
    font-weight: 900;
}

.category-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.category-examples {
    display: grid;
    gap: 8px;
}

.category-examples a {
    color: #374151;
    font-size: 14px;
    font-weight: 700;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 70px 76px minmax(0, 1fr) 104px;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(253, 186, 116, 0.4);
    box-shadow: 0 12px 30px rgba(154, 52, 18, 0.07);
}

.rank-row.top-rank {
    background: linear-gradient(135deg, #fff7ed, #ffffff);
    border-color: rgba(249, 115, 22, 0.45);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--amber));
    font-weight: 900;
}

.rank-thumb {
    width: 76px;
    height: 96px;
    overflow: hidden;
    border-radius: 16px;
    background: #ffedd5;
}

.rank-content h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

.rank-content p {
    margin: 0 0 10px;
    color: var(--muted);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(251, 146, 60, 0.26), transparent 28%),
        linear-gradient(135deg, #fff7ed, #ffffff);
    border-bottom: 1px solid rgba(253, 186, 116, 0.35);
}

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

.page-hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

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

.filter-panel {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(253, 186, 116, 0.5);
    box-shadow: 0 12px 30px rgba(154, 52, 18, 0.08);
}

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

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    color: var(--text);
    background: #fffaf5;
    outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.searchable-card[hidden] {
    display: none;
}

.breadcrumb {
    width: min(1180px, calc(100% - 32px));
    margin: 26px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--orange);
    font-weight: 800;
}

.detail-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto 48px;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
    padding: 28px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(124, 45, 18, 0.82)),
        linear-gradient(135deg, #111827, #7c2d12);
    color: #ffffff;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.22);
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 2 / 3;
    background: #ffedd5;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.detail-copy {
    align-self: center;
}

.detail-copy h1 {
    margin: 18px 0 14px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
}

.detail-one-line {
    max-width: 760px;
    margin: 0;
    color: #ffedd5;
    font-size: 18px;
}

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

.detail-meta-grid div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.detail-meta-grid span {
    display: block;
    color: #fed7aa;
    font-size: 12px;
}

.detail-meta-grid strong {
    display: block;
    margin-top: 4px;
    color: #ffffff;
    font-size: 15px;
}

.detail-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #000000;
    box-shadow: 0 28px 70px rgba(17, 24, 39, 0.28);
    aspect-ratio: 16 / 9;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    gap: 10px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.58), rgba(124, 45, 18, 0.46));
    cursor: pointer;
}

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

.play-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--amber));
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.35);
    font-size: 34px;
    text-indent: 4px;
}

.player-overlay span:last-child {
    font-size: 18px;
    font-weight: 900;
}

.detail-content-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.story-card h2,
.support-grid h2,
.text-page h2 {
    margin: 14px 0 12px;
    color: var(--dark);
    font-size: 26px;
}

.story-card p,
.support-grid p,
.text-page p {
    margin: 0 0 12px;
    color: #4b5563;
    font-size: 16px;
}

.accent-card {
    background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.related-block {
    margin-top: 0;
}

.support-grid article {
    min-height: 180px;
}

.text-page article {
    max-width: 900px;
}

@media (max-width: 1100px) {
    .hero-shell,
    .detail-hero,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-slide {
        grid-template-columns: 1fr 240px;
    }

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

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

    .search-box {
        grid-column: 1 / -1;
    }
}

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

    .menu-toggle {
        display: block;
    }

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

    .brand-copy small {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding-top: 36px;
    }

    .hero-heading {
        padding: 24px;
    }

    .hero-slider {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: start;
    }

    .hero-art {
        max-width: 280px;
        margin: 0 auto;
    }

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

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

    .rank-row {
        grid-template-columns: 48px 64px minmax(0, 1fr);
    }

    .rank-row .text-button {
        grid-column: 2 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .header-inner {
        width: min(100% - 20px, 1180px);
    }

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

    .brand-copy strong {
        max-width: 210px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .section-block,
    .page-hero div,
    .breadcrumb,
    .detail-hero,
    .player-section,
    .detail-content-grid,
    .hero-shell {
        width: min(100% - 20px, 1180px);
    }

    .hero-heading,
    .warm-block,
    .detail-hero {
        padding: 18px;
        border-radius: 24px;
    }

    .hero-slider {
        min-height: 700px;
    }

    .hero-slide {
        padding: 18px;
        border-radius: 24px;
    }

    .movie-grid,
    .all-movie-grid,
    .category-grid,
    .category-card-grid,
    .support-grid,
    .filter-panel {
        grid-template-columns: 1fr;
    }

    .section-title {
        display: block;
    }

    .section-title a {
        display: inline-block;
        margin-top: 10px;
    }

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

    .rank-row {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .rank-thumb {
        display: none;
    }

    .rank-row .text-button {
        grid-column: 2;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    margin-top: 80px;
    color: #e5e7eb;
    background: linear-gradient(135deg, #111827, #1f2937);
}

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

.footer-logo {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
}

.footer-brand p {
    max-width: 420px;
    color: #9ca3af;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column h2 {
    margin: 0 0 8px;
    color: #fdba74;
    font-size: 18px;
}

.footer-column a {
    color: #d1d5db;
    font-size: 14px;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 28px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 14px;
}
