* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111827;
    background: #f9fafb;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

.container-custom {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 0 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, #111827, #1f2937, #111827);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(12px);
}

.site-nav {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.logo-mark {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ef4444);
    box-shadow: 0 0 22px rgba(249, 115, 22, 0.45);
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #d1d5db;
    font-size: 0.95rem;
    font-weight: 650;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fb923c;
}

.nav-toggle {
    display: none;
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 1.6rem;
    cursor: pointer;
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease, transform 5s ease;
    transform: scale(1.02);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.46));
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    animation: fadeInUp 0.7s ease both;
}

.hero-icon {
    width: 5rem;
    height: 5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.16);
    color: #f97316;
    font-size: 2.2rem;
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.26), 0 0 45px rgba(249, 115, 22, 0.38);
}

.hero-kicker,
.section-kicker {
    margin: 0 0 0.6rem;
    color: #f97316;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

.hero h1 {
    margin: 0;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1;
    font-weight: 900;
    text-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.hero h2 {
    margin: 1rem 0 0;
    font-size: clamp(1.6rem, 4vw, 3rem);
    line-height: 1.15;
}

.hero-desc {
    width: min(100%, 760px);
    margin: 1.25rem auto 0;
    color: #e5e7eb;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.75rem 1.5rem;
    border-radius: 0.7rem;
    border: 0;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(90deg, #f97316, #ef4444);
    box-shadow: 0 14px 28px rgba(239, 68, 68, 0.25);
}

.btn-secondary {
    color: #ffffff;
    background: #1f2937;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.2);
}

.small-btn {
    min-height: 42px;
    padding: 0.55rem 1rem;
}

.hero-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.64);
    font-size: 2rem;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
    background: rgba(249, 115, 22, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.hero-prev {
    left: 1.5rem;
}

.hero-next {
    right: 1.5rem;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 8rem;
    z-index: 4;
    display: flex;
    gap: 0.6rem;
    transform: translateX(-50%);
}

.hero-dot {
    width: 0.8rem;
    height: 0.8rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 2.1rem;
    background: #f97316;
}

.hero-thumbs {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.25rem;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}

.hero-thumb {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
    padding: 0.55rem;
    border-radius: 0.9rem;
    background: rgba(17, 24, 39, 0.62);
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-thumb.is-active {
    background: rgba(249, 115, 22, 0.72);
}

.hero-thumb img {
    width: 4.5rem;
    height: 3rem;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 0.65rem;
}

.hero-thumb span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
}

.section {
    padding: 4rem 0;
}

.white-section {
    background: #ffffff;
}

.soft-section {
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
}

.dark-section {
    background: #111827;
    color: #ffffff;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.15;
}

.section-more {
    color: #ea580c;
    font-weight: 800;
}

.light-more,
.light-heading .section-kicker {
    color: #fb923c;
}

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

.category-card {
    position: relative;
    min-height: 220px;
    border-radius: 1rem;
    padding: 1rem;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
}

.category-images {
    display: flex;
    gap: 0.35rem;
    height: 96px;
    opacity: 0.94;
}

.category-images img {
    width: 33.333%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.category-body {
    position: relative;
    z-index: 2;
    padding-top: 1rem;
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.category-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.35rem;
}

.category-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.tone-orange { background: linear-gradient(135deg, #f97316, #ef4444); }
.tone-blue { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.tone-purple { background: linear-gradient(135deg, #7c3aed, #db2777); }
.tone-red { background: linear-gradient(135deg, #dc2626, #f97316); }
.tone-pink { background: linear-gradient(135deg, #db2777, #f43f5e); }
.tone-yellow { background: linear-gradient(135deg, #d97706, #f59e0b); }
.tone-cyan { background: linear-gradient(135deg, #0891b2, #2563eb); }
.tone-slate { background: linear-gradient(135deg, #334155, #0f172a); }
.tone-green { background: linear-gradient(135deg, #16a34a, #65a30d); }
.tone-indigo { background: linear-gradient(135deg, #4f46e5, #7c3aed); }
.tone-teal { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.tone-amber { background: linear-gradient(135deg, #f59e0b, #ea580c); }

.movie-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem;
}

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border-radius: 0.9rem;
    background: #ffffff;
    box-shadow: 0 9px 24px rgba(15, 23, 42, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.movie-poster {
    position: relative;
    height: 20rem;
    overflow: hidden;
    background: #111827;
}

.movie-card-compact .movie-poster {
    height: 15rem;
}

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

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

.poster-shadow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.play-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.88);
    color: #ffffff;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-badge {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.year-badge {
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 0.5rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.68);
    font-weight: 750;
    font-size: 0.8rem;
}

.movie-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1rem;
}

.movie-title {
    min-height: 2.7rem;
    color: #111827;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-title:hover {
    color: #ea580c;
}

.movie-line {
    min-height: 3.1rem;
    margin: 0;
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: #6b7280;
    font-size: 0.78rem;
}

.movie-meta span {
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    background: #f3f4f6;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 1.55rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    color: #ea580c;
    background: #ffedd5;
    font-size: 0.78rem;
    font-weight: 750;
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

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

.ranking-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.8rem;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: transform 0.25s ease, background 0.25s ease;
}

.ranking-item:hover {
    transform: translateX(5px);
    background: rgba(249, 115, 22, 0.18);
}

.ranking-no {
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316, #ef4444);
    font-weight: 900;
}

.ranking-item img {
    width: 6rem;
    height: 4rem;
    object-fit: cover;
    border-radius: 0.65rem;
}

.ranking-text {
    display: grid;
    gap: 0.3rem;
    min-width: 0;
}

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

.ranking-text small {
    color: #d1d5db;
}

.page-hero {
    padding: 5rem 0;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #374151);
}

.page-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.page-hero p {
    width: min(100%, 760px);
    margin: 0;
    color: #e5e7eb;
    line-height: 1.8;
}

.category-preview {
    margin-top: 3rem;
}

.compact-heading h2 {
    max-width: 760px;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.filter-bar,
.filter-panel {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 2rem;
}

.filter-panel {
    flex-wrap: wrap;
    padding: 1rem;
    border-radius: 1rem;
    background: #f9fafb;
    box-shadow: 0 0 0 1px #e5e7eb;
}

.filter-input,
.filter-select {
    min-height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    padding: 0.65rem 0.9rem;
    color: #111827;
    background: #ffffff;
    outline: none;
}

.filter-input:focus,
.filter-select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
}

.filter-input {
    flex: 1 1 280px;
}

.large-input {
    flex-basis: 420px;
}

.detail-hero {
    position: relative;
    color: #ffffff;
    background-size: cover;
    background-position: center;
}

.detail-hero-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.35));
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 2rem;
    color: #d1d5db;
    font-size: 0.9rem;
}

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

.detail-top {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 2rem;
    align-items: end;
}

.detail-cover {
    width: 240px;
    height: 340px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.detail-title-box h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.05;
}

.detail-title-box p {
    width: min(100%, 820px);
    color: #f3f4f6;
    line-height: 1.8;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.2rem 0;
}

.detail-meta span {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.player-section {
    padding: 2.2rem 0;
    background: #000000;
}

.video-player-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 1rem;
    background: #000000;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.58));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.overlay-play-icon {
    width: 5rem;
    height: 5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    box-shadow: 0 0 42px rgba(249, 115, 22, 0.42);
    font-size: 2.1rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    align-items: start;
}

.card-panel {
    border-radius: 1rem;
    background: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.1);
}

.card-panel h2 {
    margin: 0 0 1rem;
    font-size: 1.35rem;
}

.card-panel p {
    color: #374151;
    line-height: 1.9;
    margin: 0 0 1.5rem;
}

.info-list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
}

.info-list div {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #e5e7eb;
}

.info-list dt {
    color: #6b7280;
    font-weight: 750;
}

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

.detail-side {
    position: sticky;
    top: 86px;
}

.side-list {
    display: grid;
    gap: 0.7rem;
}

.side-list .ranking-item {
    background: #f9fafb;
    color: #111827;
}

.side-list .ranking-item small {
    color: #6b7280;
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(180deg, #111827, #020617);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.site-footer h3 {
    margin: 0 0 1rem;
    color: #ffffff;
}

.site-footer p {
    margin: 0;
    color: #9ca3af;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    gap: 0.55rem;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #6b7280;
    font-size: 0.9rem;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .movie-grid,
    .compact-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 64px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.8rem 1rem 1rem;
        background: #111827;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem 0;
    }

    .hero-thumbs {
        display: none;
    }

    .hero-dots {
        bottom: 2rem;
    }

    .hero-arrow {
        display: none;
    }

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

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

    .ranking-grid,
    .ranking-page-grid {
        grid-template-columns: 1fr;
    }

    .detail-top {
        grid-template-columns: 160px minmax(0, 1fr);
    }

    .detail-cover {
        width: 160px;
        height: 230px;
    }

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

    .detail-side {
        position: static;
    }

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

@media (max-width: 640px) {
    .container-custom {
        padding: 0 0.85rem;
    }

    .hero,
    .hero-content {
        height: 560px;
        min-height: 560px;
    }

    .hero-icon {
        width: 4rem;
        height: 4rem;
        font-size: 1.6rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.55rem;
    }

    .section {
        padding: 3rem 0;
    }

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

    .category-grid,
    .movie-grid,
    .compact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .movie-poster {
        height: 14rem;
    }

    .movie-card-compact .movie-poster {
        height: 12rem;
    }

    .movie-info {
        padding: 0.8rem;
    }

    .movie-line,
    .tag-row {
        display: none;
    }

    .filter-bar,
    .filter-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .filter-input,
    .filter-select,
    .small-btn {
        width: 100%;
    }

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

    .detail-cover {
        width: 180px;
        height: 260px;
    }

    .detail-title-box h1 {
        font-size: 2.2rem;
    }

    .info-list div {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
}
