:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: #1e293b;
    --bg-card-2: #111827;
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-2: #64748b;
    --line: rgba(148, 163, 184, 0.18);
    --brand: #f59e0b;
    --brand-2: #fbbf24;
    --brand-dark: #92400e;
    --radius: 18px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.92);
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #111827;
    font-weight: 900;
    box-shadow: 0 16px 40px rgba(245, 158, 11, 0.28);
}

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

.brand-name {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand-subtitle {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

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

.nav-link {
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease;
}

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

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.8);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: #e2e8f0;
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid var(--line);
}

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

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
    color: #cbd5e1;
    background: rgba(30, 41, 59, 0.55);
}

.mobile-link.is-active {
    color: var(--brand);
}

.hero-carousel {
    position: relative;
    height: min(680px, calc(100vh - 72px));
    min-height: 560px;
    overflow: hidden;
    background: radial-gradient(circle at 20% 15%, rgba(245, 158, 11, 0.18), transparent 32%), var(--bg);
}

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

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

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background: linear-gradient(135deg, #111827, #0f172a 45%, #1e293b);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    filter: saturate(1.05) contrast(1.06);
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.68) 45%, rgba(2, 6, 23, 0.22)),
        linear-gradient(0deg, var(--bg), rgba(2, 6, 23, 0.12) 45%, transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: end;
    gap: 64px;
    padding-bottom: 96px;
}

.hero-copy {
    max-width: 720px;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(245, 158, 11, 0.38);
    background: rgba(245, 158, 11, 0.15);
    color: var(--brand-2);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.hero-copy p {
    margin: 0;
    max-width: 680px;
    color: #cbd5e1;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.75;
}

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

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

.hero-tags span,
.tag-row span {
    border-radius: 999px;
    padding: 6px 10px;
    color: #fde68a;
    background: rgba(146, 64, 14, 0.26);
    border: 1px solid rgba(245, 158, 11, 0.22);
    font-size: 12px;
    font-weight: 700;
}

.hero-actions,
.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 12px;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.primary-button {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #111827;
    box-shadow: 0 18px 44px rgba(245, 158, 11, 0.25);
}

.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
}

.ghost-button {
    border: 1px solid rgba(226, 232, 240, 0.18);
    background: rgba(15, 23, 42, 0.52);
    color: #e2e8f0;
    backdrop-filter: blur(16px);
}

.primary-button.small,
.ghost-button.small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 26px;
    overflow: hidden;
    background: #111827;
    box-shadow: var(--shadow);
    border: 1px solid rgba(245, 158, 11, 0.26);
    transform: rotate(2deg);
}

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

.hero-poster span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 38px 18px 18px;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.96), transparent);
    font-weight: 900;
}

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

.hero-controls button {
    border: 0;
    cursor: pointer;
}

.hero-controls > button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.75);
    color: #f8fafc;
    font-size: 28px;
    line-height: 1;
    border: 1px solid var(--line);
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.35);
}

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

.feature-strip {
    background: #0f172a;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
}

.feature-grid a {
    display: grid;
    gap: 6px;
    padding: 24px;
    background: #0f172a;
}

.feature-grid strong {
    color: #f8fafc;
    font-size: 18px;
}

.feature-grid span {
    color: var(--muted);
    font-size: 14px;
}

.content-section {
    padding: 82px 0;
    background: var(--bg);
}

.content-section.darker {
    background: #0f172a;
}

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

.section-heading.centered {
    text-align: center;
    display: grid;
    justify-items: center;
}

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

.section-heading h2,
.page-hero h1,
.detail-side h1 {
    margin: 14px 0 10px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-heading p,
.page-hero p {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
    line-height: 1.8;
}

.text-link {
    color: var(--brand-2);
    font-weight: 900;
}

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

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

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

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

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

.movie-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.13);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b, #0f172a 60%, #78350f);
}

.catalog-grid .poster-frame {
    aspect-ratio: 2 / 3;
}

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

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

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

.poster-badge,
.poster-year {
    position: absolute;
    top: 12px;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 900;
    background: rgba(2, 6, 23, 0.76);
    color: #fde68a;
    backdrop-filter: blur(10px);
}

.poster-badge {
    left: 12px;
}

.poster-year {
    right: 12px;
    color: #e2e8f0;
}

.card-content {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.card-title {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.card-meta,
.card-desc {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.card-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card-wide {
    min-height: 380px;
}

.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-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #1e293b;
    border: 1px solid rgba(148, 163, 184, 0.13);
}

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

.category-bg img {
    object-fit: cover;
    opacity: 0.42;
    transition: transform 0.45s ease;
}

.category-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.2));
}

.category-content {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: grid;
    align-content: end;
    gap: 10px;
    padding: 22px;
}

.category-content strong {
    font-size: 24px;
    font-weight: 900;
}

.category-content small {
    color: #cbd5e1;
    line-height: 1.7;
}

.scroll-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 18px;
    scroll-snap-type: x mandatory;
}

.compact-card {
    flex: 0 0 300px;
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.13);
    scroll-snap-align: start;
}

.compact-thumb {
    width: 86px;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    background: #0f172a;
}

.compact-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.compact-info {
    display: grid;
    gap: 8px;
}

.compact-info strong {
    font-weight: 900;
    line-height: 1.35;
}

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

.ranking-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 44px;
    align-items: start;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 14px;
    background: rgba(30, 41, 59, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.rank-item span,
.ranking-index {
    color: var(--brand-2);
    font-size: 22px;
    font-weight: 900;
}

.rank-item strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-item em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.search-section {
    padding: 84px 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.12), transparent 34%), #020617;
}

.search-box {
    width: min(760px, 100%);
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.82);
    box-shadow: var(--shadow);
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    border-radius: 12px;
    padding: 0 16px;
    min-height: 48px;
    background: #111827;
    color: var(--text);
}

.search-box button {
    border: 0;
    border-radius: 12px;
    background: var(--brand);
    color: #111827;
    font-weight: 900;
    cursor: pointer;
}

.search-results {
    width: min(960px, 100%);
    margin: 26px auto 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.search-results.is-open {
    display: grid;
}

.search-result-card {
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.13);
}

.search-result-card strong {
    color: #f8fafc;
}

.search-result-card span,
.search-result-card small {
    color: var(--muted);
}

.page-hero {
    position: relative;
    padding: 110px 0 70px;
    background: radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.18), transparent 36%), linear-gradient(135deg, #0f172a, #020617);
    border-bottom: 1px solid var(--line);
}

.page-hero.slim {
    padding: 88px 0 56px;
}

.category-hero {
    min-height: 330px;
    display: grid;
    align-items: end;
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 76px 120px 1fr;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.13);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.5);
}

.ranking-poster {
    overflow: hidden;
    border-radius: 12px;
    background: #0f172a;
    aspect-ratio: 16 / 10;
}

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

.ranking-info {
    display: grid;
    gap: 7px;
}

.ranking-info strong {
    font-size: 18px;
    font-weight: 900;
}

.ranking-info small,
.ranking-info em {
    color: var(--muted);
    font-style: normal;
    line-height: 1.6;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0;
    background: #020617;
}

.detail-bg {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    filter: blur(2px);
}

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

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.76)), linear-gradient(0deg, #020617, transparent 50%);
}

.detail-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.8fr);
    gap: 34px;
    align-items: start;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: var(--shadow);
}

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

.play-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 14px;
    align-content: center;
    border: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.28));
    color: #fff;
    cursor: pointer;
    text-align: center;
}

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

.play-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #111827;
    font-size: 28px;
    box-shadow: 0 18px 52px rgba(245, 158, 11, 0.32);
}

.play-cover strong {
    max-width: 80%;
    font-size: 24px;
}

.detail-side {
    padding: 22px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.16);
    backdrop-filter: blur(16px);
}

.detail-poster {
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 16 / 10;
    background: #111827;
    margin-bottom: 18px;
}

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

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--brand-2);
    font-size: 14px;
    font-weight: 800;
}

.detail-side h1 {
    font-size: clamp(28px, 4vw, 44px);
}

.detail-side p {
    color: #cbd5e1;
    line-height: 1.8;
}

.movie-info-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.movie-info-list div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.movie-info-list dt {
    color: var(--muted);
}

.movie-info-list dd {
    margin: 0;
    color: #f8fafc;
}

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

.article-card,
.side-panel {
    border-radius: 22px;
    background: var(--bg-card-2);
    border: 1px solid rgba(148, 163, 184, 0.13);
    padding: 28px;
}

.article-card h2,
.side-panel h2 {
    margin: 14px 0;
    font-size: 26px;
    letter-spacing: -0.02em;
}

.article-card p {
    margin: 0 0 24px;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.9;
}

.side-link-list {
    display: grid;
    gap: 10px;
}

.side-link-list a {
    display: grid;
    gap: 5px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 900;
}

.side-link-list span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .movie-grid,
    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .featured-grid,
    .highlight-grid,
    .related-grid,
    .category-grid.large {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hero-content,
    .ranking-layout,
    .detail-layout,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        display: none;
    }
}

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

    .menu-button {
        display: block;
    }

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

    .hero-content {
        padding-top: 90px;
        padding-bottom: 110px;
        align-items: end;
    }

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

    .feature-grid,
    .movie-grid,
    .featured-grid,
    .catalog-grid,
    .highlight-grid,
    .related-grid,
    .category-grid,
    .category-grid.large,
    .search-results {
        grid-template-columns: 1fr;
    }

    .section-heading.with-link {
        display: grid;
    }

    .content-section,
    .search-section {
        padding: 58px 0;
    }

    .search-box {
        grid-template-columns: 1fr;
    }

    .ranking-card {
        grid-template-columns: 54px 90px 1fr;
        gap: 12px;
    }

    .rank-item {
        grid-template-columns: 44px 1fr;
    }

    .rank-item em {
        grid-column: 2;
    }

    .detail-hero {
        padding: 34px 0;
    }
}

.site-footer {
    background: #020617;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    padding: 54px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 1fr 1fr;
    gap: 34px;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-copy {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-title {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 900;
}

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

.footer-links a {
    color: #cbd5e1;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    margin-top: 42px;
    padding: 22px 16px;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    color: var(--muted-2);
    text-align: center;
    font-size: 14px;
}

@media (max-width: 760px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
