:root {
    --bg-deep: #020617;
    --bg-main: #0f172a;
    --bg-soft: rgba(30, 41, 59, 0.72);
    --panel: rgba(15, 23, 42, 0.82);
    --panel-strong: rgba(15, 23, 42, 0.95);
    --line: rgba(148, 163, 184, 0.2);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --subtle: #94a3b8;
    --cyan: #22d3ee;
    --cyan-dark: #0891b2;
    --green: #34d399;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 5%, rgba(34, 211, 238, 0.18), transparent 28rem),
        radial-gradient(circle at 85% 18%, rgba(79, 70, 229, 0.18), transparent 26rem),
        linear-gradient(135deg, #020617 0%, #0f172a 48%, #020617 100%);
}

body.no-scroll {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(2, 6, 23, 0.94);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(14px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 10px;
    gap: 22px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand {
    font-size: 24px;
}

.brand:hover,
.nav-links a:hover,
.footer-grid a:hover,
.section-head a:hover,
.breadcrumb a:hover {
    color: var(--cyan);
}

.brand-mark {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    box-shadow: 0 10px 28px rgba(34, 211, 238, 0.28);
    font-size: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    color: var(--muted);
    font-weight: 650;
}

.nav-links a {
    transition: color 0.2s ease;
}

.nav-toggle {
    display: none;
    border: 0;
    background: rgba(15, 23, 42, 0.72);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
}

.search-shell {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 12px;
}

.site-search {
    display: flex;
    width: min(420px, 100%);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(10px);
}

.site-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    color: white;
    padding: 11px 16px;
    background: transparent;
}

.site-search input::placeholder {
    color: var(--subtle);
}

.site-search button {
    border: 0;
    color: white;
    padding: 0 18px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    cursor: pointer;
    font-weight: 750;
}

.search-results {
    position: absolute;
    top: 52px;
    right: 0;
    width: min(560px, 100%);
    max-height: 420px;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(2, 6, 23, 0.97);
    box-shadow: var(--shadow);
    padding: 12px;
}

.search-result-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    padding: 10px;
    border-radius: 14px;
    transition: background 0.2s ease;
}

.search-result-item:hover {
    background: rgba(34, 211, 238, 0.08);
}

.search-result-item img {
    width: 64px;
    height: 84px;
    border-radius: 10px;
    object-fit: cover;
    background: #111827;
}

.search-result-item strong,
.search-result-item em {
    display: block;
}

.search-result-item em {
    margin-top: 5px;
    color: var(--subtle);
    font-size: 13px;
    font-style: normal;
}

.search-empty {
    margin: 0;
    padding: 20px;
    text-align: center;
    color: var(--subtle);
}

main {
    min-height: 70vh;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-position: center;
    background-size: cover;
    transition: opacity 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, #020617 0%, rgba(15, 23, 42, 0.72) 48%, rgba(15, 23, 42, 0.18) 100%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.38) 56%, rgba(2, 6, 23, 0.12) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 76px;
}

.hero-copy {
    width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--cyan);
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1 {
    margin: 0 0 18px;
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.hero-copy h1 {
    font-size: clamp(34px, 6vw, 68px);
}

.hero-copy h2 {
    font-size: clamp(30px, 5vw, 56px);
}

.hero-copy p,
.page-hero p {
    margin: 0 0 24px;
    max-width: 760px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.8;
}

.hero-tags,
.detail-meta,
.card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-tags {
    margin-bottom: 26px;
}

.hero-tags span,
.detail-meta span,
.card-meta span {
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(15, 23, 42, 0.6);
}

.hero-tags span,
.detail-meta span {
    padding: 7px 12px;
}

.card-meta span {
    padding: 4px 9px;
    font-size: 12px;
}

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

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

.btn:hover,
.poster-card:hover,
.category-card:hover,
.rank-item:hover,
.ranking-row:hover {
    transform: translateY(-3px);
}

.btn.primary {
    color: white;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    box-shadow: 0 14px 36px rgba(34, 211, 238, 0.25);
}

.btn.ghost {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(15, 23, 42, 0.56);
}

.btn.text {
    color: var(--cyan);
    padding-inline: 8px;
}

.btn.small {
    min-height: 38px;
    padding: 0 16px;
    font-size: 14px;
}

.hero-dots {
    position: absolute;
    z-index: 3;
    right: max(24px, calc((100vw - 1180px) / 2));
    bottom: 44px;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.8);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

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

.section {
    padding: 72px 0;
}

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

.section-head.compact {
    align-items: center;
}

.section-head h2,
.story-card h2,
.side-card h2,
.footer-grid h2 {
    margin: 0;
    color: var(--text);
}

.section-head h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
}

.section-head a {
    color: var(--muted);
    font-weight: 750;
}

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

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

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

.catalog-grid {
    align-items: stretch;
}

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

.poster-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(30, 41, 59, 0.56);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.poster-card:hover {
    border-color: rgba(34, 211, 238, 0.55);
    box-shadow: 0 22px 70px rgba(8, 145, 178, 0.18);
}

.poster-frame {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.85);
    aspect-ratio: 16 / 10;
}

.movie-card.portrait .poster-frame {
    aspect-ratio: 3 / 4;
}

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

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

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.86;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent 58%);
}

.card-year {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 4px 9px;
    border-radius: 999px;
    color: white;
    background: rgba(2, 6, 23, 0.82);
    font-size: 12px;
    font-weight: 800;
}

.play-hover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    color: white;
    font-size: 28px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.play-hover::before {
    content: "";
    position: absolute;
    width: 66px;
    height: 66px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.88);
    box-shadow: 0 18px 50px rgba(34, 211, 238, 0.25);
}

.play-hover {
    isolation: isolate;
}

.play-hover::after {
    content: "▶";
    position: relative;
    transform: translateX(2px);
}

.play-hover {
    font-size: 0;
}

.poster-card:hover .play-hover {
    opacity: 1;
}

.card-body {
    padding: 16px;
}

.card-body h3 {
    display: -webkit-box;
    min-height: 2.8em;
    margin: 0 0 8px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 16px;
    line-height: 1.4;
}

.card-body p {
    display: -webkit-box;
    min-height: 2.9em;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--subtle);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 13px;
    line-height: 1.45;
}

.wide-section {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.66), rgba(2, 6, 23, 0.3));
    border-block: 1px solid var(--line);
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
}

.ranking-panel,
.category-panel,
.story-card,
.side-card,
.category-overview-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.68);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.22);
}

.ranking-panel,
.category-panel {
    padding: 24px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 42px 64px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.45);
    transition: transform 0.2s ease, background 0.2s ease;
}

.rank-item:hover {
    background: rgba(34, 211, 238, 0.08);
}

.rank-num {
    color: var(--cyan);
    font-weight: 900;
}

.rank-item img {
    width: 64px;
    height: 74px;
    border-radius: 12px;
    object-fit: cover;
    background: #111827;
}

.rank-text strong,
.rank-text em {
    display: block;
}

.rank-text strong {
    margin-bottom: 5px;
}

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

.category-grid {
    display: grid;
    gap: 16px;
}

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

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

.category-card {
    display: flex;
    min-height: 138px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 9rem),
        rgba(30, 41, 59, 0.48);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
    border-color: rgba(34, 211, 238, 0.55);
}

.category-card span,
.category-title {
    color: white;
    font-size: 20px;
    font-weight: 900;
}

.category-card strong,
.category-overview-card p {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
}

.category-card em {
    color: var(--cyan);
    font-size: 12px;
    font-style: normal;
}

.page-hero {
    padding: 180px 0 72px;
    background:
        radial-gradient(circle at 22% 25%, rgba(34, 211, 238, 0.22), transparent 24rem),
        linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.38));
}

.compact-hero {
    min-height: 330px;
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 62px);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.chip-row a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 14px;
    color: var(--muted);
    background: rgba(15, 23, 42, 0.55);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.chip-row a:hover,
.chip-row a.active {
    color: white;
    border-color: rgba(34, 211, 238, 0.7);
    background: rgba(34, 211, 238, 0.14);
}

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

.filter-toolbar label {
    display: grid;
    gap: 8px;
    color: var(--subtle);
    font-weight: 700;
}

.filter-toolbar input,
.filter-toolbar select {
    width: 100%;
    border: 1px solid var(--line);
    outline: 0;
    border-radius: 14px;
    color: white;
    background: rgba(2, 6, 23, 0.78);
    padding: 12px 14px;
}

.filter-empty {
    margin: 0 0 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    color: var(--subtle);
    text-align: center;
    background: rgba(15, 23, 42, 0.62);
}

.category-overview-card {
    padding: 26px;
    transition: border-color 0.2s ease;
}

.category-overview-card ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
}

.category-overview-card li a {
    color: var(--muted);
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 48px 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    background: rgba(15, 23, 42, 0.62);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ranking-row:hover {
    border-color: rgba(34, 211, 238, 0.55);
    background: rgba(34, 211, 238, 0.08);
}

.ranking-index {
    color: var(--cyan);
    font-size: 20px;
    font-weight: 900;
}

.ranking-row img {
    width: 72px;
    height: 86px;
    border-radius: 12px;
    object-fit: cover;
    background: #111827;
}

.ranking-main strong,
.ranking-main em {
    display: block;
}

.ranking-main em,
.ranking-meta {
    color: var(--subtle);
    font-style: normal;
}

.ranking-main em {
    margin-top: 5px;
    line-height: 1.5;
}

.player-stage {
    padding: 130px 0 34px;
    background: #000;
}

.player-container {
    max-width: 1100px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #020617;
    aspect-ratio: 16 / 9;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.player-shell video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    cursor: pointer;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: white;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.18));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-start span {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.9);
    box-shadow: 0 24px 70px rgba(34, 211, 238, 0.28);
    font-size: 34px;
    transform: translateX(3px);
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 34px;
    padding: 48px 0 20px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--subtle);
    font-size: 14px;
}

.detail-main h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
}

.detail-lead {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.8;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.detail-tags span {
    border: 1px solid rgba(34, 211, 238, 0.35);
    border-radius: 999px;
    padding: 8px 13px;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.08);
}

.story-card {
    margin-top: 22px;
    padding: 26px;
}

.story-card h2 {
    margin-bottom: 14px;
}

.story-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
    white-space: pre-line;
}

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

.detail-cover {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.72);
}

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

.side-card {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.side-card a {
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--muted);
    background: rgba(30, 41, 59, 0.56);
}

.side-card a:hover {
    color: white;
    background: rgba(34, 211, 238, 0.12);
}

.site-footer {
    margin-top: 64px;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.86);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
    padding: 48px 0 36px;
}

.footer-grid p,
.footer-grid li,
.footer-bottom {
    color: var(--subtle);
    line-height: 1.75;
}

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

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 18px 0;
    text-align: center;
}

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

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

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

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

@media (max-width: 820px) {
    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid var(--line);
        border-radius: 22px;
        padding: 10px;
        background: rgba(2, 6, 23, 0.98);
        box-shadow: var(--shadow);
    }

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

    .nav-links a {
        padding: 12px 14px;
        border-radius: 14px;
    }

    .nav-links a:hover {
        background: rgba(34, 211, 238, 0.08);
    }

    .search-shell {
        justify-content: stretch;
    }

    .site-search {
        width: 100%;
    }

    .hero-slider {
        height: 650px;
    }

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

    .hero-dots {
        left: 24px;
        right: auto;
    }

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

    .category-grid.mini,
    .footer-grid,
    .filter-toolbar,
    .detail-side {
        grid-template-columns: 1fr;
    }

    .ranking-row {
        grid-template-columns: 42px 64px minmax(0, 1fr);
    }

    .ranking-meta {
        grid-column: 3;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand {
        font-size: 20px;
    }

    .hero-copy p,
    .page-hero p,
    .detail-lead {
        font-size: 16px;
    }

    .hero-actions,
    .section-head {
        align-items: stretch;
        flex-direction: column;
    }

    .feature-grid,
    .poster-grid {
        grid-template-columns: 1fr;
    }

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

    .page-hero {
        padding-top: 168px;
    }

    .player-stage {
        padding-top: 128px;
    }

    .story-card,
    .ranking-panel,
    .category-panel,
    .category-overview-card {
        padding: 18px;
    }
}
