:root {
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: #111827;
    --panel: rgba(15, 23, 42, 0.82);
    --panel-strong: rgba(15, 23, 42, 0.96);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --cyan: #22d3ee;
    --cyan-deep: #0891b2;
    --green: #22c55e;
    --orange: #fb923c;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    --radius: 22px;
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: 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 {
    display: block;
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(16px);
}

.nav-shell {
    width: min(1200px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #0f172a;
    font-weight: 900;
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
    box-shadow: 0 0 24px rgba(34, 211, 238, 0.38);
}

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

.brand-copy strong {
    font-size: 20px;
    letter-spacing: 0.02em;
}

.brand-copy small {
    margin-top: 4px;
    color: rgba(103, 232, 249, 0.78);
    font-size: 12px;
}

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

.nav-link {
    color: #cbd5e1;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.8);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
}

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

.mobile-nav.open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mobile-link {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.75);
    color: #dbeafe;
    font-weight: 600;
}

.hero {
    position: relative;
    height: 78vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--bg);
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, #020617 0%, rgba(2, 6, 23, 0.78) 34%, rgba(2, 6, 23, 0.28) 100%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.72));
}

.hero-content {
    position: absolute;
    left: max(32px, calc((100vw - 1200px) / 2));
    bottom: 84px;
    width: min(720px, calc(100% - 64px));
    display: grid;
    gap: 20px;
}

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

.hero-tags span,
.info-chips span,
.detail-tags span,
.card-tags span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.28);
    background: rgba(14, 116, 144, 0.2);
    color: #67e8f9;
    font-size: 13px;
    line-height: 1;
    padding: 8px 12px;
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}

.hero-content p {
    margin: 0;
    max-width: 660px;
    color: #cbd5e1;
    font-size: clamp(17px, 2vw, 21px);
}

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

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

.primary-btn {
    background: linear-gradient(135deg, #22d3ee, #0284c7);
    color: white;
    box-shadow: 0 16px 40px rgba(34, 211, 238, 0.32);
}

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

.ghost-btn {
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.72);
    color: white;
    backdrop-filter: blur(12px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.68);
    color: white;
    font-size: 38px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(12px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(30, 41, 59, 0.92);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    transition: width 0.25s ease, background 0.25s ease;
}

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

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

.gradient-section {
    background: linear-gradient(180deg, #020617, #0f172a);
}

.gradient-section.reverse {
    background: linear-gradient(180deg, #0f172a, #020617);
}

.dark-section {
    background: #0f172a;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 10px 0 0;
    color: var(--muted);
    max-width: 680px;
}

.section-more {
    min-height: 42px;
    border: 1px solid rgba(34, 211, 238, 0.32);
    color: #67e8f9;
    background: rgba(8, 145, 178, 0.12);
    white-space: nowrap;
}

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

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

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

.movie-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.82);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.42);
    background: rgba(30, 41, 59, 0.92);
    box-shadow: var(--shadow);
}

.poster-frame {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.18), rgba(30, 41, 59, 0.6));
}

.movie-card.compact .poster-frame {
    aspect-ratio: 16 / 9;
}

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

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

.poster-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.72);
    color: #cffafe;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
    backdrop-filter: blur(10px);
}

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

.movie-card-body strong {
    color: white;
    font-size: 18px;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.movie-card:hover .movie-card-body strong {
    color: var(--cyan);
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.card-summary {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: #94a3b8;
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-tags span {
    padding: 6px 9px;
    font-size: 12px;
    color: #cbd5e1;
    border-color: rgba(148, 163, 184, 0.18);
    background: rgba(30, 41, 59, 0.72);
}

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

.category-tile {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.22), transparent 32%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.78));
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.46);
    box-shadow: var(--shadow);
}

.tile-glow {
    position: absolute;
    right: -30px;
    top: -30px;
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.18);
    filter: blur(6px);
}

.category-tile strong {
    position: relative;
    z-index: 1;
    font-size: 24px;
    line-height: 1.2;
}

.category-tile em {
    position: relative;
    z-index: 1;
    color: #94a3b8;
    font-style: normal;
    font-size: 14px;
}

.tile-samples {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 6px;
}

.tile-samples a {
    color: #67e8f9;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.year-block {
    margin-bottom: 48px;
}

.year-block h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    color: #67e8f9;
    font-size: 24px;
}

.year-block h3 span {
    width: 5px;
    height: 28px;
    border-radius: 99px;
    background: var(--cyan);
}

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

.latest-item {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.72);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.latest-item:hover {
    transform: translateX(4px);
    border-color: rgba(34, 211, 238, 0.36);
    background: rgba(30, 41, 59, 0.88);
}

.latest-item img {
    width: 190px;
    height: 108px;
    object-fit: cover;
    border-radius: 12px;
}

.latest-item span {
    display: grid;
    align-content: center;
    gap: 6px;
    min-width: 0;
}

.latest-item strong {
    font-size: 18px;
    color: white;
}

.latest-item em {
    display: -webkit-box;
    overflow: hidden;
    color: #94a3b8;
    font-style: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.latest-item small {
    color: #64748b;
    font-weight: 700;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 72px;
    background:
        radial-gradient(circle at 12% 20%, rgba(34, 211, 238, 0.18), transparent 28%),
        radial-gradient(circle at 78% 8%, rgba(59, 130, 246, 0.16), transparent 32%),
        linear-gradient(135deg, #020617, #0f172a 58%, #111827);
    border-bottom: 1px solid var(--line);
}

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

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: #cbd5e1;
    font-size: 18px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.28);
    color: #67e8f9;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 900;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 14px;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.86);
}

.search-box,
.select-box {
    display: grid;
    gap: 8px;
}

.search-box span,
.select-box span {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 800;
}

.search-box input,
.select-box select {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    outline: none;
    background: rgba(2, 6, 23, 0.65);
    color: white;
    padding: 0 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-box input:focus,
.select-box select:focus {
    border-color: rgba(34, 211, 238, 0.65);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

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

.rank-row {
    display: grid;
    grid-template-columns: 64px 148px 1fr;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.78);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.rank-row:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 211, 238, 0.38);
    background: rgba(30, 41, 59, 0.88);
}

.rank-num {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(59, 130, 246, 0.18));
    color: #67e8f9;
    font-weight: 900;
    font-size: 18px;
}

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

.rank-info {
    display: grid;
    gap: 5px;
}

.rank-info strong {
    color: white;
    font-size: 18px;
}

.rank-info em {
    display: -webkit-box;
    overflow: hidden;
    color: #94a3b8;
    font-style: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rank-info small {
    color: #64748b;
    font-weight: 800;
}

.detail-layout {
    padding: 36px 0 78px;
    background: linear-gradient(180deg, #020617, #0f172a 48%, #020617);
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
}

.detail-main {
    display: grid;
    gap: 22px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #94a3b8;
    font-size: 14px;
}

.breadcrumb a {
    color: #67e8f9;
}

.player-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #000;
    box-shadow: var(--shadow);
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-launch {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: none;
    color: white;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.82));
}

.player-launch:hover .play-icon {
    transform: scale(1.08);
}

.play-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #22d3ee, #0284c7);
    box-shadow: 0 18px 42px rgba(34, 211, 238, 0.34);
    transition: transform 0.25s ease;
}

.player-launch span:last-child {
    font-size: 20px;
    font-weight: 900;
}

.detail-card,
.side-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.88);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.detail-card {
    padding: 26px;
}

.detail-head {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: start;
}

.detail-head img {
    width: 220px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.detail-head h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.detail-head p {
    color: #cbd5e1;
    font-size: 17px;
}

.info-chips {
    margin: 0 0 14px;
}

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

.article-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.article-block h2,
.side-card h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.article-block p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.9;
    font-size: 16px;
}

.detail-side {
    display: grid;
    gap: 20px;
    align-content: start;
    position: sticky;
    top: 96px;
}

.side-card {
    padding: 20px;
}

.compact-list .latest-item {
    grid-template-columns: 112px 1fr;
    padding: 10px;
}

.compact-list .latest-item img {
    width: 112px;
    height: 72px;
}

.compact-list .latest-item strong {
    font-size: 15px;
}

.compact-list .latest-item em {
    display: none;
}

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

.side-links a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.7);
    color: #cbd5e1;
    transition: background 0.25s ease, color 0.25s ease;
}

.side-links a:hover {
    background: rgba(8, 145, 178, 0.24);
    color: #67e8f9;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #020617;
}

.footer-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 34px;
    padding: 46px 0 24px;
}

.footer-brand strong {
    font-size: 22px;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 520px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 20px;
    align-content: start;
}

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
}

.footer-links a:hover {
    color: #67e8f9;
}

.footer-bottom {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 28px;
    border-top: 1px solid var(--line);
    color: #64748b;
    font-size: 14px;
}

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

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

    .menu-toggle {
        display: inline-flex;
    }

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

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

    .detail-side {
        position: static;
    }

    .filter-panel {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 720px) {
    .container,
    .nav-shell,
    .footer-inner,
    .footer-bottom,
    .mobile-nav {
        width: min(100% - 24px, 1200px);
    }

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

    .brand-copy small {
        font-size: 11px;
    }

    .hero {
        height: 74vh;
        min-height: 520px;
    }

    .hero-content {
        left: 18px;
        bottom: 78px;
        width: calc(100% - 36px);
    }

    .hero-arrow {
        display: none;
    }

    .hero-actions,
    .page-actions {
        gap: 10px;
    }

    .primary-btn,
    .ghost-btn {
        min-height: 42px;
        padding: 0 16px;
        font-size: 14px;
    }

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

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

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

    .filter-panel {
        grid-template-columns: 1fr;
    }

    .latest-item,
    .rank-row {
        grid-template-columns: 1fr;
    }

    .latest-item img,
    .rank-cover img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .rank-num {
        width: 44px;
        height: 44px;
    }

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

    .detail-head img {
        width: min(240px, 70vw);
    }

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

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