* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #f8fafc;
    color: #0f172a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container-custom {
    width: min(1280px, calc(100% - 32px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e2e8f0;
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    align-items: center;
    min-height: 72px;
    gap: 28px;
}

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

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #2563eb;
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.brand-text,
.footer-brand span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name,
.footer-brand strong {
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
}

.brand-sub,
.footer-brand small {
    margin-top: 3px;
    font-size: 11px;
    color: #64748b;
    letter-spacing: 0.12em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 600;
    color: #334155;
}

.desktop-nav a,
.nav-dropdown button {
    border: 0;
    background: transparent;
    color: #334155;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.nav-dropdown:hover button {
    color: #2563eb;
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    display: grid;
    width: 250px;
    gap: 4px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel a {
    padding: 9px 12px;
    border-radius: 10px;
    color: #475569;
}

.dropdown-panel a:hover {
    background: #eff6ff;
}

.nav-search {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.nav-search input,
.mobile-panel input,
.quick-search input,
.filter-bar input,
.filter-bar select {
    border: 1px solid #dbe4ee;
    border-radius: 12px;
    background: #f8fafc;
    color: #0f172a;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-search input {
    width: 250px;
    padding: 10px 14px;
}

.nav-search input:focus,
.mobile-panel input:focus,
.quick-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.nav-search button,
.mobile-panel button,
.quick-search button {
    border: 0;
    border-radius: 12px;
    background: #2563eb;
    color: #ffffff;
    padding: 10px 16px;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f1f5f9;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #334155;
}

.mobile-panel {
    display: none;
    padding: 0 16px 18px;
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
}

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

.mobile-panel nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 16px 0;
}

.mobile-panel nav a {
    padding: 11px 12px;
    border-radius: 12px;
    background: #f8fafc;
    color: #334155;
    font-weight: 700;
}

.mobile-panel form {
    display: flex;
    gap: 8px;
}

.mobile-panel input {
    width: 100%;
    padding: 11px 12px;
}

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

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

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

.hero-bg,
.hero-bg img,
.hero-bg span {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
    filter: saturate(1.05);
}

.hero-bg span {
    background: linear-gradient(to top, #0f172a 0%, rgba(15, 23, 42, 0.72) 48%, rgba(15, 23, 42, 0.24) 100%);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    align-items: center;
    min-height: 600px;
    gap: 48px;
    color: #ffffff;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #60a5fa;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 74px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p {
    max-width: 720px;
    margin: 20px 0 0;
    color: #dbe4ee;
    font-size: 18px;
}

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

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

.hero-tags span,
.tag-row span,
.detail-tags a {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 700;
}

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

.btn-primary,
.btn-glass,
.side-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 12px 22px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover,
.side-link:hover {
    transform: translateY(-2px);
    background: #1d4ed8;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    backdrop-filter: blur(12px);
}

.btn-glass:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
    color: #cbd5e1;
    font-size: 14px;
}

.hero-info span {
    padding-right: 12px;
    border-right: 1px solid rgba(203, 213, 225, 0.35);
}

.hero-info span:last-child {
    border-right: 0;
}

.hero-poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: 28px;
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.38);
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #ffffff;
}

.hero-side-panel {
    position: absolute;
    right: max(24px, calc((100vw - 1280px) / 2));
    bottom: 34px;
    z-index: 6;
    width: min(360px, calc(100vw - 48px));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.72);
    color: #ffffff;
    backdrop-filter: blur(16px);
}

.hero-side-panel h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.side-link {
    width: 100%;
    margin-top: 12px;
    background: #2563eb;
    color: #ffffff;
}

.quick-search {
    position: relative;
    margin-top: -1px;
    background: #0f172a;
    color: #ffffff;
}

.quick-search-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
    gap: 28px;
    align-items: center;
    padding: 34px 0;
}

.quick-search h2 {
    margin: 0 0 6px;
    font-size: 28px;
}

.quick-search p {
    margin: 0;
    color: #cbd5e1;
}

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

.quick-search input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

.content-section {
    padding: 72px 0;
    background: #ffffff;
}

.section-alt {
    background: #f8fafc;
}

.section-gradient {
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
}

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

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

.section-heading p {
    margin: 8px 0 0;
    color: #64748b;
}

.section-heading a {
    color: #2563eb;
    font-weight: 800;
}

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

.category-tile,
.category-card-large {
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.category-tile {
    min-height: 170px;
    padding: 24px;
}

.category-tile:hover,
.category-card-large:hover,
.movie-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.category-tile span,
.category-card-large span {
    color: #2563eb;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.category-tile strong,
.category-card-large h2 {
    display: block;
    margin-top: 14px;
    font-size: 22px;
    color: #0f172a;
}

.category-tile small,
.category-card-large p {
    display: block;
    margin-top: 10px;
    color: #64748b;
    font-size: 14px;
}

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

.category-card-large {
    min-height: 260px;
    padding: 26px;
    color: #ffffff;
}

.category-card-large img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    transition: transform 0.35s ease;
}

.category-card-large:hover img {
    transform: scale(1.06);
}

.category-card-large span,
.category-card-large div {
    position: relative;
    z-index: 1;
}

.category-card-large h2,
.category-card-large p {
    color: #ffffff;
}

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

.horizontal-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 320px);
    gap: 18px;
    overflow-x: auto;
    padding: 2px 2px 18px;
    scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.movie-card {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0f172a;
}

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

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

.poster-gradient {
    position: absolute;
    inset: auto 0 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
}

.play-chip {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.92);
    color: #ffffff;
    font-size: 15px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f59e0b;
    color: #ffffff;
    font-size: 13px;
}

.card-body {
    padding: 16px;
}

.card-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

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

.card-body h3 {
    margin: 12px 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.card-body h3 a:hover {
    color: #2563eb;
}

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

.tag-row span {
    background: #eff6ff;
    color: #2563eb;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0;
    background: #0f172a;
    color: #ffffff;
}

.soft-hero {
    background: linear-gradient(135deg, #2563eb 0%, #334155 100%);
}

.rank-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px 180px;
    gap: 12px;
    margin-bottom: 28px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    padding: 12px 14px;
}

.empty-state {
    display: none;
    margin: 36px 0 0;
    padding: 28px;
    border-radius: 18px;
    background: #ffffff;
    color: #64748b;
    text-align: center;
}

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

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

.compact-card {
    position: relative;
    display: grid;
    grid-template-columns: 76px 34px 1fr;
    gap: 10px;
    align-items: center;
    min-height: 72px;
    border-radius: 14px;
    color: inherit;
}

.compact-card img {
    width: 76px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

.compact-card b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #60a5fa;
    font-size: 12px;
}

.compact-card strong,
.compact-card small {
    grid-column: 3;
}

.compact-card strong {
    align-self: end;
    overflow: hidden;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.compact-card small {
    align-self: start;
    color: #94a3b8;
    font-size: 12px;
}

.detail-main {
    background: #f8fafc;
}

.player-section {
    background: #020617;
    padding: 26px 0 36px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: #cbd5e1;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #60a5fa;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    background: #0f172a;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.movie-player {
    display: block;
    width: 100%;
    height: 100%;
    background: #000000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 0;
    color: #ffffff;
    background: transparent;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover,
.player-mask {
    position: absolute;
    inset: 0;
}

.player-cover {
    background-size: cover;
    background-position: center;
    filter: brightness(0.48);
}

.player-mask {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.26), rgba(2, 6, 23, 0.88));
}

.player-button,
.player-title {
    position: relative;
    z-index: 1;
}

.player-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    background: #2563eb;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
    font-size: 30px;
    line-height: 1;
}

.player-title {
    max-width: min(90%, 680px);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 900;
    text-align: center;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
}

.detail-article,
.sidebar-box {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.detail-article {
    padding: 28px;
}

.detail-head {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 30px;
}

.detail-head img {
    aspect-ratio: 2 / 3;
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
}

.detail-head h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
}

.lead-text {
    margin: 18px 0;
    color: #334155;
    font-size: 18px;
    font-weight: 700;
}

.detail-tags a {
    background: #eff6ff;
    color: #2563eb;
}

.detail-article section {
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
    margin-top: 24px;
}

.detail-article h2,
.sidebar-box h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.detail-article p {
    margin: 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.9;
}

.detail-sidebar {
    align-self: start;
    position: sticky;
    top: 98px;
}

.sidebar-box {
    padding: 18px;
}

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

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

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
}

.footer-brand strong {
    color: #ffffff;
}

.footer-brand small {
    color: #94a3b8;
}

.site-footer p,
.site-footer li {
    color: #94a3b8;
    font-size: 14px;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li + li {
    margin-top: 8px;
}

.site-footer a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    padding: 18px;
    color: #94a3b8;
    text-align: center;
    font-size: 13px;
}

[data-card].is-hidden {
    display: none;
}

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

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-right: 390px;
    }

    .hero-poster {
        display: none;
    }

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

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

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

    .detail-sidebar {
        position: static;
    }

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

@media (max-width: 820px) {
    .container-custom {
        width: min(100% - 24px, 1280px);
    }

    .hero-slider,
    .hero-content {
        min-height: 620px;
    }

    .hero-content {
        display: flex;
        align-items: center;
        padding-right: 0;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-side-panel {
        display: none;
    }

    .quick-search-inner,
    .quick-search form,
    .filter-bar {
        grid-template-columns: 1fr;
    }

    .quick-search form,
    .mobile-panel form {
        flex-direction: column;
    }

    .section-heading {
        display: block;
    }

    .section-heading a {
        display: inline-flex;
        margin-top: 12px;
    }

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

    .category-grid,
    .category-large-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-head img {
        width: min(220px, 70vw);
    }

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

@media (max-width: 520px) {
    .brand-icon {
        width: 38px;
        height: 38px;
    }

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

    .hero-slider,
    .hero-content {
        min-height: 560px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 38px;
    }

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

    .movie-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .detail-article {
        padding: 18px;
    }

    .player-button {
        width: 68px;
        height: 68px;
        font-size: 24px;
    }
}
