:root {
    --sand-50: #fdfaf7;
    --sand-100: #f8f0e8;
    --sand-200: #f2e6d9;
    --sand-300: #e8d4bd;
    --earth-100: #ede9e4;
    --earth-300: #c2b4a3;
    --earth-500: #8f7862;
    --earth-600: #786351;
    --earth-700: #635144;
    --earth-800: #53453a;
    --earth-900: #473c33;
    --desert-50: #fff7ed;
    --desert-100: #ffedd5;
    --desert-400: #f2ad6b;
    --desert-500: #ec8b3b;
    --desert-600: #dd6f1f;
    --desert-700: #b75617;
    --white: #ffffff;
    --black: #000000;
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.12), 0 2px 4px -2px rgb(0 0 0 / 0.12);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.16), 0 8px 10px -6px rgb(0 0 0 / 0.16);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--earth-900);
    background: var(--sand-50);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--sand-200);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--earth-900);
}

.brand-name {
    font-size: 24px;
    white-space: nowrap;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--desert-500), var(--desert-700));
    border-radius: 11px;
    box-shadow: 0 10px 20px rgb(221 111 31 / 0.28);
}

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

.nav-link {
    color: var(--earth-700);
    font-weight: 600;
    transition: color 0.2s ease;
}

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

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--earth-700);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 12px 0 18px;
    border-top: 1px solid var(--sand-200);
}

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

.mobile-nav-link {
    padding: 10px 0;
    color: var(--earth-700);
    font-weight: 600;
}

.hero-slider {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--earth-900);
}

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

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

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

.hero-shade,
.detail-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08));
}

.hero-content {
    position: absolute;
    left: max(32px, calc((100vw - 1180px) / 2));
    right: max(32px, calc((100vw - 1180px) / 2));
    bottom: 110px;
    max-width: 780px;
    color: var(--white);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin: 0 0 16px;
    color: var(--desert-100);
    background: rgb(255 255 255 / 0.18);
    border: 1px solid rgb(255 255 255 / 0.22);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero-content h1,
.hero-content h2 {
    margin: 0 0 14px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 720px;
    margin: 0 0 26px;
    font-size: clamp(17px, 2vw, 22px);
    color: rgb(255 255 255 / 0.9);
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: var(--white);
    background: var(--desert-600);
    box-shadow: 0 12px 24px rgb(221 111 31 / 0.28);
}

.btn-primary:hover {
    background: var(--desert-700);
}

.btn-ghost {
    color: var(--white);
    background: rgb(255 255 255 / 0.18);
    border-color: rgb(255 255 255 / 0.24);
    backdrop-filter: blur(8px);
}

.btn.full {
    width: 100%;
}

.hero-control {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: rgb(255 255 255 / 0.18);
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition: background 0.2s ease;
}

.hero-control:hover {
    background: rgb(255 255 255 / 0.30);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

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

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / 0.48);
    transition: width 0.2s ease, background 0.2s ease;
}

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

.hero-search {
    position: absolute;
    left: 50%;
    bottom: 24px;
    display: flex;
    width: min(640px, calc(100% - 32px));
    padding: 8px;
    background: rgb(255 255 255 / 0.92);
    border-radius: 999px;
    box-shadow: var(--shadow-2xl);
    transform: translateX(-50%);
}

.hero-search input,
.inline-search input,
.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid var(--sand-300);
    color: var(--earth-900);
    background: var(--white);
    outline: none;
}

.hero-search input {
    flex: 1;
    padding: 0 18px;
    border: 0;
    background: transparent;
}

.hero-search button,
.inline-search button {
    border: 0;
    color: var(--white);
    background: var(--desert-600);
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 800;
}

.page-section {
    padding: 72px 0;
}

.alt-section {
    background: linear-gradient(135deg, var(--desert-50), var(--sand-100));
}

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

.section-head h2,
.rank-panel h2,
.player-card h2,
.content-card h2,
.side-card h2 {
    margin: 0;
    color: var(--earth-900);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 900;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--earth-600);
}

.section-more {
    color: var(--desert-600);
    font-weight: 800;
    white-space: nowrap;
}

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

.category-tile {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12));
}

.category-tile img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
}

.category-tile span,
.category-tile small {
    position: relative;
    display: block;
    color: var(--white);
}

.category-tile span {
    padding: 98px 18px 4px;
    font-size: 22px;
    font-weight: 900;
}

.category-tile small {
    padding: 0 18px 18px;
    color: rgb(255 255 255 / 0.82);
}

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

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

.movie-grid-featured .movie-card:nth-child(n + 4) {
    grid-column: span 1;
}

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

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

.movie-card {
    min-width: 0;
}

.movie-card-link {
    display: block;
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-cover {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--earth-100);
}

.movie-card--large .movie-cover {
    aspect-ratio: 16 / 10;
}

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

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

.movie-year,
.rank-badge {
    position: absolute;
    top: 10px;
    padding: 4px 9px;
    color: var(--white);
    background: rgb(0 0 0 / 0.68);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.movie-year {
    right: 10px;
}

.rank-badge {
    left: 10px;
    background: var(--desert-600);
}

.movie-card-body {
    padding: 18px;
}

.movie-card-body h3 {
    display: -webkit-box;
    min-height: 54px;
    margin: 0 0 10px;
    overflow: hidden;
    color: var(--earth-900);
    font-size: 18px;
    line-height: 1.45;
    font-weight: 900;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card--large .movie-card-body h3 {
    font-size: 24px;
}

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

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--earth-500);
    font-size: 13px;
}

.movie-tags,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.movie-tags span,
.detail-tags a {
    padding: 5px 10px;
    color: var(--earth-700);
    background: var(--sand-100);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 320px);
    gap: 22px;
    overflow-x: auto;
    padding: 6px 0 18px;
    scroll-snap-type: x proximity;
}

.rail .movie-card {
    scroll-snap-align: start;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: start;
}

.rank-panel,
.player-card,
.content-card,
.side-card,
.category-overview-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

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

.rank-panel ol {
    list-style: none;
    margin: 18px 0 22px;
    padding: 0;
}

.rank-panel li + li {
    border-top: 1px solid var(--sand-200);
}

.rank-panel a {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 0;
}

.rank-panel span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--desert-600);
    border-radius: 10px;
    font-weight: 900;
}

.rank-panel strong {
    overflow: hidden;
    color: var(--earth-900);
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-panel em {
    grid-column: 2;
    color: var(--earth-500);
    font-style: normal;
    font-size: 13px;
}

.page-hero {
    padding: 74px 0;
    color: var(--earth-900);
    background: linear-gradient(135deg, var(--desert-100), var(--sand-100), var(--earth-100));
}

.page-hero h1 {
    max-width: 820px;
    margin: 0 0 16px;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.page-hero p:not(.hero-eyebrow) {
    max-width: 720px;
    margin: 0;
    color: var(--earth-700);
    font-size: 18px;
}

.inline-search {
    display: flex;
    max-width: 560px;
    margin-top: 24px;
    padding: 7px;
    background: var(--white);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
}

.inline-search input {
    flex: 1;
    border: 0;
    padding: 0 16px;
    outline: none;
}

.category-overview-list {
    display: grid;
    gap: 24px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 28px;
    padding: 26px;
}

.category-overview-text h2 {
    margin: 0 0 10px;
    color: var(--earth-900);
    font-size: 28px;
    font-weight: 900;
}

.category-overview-text p {
    margin: 0 0 20px;
    color: var(--earth-600);
}

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

.small-movie,
.small-movie-list .small-movie {
    display: grid;
    gap: 8px;
    color: var(--earth-800);
    font-weight: 800;
    font-size: 13px;
}

.small-movie img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
    background: var(--earth-100);
}

.small-movie span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 14px;
    margin-bottom: 30px;
}

.filter-bar-wide {
    grid-template-columns: minmax(0, 1fr) 190px 160px;
}

.filter-bar input,
.filter-bar select {
    height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    box-shadow: 0 1px 0 rgb(0 0 0 / 0.02);
}

.empty-state {
    display: none;
    padding: 40px;
    color: var(--earth-600);
    background: var(--white);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.empty-state.is-visible {
    display: block;
}

.detail-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    color: var(--white);
    background: var(--earth-900);
}

.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px);
    transform: scale(1.04);
}

.detail-hero-inner {
    position: relative;
    z-index: 1;
    min-height: 620px;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 40px;
    align-items: end;
    padding: 86px 0 70px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: rgb(255 255 255 / 0.78);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--desert-100);
}

.detail-info h1 {
    max-width: 850px;
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.detail-one-line {
    max-width: 780px;
    margin: 0 0 18px;
    color: rgb(255 255 255 / 0.9);
    font-size: 20px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-meta span {
    padding: 6px 12px;
    background: rgb(255 255 255 / 0.18);
    border: 1px solid rgb(255 255 255 / 0.18);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

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

.detail-tags a {
    color: var(--white);
    background: rgb(255 255 255 / 0.16);
    border: 1px solid rgb(255 255 255 / 0.18);
}

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

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

.player-card,
.content-card,
.side-card {
    padding: 24px;
}

.player-card h2,
.content-card h2,
.side-card h2 {
    margin-bottom: 18px;
    font-size: 24px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #111111;
    border-radius: 22px;
    box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.08);
}

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

.player-start {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: var(--white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.24));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    color: var(--white);
    background: var(--desert-600);
    border-radius: 50%;
    box-shadow: 0 18px 35px rgb(0 0 0 / 0.35);
    font-size: 34px;
}

.player-start strong {
    font-size: 20px;
}

.content-card p {
    margin: 0;
    color: var(--earth-700);
    font-size: 17px;
    line-height: 1.9;
}

.detail-side {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 88px;
}

.side-card dl {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px 12px;
    margin: 0;
}

.side-card dt {
    color: var(--earth-500);
    font-weight: 800;
}

.side-card dd {
    margin: 0;
    color: var(--earth-800);
}

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

.small-movie-list .small-movie {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
}

.site-footer {
    padding: 46px 0;
    color: var(--earth-100);
    background: var(--earth-900);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    gap: 18px;
    text-align: center;
    justify-items: center;
}

.footer-brand {
    color: var(--white);
    font-size: 22px;
}

.site-footer p {
    max-width: 680px;
    margin: 0;
    color: rgb(255 255 255 / 0.72);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    color: rgb(255 255 255 / 0.82);
    font-weight: 700;
}

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

.footer-copy {
    font-size: 13px;
}

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

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

    .rank-panel,
    .detail-side {
        position: static;
    }
}

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

    .menu-toggle {
        display: block;
    }

    .brand-name {
        font-size: 20px;
    }

    .hero-slider {
        height: 78vh;
        min-height: 560px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        bottom: 128px;
    }

    .hero-control {
        display: none;
    }

    .hero-search {
        border-radius: 22px;
    }

    .hero-search input {
        min-width: 0;
    }

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

    .category-grid,
    .movie-grid,
    .movie-grid-featured,
    .movie-grid-archive,
    .movie-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .category-overview-card,
    .detail-hero-inner {
        grid-template-columns: 1fr;
    }

    .detail-hero-inner {
        align-items: end;
        gap: 24px;
        padding-top: 54px;
    }

    .detail-poster {
        max-width: 220px;
    }

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

    .filter-bar,
    .filter-bar-wide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .container,
    .nav-wrap,
    .mobile-nav,
    .footer-inner {
        width: min(100% - 24px, 1180px);
    }

    .hero-content h1,
    .hero-content h2,
    .page-hero h1,
    .detail-info h1 {
        font-size: 34px;
    }

    .hero-content p,
    .detail-one-line {
        font-size: 16px;
    }

    .hero-search {
        display: grid;
        gap: 8px;
        padding: 10px;
        border-radius: 18px;
    }

    .hero-search input {
        height: 40px;
        padding: 0 10px;
    }

    .category-grid,
    .movie-grid,
    .movie-grid-featured,
    .movie-grid-archive,
    .movie-grid-compact {
        grid-template-columns: 1fr;
    }

    .movie-card-body h3 {
        min-height: auto;
    }

    .page-section {
        padding: 48px 0;
    }

    .page-hero {
        padding: 54px 0;
    }

    .player-card,
    .content-card,
    .side-card,
    .category-overview-card {
        padding: 18px;
        border-radius: 18px;
    }
}
