:root {
    color-scheme: light;
    --red-950: #450a0a;
    --red-900: #7f1d1d;
    --red-800: #991b1b;
    --red-700: #b91c1c;
    --red-600: #dc2626;
    --amber-900: #78350f;
    --amber-800: #92400e;
    --amber-700: #b45309;
    --amber-600: #d97706;
    --amber-100: #fef3c7;
    --amber-50: #fffbeb;
    --gray-950: #030712;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(127, 29, 29, 0.15);
    --shadow-card: 0 14px 35px rgba(17, 24, 39, 0.12);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: linear-gradient(180deg, #fffbeb 0%, #ffffff 42%, #fff7ed 100%);
    color: var(--gray-900);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

body.menu-open {
    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: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(254, 242, 242, 0.96), rgba(255, 251, 235, 0.96));
    border-bottom: 4px solid var(--red-800);
    box-shadow: 0 12px 26px rgba(127, 29, 29, 0.12);
    backdrop-filter: blur(14px);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.brand-mark,
.footer-brand span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--red-700), var(--amber-700));
    color: var(--white);
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(185, 28, 28, 0.28);
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 25px;
    color: transparent;
    background: linear-gradient(90deg, var(--red-800), var(--amber-800));
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 0.02em;
}

.brand-text em {
    margin-top: 4px;
    color: var(--gray-600);
    font-size: 12px;
    font-style: normal;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    flex-wrap: wrap;
}

.nav-link {
    border-radius: 12px;
    padding: 9px 12px;
    color: var(--gray-700);
    font-weight: 700;
    font-size: 14px;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red-800);
    background: #fee2e2;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #fee2e2;
    color: var(--red-900);
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: linear-gradient(90deg, var(--red-950), var(--red-800), var(--amber-900));
    color: var(--white);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 600ms ease, transform 800ms ease;
    pointer-events: none;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.34;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.18) contrast(1.08);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 35%, rgba(245, 158, 11, 0.32), transparent 28%),
        linear-gradient(90deg, rgba(69, 10, 10, 0.94) 0%, rgba(127, 29, 29, 0.78) 42%, rgba(120, 53, 15, 0.86) 100%);
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 255, 255, 0.05) 50px, rgba(255, 255, 255, 0.05) 51px);
    pointer-events: none;
    opacity: 0.36;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 575px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 48px;
    padding: 78px 0 92px;
}

.hero-copy {
    max-width: 760px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(254, 243, 199, 0.35);
    border-radius: 999px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.12);
    color: #fde68a;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

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

.hero h1 {
    margin-top: 18px;
    font-size: clamp(42px, 7vw, 74px);
    font-weight: 950;
}

.hero h2 {
    margin-top: 10px;
    color: #fde68a;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
}

.hero p {
    max-width: 720px;
    margin: 20px 0 0;
    color: #fee2e2;
    font-size: clamp(17px, 2.2vw, 23px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    padding: 12px 20px;
    min-height: 46px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn.primary {
    background: linear-gradient(135deg, var(--red-600), var(--amber-600));
    color: var(--white);
    box-shadow: 0 16px 30px rgba(220, 38, 38, 0.3);
}

.btn.secondary,
.btn.small {
    background: #fff7ed;
    color: var(--red-800);
    border: 1px solid #fecaca;
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.13);
    color: #fff7ed;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

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

.hero-tags {
    margin-top: 18px;
}

.hero-tags span,
.card-tags span {
    border-radius: 999px;
    padding: 4px 9px;
    background: #dc2626;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.24);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

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

.hero-poster span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(220, 38, 38, 0.92);
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.hero-bottom {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hero-dots,
.hero-category-chips {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

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

.hero-dot.active {
    width: 36px;
    background: #fbbf24;
}

.hero-category-chips a {
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff7ed;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.section {
    padding: 72px 0;
}

.section.warm {
    background: linear-gradient(90deg, #fef2f2, #fffbeb);
}

.section.muted {
    background: rgba(254, 242, 242, 0.58);
}

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

.section-heading > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-heading span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--red-600), var(--amber-600));
    color: var(--white);
    font-weight: 900;
}

.section-heading h2 {
    margin: 0;
    color: var(--gray-900);
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.15;
}

.section-heading p {
    margin: 0;
    max-width: 560px;
    color: var(--gray-600);
    text-align: right;
}

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

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

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

.movie-card {
    min-width: 0;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 2px solid transparent;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: #fca5a5;
    box-shadow: 0 24px 50px rgba(127, 29, 29, 0.18);
}

.movie-card-link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.poster-frame {
    position: relative;
    margin: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--red-900), var(--amber-800));
}

.poster-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

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

.poster-frame::after {
    content: "";
    position: absolute;
    inset: 50% 0 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.poster-frame figcaption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
    border-radius: 999px;
    padding: 4px 9px;
    background: rgba(220, 38, 38, 0.92);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
}

.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-600), var(--amber-600));
    color: var(--white);
    font-weight: 950;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.movie-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.card-tags span {
    background: #fee2e2;
    color: var(--red-800);
}

.movie-card h3 {
    margin: 10px 0 7px;
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card p {
    margin: 0 0 12px;
    color: var(--gray-600);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    color: var(--gray-500);
    font-size: 12px;
}

.movie-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
}

.movie-card.compact .movie-card-link {
    flex-direction: row;
}

.movie-card.compact .poster-frame {
    width: 118px;
    min-height: 164px;
    flex: 0 0 118px;
    aspect-ratio: auto;
}

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

.filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 14px;
    margin-bottom: 26px;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border: 1px solid #fee2e2;
}

.filter-search {
    display: flex;
    gap: 10px;
}

.site-filter-input,
.site-filter-category {
    width: 100%;
    border: 1px solid #fecaca;
    border-radius: 14px;
    background: #fff7ed;
    padding: 12px 14px;
    outline: none;
    color: var(--gray-800);
}

.site-filter-input:focus,
.site-filter-category:focus {
    border-color: var(--red-600);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.filter-clear {
    border: 0;
    border-radius: 14px;
    padding: 0 16px;
    background: var(--red-700);
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
}

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

.center-actions {
    justify-content: center;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    color: var(--white);
    background: linear-gradient(90deg, var(--red-900), var(--red-800), var(--amber-900));
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero span {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 13px;
    background: rgba(255, 255, 255, 0.14);
    color: #fde68a;
    font-weight: 900;
}

.page-hero h1 {
    margin-top: 16px;
    font-size: clamp(36px, 6vw, 62px);
    font-weight: 950;
}

.page-hero p {
    max-width: 740px;
    margin: 16px 0 0;
    color: #fee2e2;
    font-size: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: #fde68a;
    font-weight: 800;
}

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

.category-preview-list,
.category-overview-list {
    display: grid;
    gap: 28px;
}

.category-preview,
.category-overview-card,
.content-card {
    border-radius: var(--radius-xl);
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #fee2e2;
}

.category-preview-head,
.category-overview-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.category-preview h3,
.category-overview-card h2,
.content-card h2,
.player-section h2 {
    margin: 0 0 8px;
    color: var(--gray-900);
    font-size: 26px;
    line-height: 1.2;
}

.category-preview p,
.category-overview-card p,
.content-card p {
    margin: 0;
    color: var(--gray-600);
}

.category-preview-head a,
.category-overview-head a {
    color: var(--red-700);
    font-weight: 900;
    white-space: nowrap;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--gray-950);
}

.detail-bg {
    position: absolute;
    inset: 0;
    opacity: 0.22;
}

.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px) saturate(1.2);
    transform: scale(1.08);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(127, 29, 29, 0.78), rgba(120, 53, 15, 0.82));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 54px 0 62px;
}

.detail-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.detail-poster {
    margin: 0;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48);
}

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

.detail-info h1 {
    margin-top: 16px;
    font-size: clamp(34px, 6vw, 62px);
    font-weight: 950;
}

.detail-one-line {
    max-width: 820px;
    margin: 18px 0 0;
    color: #fee2e2;
    font-size: 20px;
}

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

.detail-meta span {
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #fde68a;
    font-weight: 800;
}

.player-section {
    padding-top: 56px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
    color: var(--white);
    cursor: pointer;
}

.play-overlay strong {
    max-width: 80%;
    text-align: center;
    font-size: clamp(20px, 4vw, 36px);
}

.play-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-600), var(--amber-600));
    color: var(--white);
    font-size: 34px;
    box-shadow: 0 18px 40px rgba(220, 38, 38, 0.36);
}

.player-box.is-playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.player-message {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    z-index: 4;
    color: #fecaca;
    text-align: center;
    font-weight: 800;
    pointer-events: none;
}

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

.content-card p {
    font-size: 17px;
}

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

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

.side-card dd {
    margin: 0;
    color: var(--gray-900);
}

.site-footer {
    padding-top: 52px;
    background: linear-gradient(180deg, var(--gray-900), var(--gray-950));
    color: #d1d5db;
    border-top: 4px solid var(--red-800);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
    padding-bottom: 34px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 22px;
}

.site-footer p {
    max-width: 460px;
    color: #9ca3af;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.footer-links a {
    color: #d1d5db;
}

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

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 18px 16px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

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

    .hero-content {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

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

    .side-card {
        grid-column: 1 / -1;
    }
}

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

    .nav-menu {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 88px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 20px;
        background: rgba(255, 251, 235, 0.98);
        box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
        border: 1px solid #fecaca;
    }

    body.menu-open .nav-menu {
        display: flex;
    }

    .nav-link {
        padding: 12px 14px;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 58px 0 120px;
    }

    .hero-poster {
        max-width: 280px;
        transform: none;
    }

    .hero-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .movie-card.compact .movie-card-link {
        flex-direction: column;
    }

    .movie-card.compact .poster-frame {
        width: 100%;
        min-height: auto;
        flex-basis: auto;
        aspect-ratio: 3 / 4;
    }

    .filter-panel,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .category-preview-head,
    .category-overview-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading p {
        text-align: left;
    }

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

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

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

    .brand-text strong {
        font-size: 20px;
    }

    .brand-text em {
        display: none;
    }

    .brand-mark,
    .footer-brand span {
        width: 42px;
        height: 42px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero h2 {
        font-size: 27px;
    }

    .hero-category-chips {
        display: none;
    }

    .movie-grid,
    .featured-grid,
    .latest-grid,
    .rank-grid,
    .small-grid,
    .library-grid {
        grid-template-columns: 1fr;
    }

    .filter-search {
        flex-direction: column;
    }

    .section {
        padding: 52px 0;
    }

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

    .player-box {
        border-radius: 18px;
    }
}
