:root {
    color-scheme: dark;
    --bg: #020617;
    --panel: #0f172a;
    --panel-soft: #111c33;
    --panel-deep: #08111f;
    --line: rgba(96, 165, 250, 0.22);
    --line-strong: rgba(34, 211, 238, 0.48);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --cyan: #22d3ee;
    --blue: #2563eb;
    --amber: #f59e0b;
    --pink: #ec4899;
    --shadow: 0 24px 70px rgba(2, 6, 23, 0.45);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 30rem),
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.13), transparent 26rem),
        linear-gradient(180deg, #020617 0%, #0b1120 48%, #020617 100%);
    color: var(--text);
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(30, 58, 138, 0.94), rgba(2, 6, 23, 0.96));
    border-bottom: 1px solid rgba(59, 130, 246, 0.28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

.site-nav {
    width: min(1180px, calc(100% - 32px));
    min-height: 68px;
    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;
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(34, 211, 238, 0.28);
}

.brand-name,
.footer-brand {
    font-size: 1.28rem;
    background: linear-gradient(90deg, #60a5fa, #22d3ee, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #dbeafe;
    font-weight: 650;
}

.nav-links > a,
.nav-group > a {
    transition: color 0.22s ease, transform 0.22s ease;
}

.nav-links > a:hover,
.nav-group > a:hover,
.nav-dropdown a:hover {
    color: var(--cyan);
}

.nav-group {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: -18px;
    min-width: 178px;
    padding: 10px;
    display: grid;
    gap: 4px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.22s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    padding: 10px 12px;
    border-radius: 10px;
    color: #cbd5e1;
}

.nav-dropdown a:hover {
    background: rgba(30, 64, 175, 0.42);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(59, 130, 246, 0.26);
    border-radius: 14px;
}

.nav-search input {
    width: 180px;
    color: #e0f2fe;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 8px 8px 8px 10px;
}

.nav-search button,
.filter-bar button,
.small-action,
.primary-action,
.secondary-action {
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}

.nav-search button,
.filter-bar button {
    padding: 8px 14px;
    color: white;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.8);
    color: #ffffff;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 999px;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.95);
}

.mobile-panel a {
    padding: 10px 12px;
    border-radius: 10px;
    color: #dbeafe;
    background: rgba(30, 41, 59, 0.72);
}

.hero {
    position: relative;
    height: min(640px, calc(100vh - 68px));
    min-height: 500px;
    overflow: hidden;
    background: #020617;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease;
}

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.54) 52%, rgba(2, 6, 23, 0.18)),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0) 44%, rgba(2, 6, 23, 0.36) 100%);
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100vw - 1180px) / 2));
    bottom: 82px;
    width: min(720px, calc(100% - 48px));
    z-index: 3;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    color: white;
    font-size: 0.88rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.88), rgba(37, 99, 235, 0.88));
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.hero h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero h1 {
    font-size: clamp(2.45rem, 6vw, 5.4rem);
    max-width: 820px;
    text-shadow: 0 16px 38px rgba(0, 0, 0, 0.58);
}

.hero p {
    max-width: 680px;
    margin: 22px 0;
    color: #dbeafe;
    font-size: clamp(1.02rem, 1.6vw, 1.25rem);
    line-height: 1.75;
}

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

.hero-meta a,
.hero-meta span,
.detail-meta span,
.card-meta a,
.card-meta span {
    color: #bfdbfe;
    background: rgba(15, 23, 42, 0.64);
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 999px;
}

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

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 850;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-action {
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.36);
}

.secondary-action {
    color: #e0f2fe;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(125, 211, 252, 0.26);
}

.primary-action:hover,
.secondary-action:hover,
.small-action:hover {
    transform: translateY(-2px) scale(1.02);
}

.hero-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    font-size: 2.2rem;
    line-height: 1;
    background: rgba(2, 6, 23, 0.54);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s ease;
}

.hero-control:hover {
    background: rgba(15, 23, 42, 0.82);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev {
    left: 24px;
    transform: translateY(-50%);
}

.hero-next {
    right: 24px;
    transform: translateY(-50%);
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    cursor: pointer;
    transition: width 0.24s ease, background 0.24s ease;
}

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

.section-wrap,
.page-hero,
.detail-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

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

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

.section-title span {
    display: block;
    color: var(--cyan);
    font-weight: 850;
    margin-bottom: 6px;
}

.section-title h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.15;
}

.section-title a {
    color: #bae6fd;
    font-weight: 750;
}

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

.category-card,
.category-overview-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.category-card {
    min-height: 170px;
    padding: 22px;
    border-radius: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover,
.movie-card:hover,
.category-overview-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.42);
}

.category-icon {
    display: block;
    margin-bottom: 18px;
    font-size: 2.35rem;
}

.category-card strong,
.category-card em {
    position: relative;
    z-index: 2;
    display: block;
}

.category-card strong {
    font-size: 1.1rem;
}

.category-card em {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-style: normal;
    font-size: 0.92rem;
    line-height: 1.45;
}

.tone-1 { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.tone-2 { background: linear-gradient(135deg, #7c3aed, #2563eb); }
.tone-3 { background: linear-gradient(135deg, #0891b2, #0f766e); }
.tone-4 { background: linear-gradient(135deg, #dc2626, #f97316); }
.tone-5 { background: linear-gradient(135deg, #475569, #1e3a8a); }
.tone-6 { background: linear-gradient(135deg, #db2777, #7c3aed); }

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    border-color: var(--line-strong);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0b1120;
}

.poster-link img,
.rank-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.34s ease;
}

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

.poster-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.84), transparent 54%);
}

.rank-badge,
.score-badge {
    position: absolute;
    top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 30px;
    padding: 0 10px;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.88rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}

.rank-badge {
    left: 12px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.score-badge {
    right: 12px;
    background: rgba(2, 6, 23, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.card-body {
    padding: 18px;
}

.card-meta {
    gap: 7px;
    margin-bottom: 12px;
}

.card-meta a,
.card-meta span {
    padding: 5px 9px;
    color: #bae6fd;
    font-size: 0.78rem;
}

.movie-card h3,
.rank-info h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.38;
}

.movie-card h3 a:hover,
.rank-info h3 a:hover {
    color: var(--cyan);
}

.movie-card p,
.rank-info p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.tag-row,
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-row span,
.detail-tags a {
    padding: 5px 9px;
    border-radius: 999px;
    color: #c4b5fd;
    background: rgba(88, 28, 135, 0.26);
    border: 1px solid rgba(168, 85, 247, 0.22);
    font-size: 0.78rem;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 112px 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 20px;
}

.rank-poster {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 14px;
    background: #0b1120;
}

.rank-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 950;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 16px 30px rgba(239, 68, 68, 0.24);
}

.small-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    min-height: 38px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 850;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.page-hero,
.detail-hero {
    padding: 46px 0 24px;
}

.slim-hero > div,
.detail-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(30, 64, 175, 0.35), rgba(15, 23, 42, 0.92)),
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.24), transparent 28rem);
    box-shadow: var(--shadow);
}

.slim-hero > div {
    padding: clamp(28px, 5vw, 56px);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-hero p {
    max-width: 860px;
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.8;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #bfdbfe;
    font-size: 0.94rem;
}

.breadcrumbs a:hover {
    color: var(--cyan);
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 170px 150px auto;
    gap: 12px;
    margin-bottom: 24px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.78);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 14px;
    outline: 0;
    color: #e0f2fe;
    background: rgba(2, 6, 23, 0.62);
}

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

.category-overview-card {
    padding: 22px;
    border-radius: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-overview-head {
    display: flex;
    gap: 18px;
}

.category-overview-head span {
    font-size: 2.4rem;
}

.category-overview-head h2 {
    margin: 0 0 8px;
}

.category-overview-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

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

.mini-links a {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.32);
    color: #ffffff;
    font-size: 0.86rem;
}

.detail-hero {
    padding: clamp(18px, 3vw, 28px);
    margin-top: 32px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.95fr);
    gap: 26px;
    align-items: center;
}

.player-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    background: #000000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.video-node {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    padding: 26px;
    color: white;
    border: 0;
    cursor: pointer;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(34, 211, 238, 0.26), transparent 18rem),
        linear-gradient(0deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.28));
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-card.is-playing .player-cover,
.player-cover[hidden] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-ring {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    padding-left: 4px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 20px 42px rgba(37, 99, 235, 0.44);
}

.player-cover strong {
    max-width: 80%;
    font-size: clamp(1.2rem, 2.2vw, 2rem);
}

.detail-info h1 {
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.detail-info p {
    margin: 18px 0;
    color: #dbeafe;
    font-size: 1.03rem;
    line-height: 1.78;
}

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

.detail-text article {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.78);
}

.detail-text h2 {
    margin: 0 0 14px;
    font-size: 1.35rem;
}

.detail-text p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.9;
}

.site-footer {
    margin-top: 40px;
    padding: 44px 0 26px;
    border-top: 1px solid rgba(59, 130, 246, 0.22);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.74), rgba(2, 6, 23, 0.96));
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-inner p {
    max-width: 620px;
    color: var(--muted);
    line-height: 1.75;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    gap: 10px;
}

.footer-links a {
    padding: 9px 13px;
    border-radius: 999px;
    color: #bfdbfe;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(15, 23, 42, 0.64);
}

.copyright {
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto 0;
    color: #64748b;
    font-size: 0.92rem;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1060px) {
    .nav-links {
        gap: 14px;
    }

    .nav-search input {
        width: 140px;
    }

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

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

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

@media (max-width: 820px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

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

    .hero {
        min-height: 560px;
    }

    .hero-content {
        left: 18px;
        right: 18px;
        bottom: 72px;
        width: auto;
    }

    .hero-control {
        width: 42px;
        height: 42px;
    }

    .hero-prev {
        left: 12px;
    }

    .hero-next {
        right: 12px;
    }

    .section-title,
    .footer-inner {
        display: grid;
    }

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

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

    .rank-item {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .rank-number,
    .small-action {
        display: none;
    }
}

@media (max-width: 560px) {
    .site-nav,
    .mobile-panel,
    .section-wrap,
    .page-hero,
    .detail-hero,
    .footer-inner,
    .copyright {
        width: min(100% - 24px, 1180px);
    }

    .brand-name {
        font-size: 1.06rem;
    }

    .hero {
        min-height: 620px;
    }

    .hero-meta,
    .detail-meta {
        gap: 7px;
    }

    .category-grid,
    .movie-grid,
    .movie-grid-three,
    .category-overview-grid,
    .detail-text {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .card-body,
    .detail-text article {
        padding: 18px;
    }
}
