:root {
    --emerald: #059669;
    --emerald-dark: #047857;
    --teal: #0d9488;
    --sky: #0284c7;
    --rose: #e11d48;
    --amber: #d97706;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #f8fafc;
    --panel: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #ecfdf5 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.nav-shell {
    max-width: 1240px;
    height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #0d9488);
    box-shadow: 0 10px 24px rgba(5, 150, 105, 0.32);
    transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.08) rotate(-4deg);
}

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

.brand-text strong {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(90deg, #059669, #0d9488);
    -webkit-background-clip: text;
    color: transparent;
}

.brand-text em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

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

.desktop-nav a {
    color: #374151;
    font-weight: 600;
    transition: color 0.25s ease;
}

.desktop-nav a:hover {
    color: var(--emerald);
}

.nav-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-search input {
    width: 220px;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    background: #f3f4f6;
    outline: none;
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.nav-search input:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
}

.nav-search button,
.large-search button {
    border: 0;
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #059669, #0d9488);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 10px;
    margin-left: auto;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: #374151;
}

.mobile-panel {
    display: none;
    padding: 12px 24px 20px;
    border-top: 1px solid var(--line);
    background: #fff;
}

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

.mobile-panel a {
    padding: 12px 14px;
    border-radius: 12px;
    color: #374151;
    background: #f8fafc;
    font-weight: 700;
}

.hero {
    position: relative;
    height: 600px;
    margin-top: 0;
    overflow: hidden;
    background: #111827;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.8s ease, transform 1.2s ease;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(16, 185, 129, 0.28), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 44%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 82px;
    width: min(1180px, calc(100% - 48px));
    transform: translateX(-50%);
    color: #fff;
}

.hero-content h1 {
    max-width: 760px;
    margin: 16px 0;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 660px;
    margin: 0 0 28px;
    color: #e5e7eb;
    font-size: 19px;
}

.hero-labels,
.hero-actions,
.detail-meta-list,
.detail-tags,
.card-meta,
.card-tags,
.filter-group,
.toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-labels span,
.hero-labels a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.hero-labels span {
    background: var(--emerald);
}

.hero-labels a {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.primary-btn {
    color: #fff;
    background: var(--emerald);
    box-shadow: 0 14px 30px rgba(5, 150, 105, 0.35);
}

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

.primary-btn:hover {
    background: var(--emerald-dark);
}

.ghost-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

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

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

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

.content-section,
.article-section,
.detail-content-shell {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

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

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
}

.section-heading a {
    color: var(--emerald);
    font-weight: 800;
}

.compact-heading {
    margin-bottom: 20px;
}

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

.eyebrow.light {
    color: #d1fae5;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.movie-link {
    display: block;
    height: 100%;
}

.card-poster {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #e5e7eb, #f8fafc);
}

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

.movie-card:hover .card-poster img,
.category-card:hover img,
.category-overview-card:hover img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.66);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
}

.card-body {
    padding: 18px;
}

.card-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.movie-card:hover h3 {
    color: var(--emerald);
}

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

.card-meta {
    justify-content: space-between;
    color: #6b7280;
    font-size: 12px;
}

.card-tags {
    margin-top: 12px;
}

.tag-pill,
.category-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.tag-pill {
    padding: 5px 9px;
    color: #4b5563;
    background: #f3f4f6;
}

.category-pill {
    padding: 8px 14px;
    color: #fff;
    background: linear-gradient(135deg, #059669, #0d9488);
}

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

.category-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--radius);
    color: #fff;
    box-shadow: var(--shadow);
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.1));
}

.category-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-card span,
.category-card p {
    position: absolute;
    left: 20px;
    right: 20px;
    z-index: 1;
}

.category-card span {
    bottom: 62px;
    font-size: 24px;
    font-weight: 900;
}

.category-card p {
    bottom: 20px;
    margin: 0;
    color: #e5e7eb;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
    gap: 30px;
    align-items: start;
}

.ranking-panel,
.article-card,
.category-toolbar,
.ranking-table,
.related-panel,
.detail-article,
.detail-info-card {
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.ranking-panel {
    padding: 24px;
    position: sticky;
    top: 88px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 42px 54px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 14px;
    background: #f8fafc;
    transition: background 0.25s ease, transform 0.25s ease;
}

.rank-row:hover {
    background: #ecfdf5;
    transform: translateX(3px);
}

.rank-row img {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-index {
    color: var(--rose);
    font-weight: 900;
}

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

.rank-score {
    color: var(--muted);
    font-size: 12px;
}

.page-main {
    padding-top: 68px;
}

.page-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    color: #fff;
}

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

.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.emerald-hero {
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2), transparent 26%), linear-gradient(135deg, #059669, #0d9488);
}

.sky-hero {
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.22), transparent 26%), linear-gradient(135deg, #0284c7, #2563eb);
}

.dark-hero {
    background: radial-gradient(circle at 72% 20%, rgba(16, 185, 129, 0.34), transparent 26%), linear-gradient(135deg, #111827, #1f2937);
}

.category-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    margin-bottom: 26px;
}

.filter-group button {
    border: 0;
    border-radius: 999px;
    padding: 8px 14px;
    color: #374151;
    background: #f3f4f6;
    font-weight: 800;
    cursor: pointer;
}

.filter-group button.is-active,
.filter-group button:hover {
    color: #fff;
    background: var(--emerald);
}

.toolbar-actions input,
.toolbar-actions select,
.large-search input {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 11px 15px;
    outline: none;
    background: #fff;
}

.toolbar-actions input:focus,
.toolbar-actions select:focus,
.large-search input:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

.category-overview-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.category-overview-card a {
    display: grid;
    grid-template-rows: 210px auto;
    min-height: 100%;
}

.category-overview-poster {
    overflow: hidden;
}

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

.category-overview-body {
    padding: 22px;
}

.category-overview-body h2 {
    margin: 0 0 10px;
}

.category-overview-body p {
    margin: 0 0 16px;
    color: var(--muted);
}

.mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mini-links span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #047857;
    background: #ecfdf5;
    font-size: 12px;
    font-weight: 800;
}

.ranking-table {
    overflow: hidden;
}

.ranking-table-row {
    display: grid;
    grid-template-columns: 72px 64px minmax(160px, 1fr) 130px 90px 120px;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    transition: background 0.25s ease;
}

.ranking-table-row:hover {
    background: #ecfdf5;
}

.ranking-table-row img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
}

.table-rank {
    color: var(--rose);
    font-size: 18px;
    font-weight: 900;
}

.table-title {
    font-weight: 900;
}

.large-search {
    display: flex;
    max-width: 760px;
    gap: 12px;
    margin-top: 28px;
}

.large-search input {
    flex: 1;
    min-height: 54px;
    padding-left: 22px;
    font-size: 18px;
}

.search-status {
    margin-bottom: 22px;
    color: var(--muted);
    font-weight: 800;
}

.article-section {
    padding: 58px 0;
    display: grid;
    gap: 24px;
}

.article-card {
    padding: 34px;
}

.article-card h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.article-card p {
    color: #4b5563;
    font-size: 17px;
}

.detail-main {
    padding-top: 68px;
    background: #f8fafc;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #0f172a;
}

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

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

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4), #0f172a 100%);
}

.detail-shell {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 34px 0 54px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #d1d5db;
    margin-bottom: 24px;
}

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

.player-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
    align-items: stretch;
}

.player-card {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 26px;
    background: #000;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.movie-video {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: contain;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.92);
    box-shadow: 0 0 0 14px rgba(16, 185, 129, 0.24);
    position: relative;
}

.play-icon::after {
    content: "";
    position: absolute;
    left: 35px;
    top: 27px;
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 24px solid #fff;
}

.play-overlay strong {
    font-size: 20px;
}

.detail-info-card {
    padding: 18px;
    align-self: stretch;
}

.detail-poster {
    width: 100%;
    height: 380px;
    border-radius: 18px;
    object-fit: cover;
}

.detail-meta-list {
    margin-top: 16px;
}

.detail-meta-list span {
    padding: 7px 12px;
    border-radius: 999px;
    color: #065f46;
    background: #d1fae5;
    font-size: 13px;
    font-weight: 800;
}

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

.detail-article,
.related-panel {
    padding: 28px;
}

.title-block h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
}

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

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

.text-panel {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    margin-top: 24px;
}

.text-panel h2,
.related-panel h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.text-panel p {
    margin: 0;
    color: #374151;
    font-size: 17px;
    line-height: 1.9;
}

.related-panel {
    position: sticky;
    top: 88px;
}

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

.movie-card-wide {
    box-shadow: none;
    border: 1px solid var(--line);
}

.movie-card-wide .movie-link {
    display: grid;
    grid-template-columns: 112px 1fr;
}

.movie-card-wide .small-poster {
    height: 126px;
}

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

.movie-card-wide .card-body h3 {
    font-size: 16px;
    -webkit-line-clamp: 1;
}

.movie-card-wide .card-body p {
    font-size: 13px;
}

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

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

    .menu-toggle {
        display: flex;
    }

    .three-col,
    .four-col,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-column-section,
    .detail-content-shell,
    .player-layout {
        grid-template-columns: 1fr;
    }

    .ranking-panel,
    .related-panel {
        position: static;
    }

    .detail-info-card {
        display: grid;
        grid-template-columns: 180px 1fr;
        gap: 18px;
        align-items: center;
    }

    .detail-poster {
        height: 240px;
    }

    .ranking-table-row {
        grid-template-columns: 60px 54px minmax(150px, 1fr) 100px;
    }

    .ranking-table-row span:nth-child(5),
    .ranking-table-row span:nth-child(6) {
        display: none;
    }
}

@media (max-width: 720px) {
    .nav-shell {
        height: 64px;
        padding: 0 16px;
    }

    .brand-text em {
        display: none;
    }

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

    .hero {
        height: 560px;
    }

    .hero-content {
        bottom: 74px;
        width: calc(100% - 32px);
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-actions,
    .large-search,
    .category-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .ghost-btn,
    .large-search button {
        width: 100%;
    }

    .content-section,
    .article-section,
    .detail-content-shell,
    .detail-shell,
    .page-hero > div {
        width: calc(100% - 32px);
    }

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

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

    .three-col,
    .four-col,
    .category-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .card-poster {
        height: 240px;
    }

    .page-main,
    .detail-main {
        padding-top: 64px;
    }

    .page-hero {
        min-height: 260px;
    }

    .player-card,
    .movie-video {
        min-height: 300px;
    }

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

    .detail-poster {
        height: 320px;
    }

    .detail-article,
    .related-panel,
    .article-card {
        padding: 22px;
    }

    .ranking-table-row {
        grid-template-columns: 44px 52px minmax(0, 1fr);
    }

    .ranking-table-row span:nth-child(4) {
        display: none;
    }

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

.site-footer {
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937 55%, #0f172a);
}

.footer-grid {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 52px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-brand strong {
    color: #fff;
    font-size: 19px;
}

.footer-brand p,
.footer-summary {
    margin: 0;
    color: #9ca3af;
}

.footer-summary {
    margin-top: 16px;
}

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

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

.site-footer a {
    color: #d1d5db;
}

.site-footer a:hover {
    color: #34d399;
}

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