:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --sky: #38bdf8;
    --sky-dark: #0284c7;
    --emerald: #34d399;
    --ink: #172033;
    --muted: #64748b;
    --soft: #f8fafc;
    --line: #e2e8f0;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    --card-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background: linear-gradient(135deg, rgba(253, 242, 248, 0.85), #ffffff 42%, rgba(240, 249, 255, 0.96));
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.72);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.logo strong {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, var(--pink), var(--sky), var(--emerald));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-mark {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pink), var(--sky));
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.32);
}

.logo-mark span {
    position: absolute;
    left: 14px;
    top: 10px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #ffffff;
}

.logo-mark::after {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--emerald);
    box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.18);
    animation: pulse 1.6s ease-in-out infinite;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.desktop-nav a {
    color: #334155;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--pink);
    transform: translateY(-1px);
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 310px;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search:focus-within {
    border-color: rgba(236, 72, 153, 0.48);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.10);
}

.header-search input,
.mobile-search input,
.filter-input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--ink);
}

.header-search input {
    padding: 10px 12px 10px 18px;
}

.header-search button,
.mobile-search button {
    border: 0;
    padding: 10px 18px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--sky));
    cursor: pointer;
    font-weight: 800;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    color: var(--ink);
    background: #f1f5f9;
    cursor: pointer;
    font-size: 24px;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-search {
    display: flex;
    overflow: hidden;
    border-radius: 999px;
    background: #f1f5f9;
    margin-bottom: 14px;
}

.mobile-search input {
    padding: 12px 16px;
}

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

.mobile-panel nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.94);
    font-weight: 700;
}

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

.hero {
    position: relative;
    min-height: calc(100vh - 68px);
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 12% 16%, rgba(236, 72, 153, 0.16), transparent 24%),
        radial-gradient(circle at 80% 22%, rgba(56, 189, 248, 0.18), transparent 26%),
        linear-gradient(135deg, #fff7fb, #ffffff 46%, #f0fbff);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.72;
}

.hero::before {
    width: 260px;
    height: 260px;
    right: 8%;
    bottom: 8%;
    background: rgba(52, 211, 153, 0.18);
}

.hero::after {
    width: 180px;
    height: 180px;
    left: 8%;
    bottom: 14%;
    background: rgba(236, 72, 153, 0.12);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 60px 0;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 44px;
    align-items: center;
}

.hero-slide.is-active {
    display: grid;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--pink-dark);
    background: rgba(236, 72, 153, 0.10);
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 6vw, 78px);
    line-height: 1.03;
    font-weight: 950;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--pink), var(--sky), var(--emerald));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 4vw, 50px);
    line-height: 1.12;
    font-weight: 900;
    color: #1f2937;
}

.hero p {
    margin: 0 0 26px;
    max-width: 680px;
    color: #475569;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
}

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

.btn-primary,
.btn-secondary,
.btn-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-primary {
    padding: 13px 26px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--pink), var(--sky));
    box-shadow: 0 18px 35px rgba(236, 72, 153, 0.25);
}

.btn-secondary {
    padding: 12px 24px;
    color: #1f2937;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(226, 232, 240, 0.96);
}

.btn-soft {
    padding: 10px 18px;
    color: var(--pink-dark);
    background: rgba(236, 72, 153, 0.10);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-soft:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-poster-card {
    position: absolute;
    inset: 0 34px 0 34px;
    padding: 14px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    transform: rotate(2deg);
}

.hero-poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    background: linear-gradient(135deg, #fdf2f8, #e0f2fe);
}

.hero-mini-card {
    position: absolute;
    left: 0;
    bottom: 38px;
    width: min(320px, 86%);
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(14px);
}

.hero-mini-card img {
    width: 86px;
    height: 112px;
    border-radius: 18px;
    object-fit: cover;
    background: linear-gradient(135deg, #fdf2f8, #e0f2fe);
}

.hero-mini-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
}

.hero-mini-card span {
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.hero-dot {
    width: 42px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 64px;
    background: linear-gradient(90deg, var(--pink), var(--sky));
}

.section {
    padding: 72px 0;
}

.section.alt {
    background: linear-gradient(90deg, rgba(253, 242, 248, 0.74), rgba(240, 249, 255, 0.74), rgba(236, 253, 245, 0.64));
}

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

.section-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    color: #1f2937;
    font-weight: 950;
}

.section-lead {
    margin: 10px 0 0;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.8;
}

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

.movie-grid.dense {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--card-shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.15);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf2f8, #e0f2fe);
}

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

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

.card-badge,
.duration {
    position: absolute;
    z-index: 2;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.card-badge {
    left: 12px;
    top: 12px;
    padding: 6px 10px;
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.92), rgba(56, 189, 248, 0.88));
}

.duration {
    right: 12px;
    bottom: 12px;
    padding: 5px 9px;
    background: rgba(15, 23, 42, 0.72);
}

.card-body {
    padding: 16px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
}

.card-body h3 a:hover {
    color: var(--pink);
}

.card-body p {
    min-height: 48px;
    margin: 0 0 12px;
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
}

.card-meta span {
    padding: 4px 8px;
    border-radius: 999px;
    background: #f1f5f9;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 200px;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--card-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: auto -30px -52px auto;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(56, 189, 248, 0.18));
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 48px rgba(15, 23, 42, 0.14);
}

.category-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--sky));
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 18px;
}

.category-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.category-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
}

.category-card span:last-child {
    position: relative;
    z-index: 1;
    color: var(--pink-dark);
    font-weight: 900;
}

.feature-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 26px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 54px 74px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.rank-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pink), var(--sky));
    font-weight: 950;
}

.rank-item img {
    width: 74px;
    height: 96px;
    border-radius: 16px;
    object-fit: cover;
    background: linear-gradient(135deg, #fdf2f8, #e0f2fe);
}

.rank-copy h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.rank-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.rank-meta {
    color: var(--pink-dark);
    font-weight: 900;
    white-space: nowrap;
}

.page-hero {
    padding: 72px 0 42px;
    background: linear-gradient(90deg, rgba(253, 242, 248, 0.92), rgba(240, 249, 255, 0.92), rgba(236, 253, 245, 0.82));
}

.page-hero h1 {
    max-width: 900px;
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 950;
    color: #1f2937;
}

.page-hero p {
    max-width: 820px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: #64748b;
    font-weight: 700;
}

.breadcrumb a {
    color: var(--pink-dark);
}

.filter-bar {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px;
    margin-bottom: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
}

.filter-input {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: #f1f5f9;
}

.filter-result {
    color: var(--muted);
    font-weight: 800;
    white-space: nowrap;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: start;
}

.detail-poster {
    position: sticky;
    top: 94px;
    padding: 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
}

.detail-poster img {
    width: 100%;
    border-radius: 22px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    background: linear-gradient(135deg, #fdf2f8, #e0f2fe);
}

.detail-content {
    display: grid;
    gap: 24px;
}

.info-panel,
.player-panel,
.related-panel {
    padding: 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--card-shadow);
}

.player-panel h2,
.info-panel h2,
.related-panel h2 {
    margin: 0 0 18px;
    font-size: 26px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #020617;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.38);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.16), rgba(2, 6, 23, 0.72));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--sky));
    box-shadow: 0 16px 38px rgba(236, 72, 153, 0.35);
    font-size: 34px;
    padding-left: 4px;
}

.player-overlay strong {
    font-size: 18px;
    letter-spacing: 0.04em;
}

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

.meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
}

.meta-grid span,
.tag-list span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #334155;
    background: #f1f5f9;
    font-weight: 800;
    font-size: 14px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tag-list span:nth-child(3n + 1) {
    color: var(--pink-dark);
    background: rgba(236, 72, 153, 0.10);
}

.tag-list span:nth-child(3n + 2) {
    color: var(--sky-dark);
    background: rgba(56, 189, 248, 0.12);
}

.prose p {
    margin: 0 0 16px;
    color: #475569;
    line-height: 1.92;
    font-size: 16px;
}

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

.compact-link {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #f8fafc;
    transition: transform 0.2s ease, background 0.2s ease;
}

.compact-link:hover {
    transform: translateY(-3px);
    background: #fff1f7;
}

.compact-link img {
    width: 68px;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
    background: linear-gradient(135deg, #fdf2f8, #e0f2fe);
}

.compact-link strong {
    display: block;
    margin-bottom: 6px;
    color: #1f2937;
    line-height: 1.35;
}

.compact-link em {
    display: block;
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
    line-height: 1.45;
}

.site-footer {
    margin-top: 72px;
    background: linear-gradient(135deg, #fff1f7, #f0f9ff, #ecfdf5);
    border-top: 1px solid rgba(226, 232, 240, 0.76);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 40px;
}

.footer-brand p {
    max-width: 460px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-inner h3 {
    margin: 0 0 16px;
}

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

.footer-inner a:hover {
    color: var(--pink);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 26px;
    color: var(--muted);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.hidden-card {
    display: none !important;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.18);
        opacity: 0.78;
    }
}

@media (max-width: 1060px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-slide,
    .feature-row,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 460px;
    }

    .detail-poster {
        position: relative;
        top: auto;
        max-width: 380px;
    }

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

@media (max-width: 760px) {
    .header-inner {
        height: 64px;
    }

    .logo strong {
        font-size: 20px;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 46px 0;
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-poster-card {
        inset: 0 10px 0 40px;
    }

    .hero-mini-card {
        bottom: 16px;
    }

    .section {
        padding: 48px 0;
    }

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

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

    .rank-item {
        grid-template-columns: 42px 64px 1fr;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .movie-grid,
    .movie-grid.dense,
    .category-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 38px 56px 1fr;
        gap: 10px;
    }

    .rank-item img {
        width: 56px;
        height: 74px;
    }

    .info-panel,
    .player-panel,
    .related-panel {
        padding: 20px;
        border-radius: 24px;
    }
}
