:root {
    --rose: #e11d48;
    --rose-dark: #be123c;
    --pink: #db2777;
    --purple: #7c3aed;
    --indigo: #4f46e5;
    --slate: #0f172a;
    --text: #1f2937;
    --muted: #64748b;
    --soft: #f8fafc;
    --line: rgba(148, 163, 184, 0.26);
    --shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: radial-gradient(circle at 10% 0%, rgba(244, 63, 94, 0.09), transparent 32%), linear-gradient(180deg, #fff7fb 0%, #ffffff 22%, #f8fafc 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.7;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--pink), var(--purple));
    box-shadow: 0 16px 30px rgba(225, 29, 72, 0.28);
    font-size: 15px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    color: #475569;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rose);
    background: rgba(244, 63, 94, 0.09);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(225, 29, 72, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--rose);
    border-radius: 999px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 34px;
    min-height: 720px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 16%, rgba(219, 39, 119, 0.22), transparent 26%), radial-gradient(circle at 18% 72%, rgba(124, 58, 237, 0.14), transparent 30%);
    pointer-events: none;
}

.hero-shell {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    min-height: 610px;
    background: #111827;
    box-shadow: 0 32px 90px rgba(15, 23, 42, 0.32);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: 34px;
    padding: 56px;
    color: #fff;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.65s ease, transform 0.85s ease;
    pointer-events: none;
}

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

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.7) 42%, rgba(15, 23, 42, 0.24) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.06);
}

.hero-copy,
.hero-poster-wrap {
    position: relative;
    z-index: 2;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffe4e6;
    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.hero h1 {
    margin: 22px 0 18px;
    max-width: 760px;
    font-size: clamp(40px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero-copy p {
    max-width: 700px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    box-shadow: 0 16px 34px rgba(225, 29, 72, 0.36);
}

.btn-soft {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
}

.btn-light {
    color: var(--rose);
    background: #fff;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.hero-poster-wrap {
    justify-self: center;
    width: min(360px, 100%);
}

.hero-poster {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 10px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

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

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
}

.hero-meta span,
.movie-tags span,
.detail-badges span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.hero-meta span {
    padding: 6px 11px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.hero-dots {
    position: absolute;
    left: 56px;
    bottom: 36px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 36px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 58px;
    background: #fff;
}

.hero-search {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    max-width: 620px;
    margin-top: 28px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.hero-search input,
.filter-input,
.filter-select {
    width: 100%;
    border: 1px solid transparent;
    outline: none;
    font: inherit;
}

.hero-search input {
    padding: 0 18px;
    color: #fff;
    background: transparent;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.section {
    padding: 54px 0;
}

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

.section-kicker {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--rose);
    background: rgba(244, 63, 94, 0.1);
    font-size: 13px;
    font-weight: 900;
}

.section h1,
.section h2,
.page-hero h1,
.detail-title h1 {
    margin: 10px 0 0;
    color: #111827;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.section h1,
.page-hero h1,
.detail-title h1 {
    font-size: clamp(34px, 5vw, 58px);
}

.section h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.section p,
.page-hero p {
    color: var(--muted);
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(244, 63, 94, 0.35);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.poster {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #fce7f3, #ede9fe);
}

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

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

.poster::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.72), transparent);
}

.poster-play {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    box-shadow: 0 12px 26px rgba(225, 29, 72, 0.38);
}

.rank-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 3;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #f97316, var(--rose));
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(248, 113, 113, 0.34);
}

.movie-card-body {
    padding: 16px 16px 18px;
}

.movie-meta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 9px;
    color: var(--rose);
    font-size: 12px;
    font-weight: 900;
}

.movie-card h2 {
    min-height: 50px;
    margin: 0 0 8px;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.movie-card h2 a:hover {
    color: var(--rose);
}

.movie-card p {
    min-height: 54px;
    margin: 0 0 12px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}

.movie-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.movie-tags span,
.detail-badges span {
    padding: 5px 9px;
    color: #9f1239;
    background: #ffe4e6;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 24px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(135deg, #e11d48, #db2777 55%, #7c3aed);
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card:nth-child(2n) {
    background: linear-gradient(135deg, #7c3aed, #4f46e5 60%, #06b6d4);
}

.category-card:nth-child(3n) {
    background: linear-gradient(135deg, #0f172a, #be123c 52%, #f97316);
}

.category-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.category-card h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    font-size: 24px;
}

.category-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.category-card::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.category-pills {
    position: relative;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.category-pills a {
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 800;
    transition: background 0.25s ease, transform 0.25s ease;
}

.category-pills a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-hero {
    padding: 64px 0 28px;
}

.page-hero-card {
    overflow: hidden;
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 241, 242, 0.9));
    box-shadow: var(--shadow);
}

.filter-panel {
    display: grid;
    grid-template-columns: 1fr 180px 180px 180px;
    gap: 12px;
    margin: 26px 0 30px;
}

.filter-input,
.filter-select {
    height: 48px;
    padding: 0 16px;
    border-color: rgba(148, 163, 184, 0.32);
    border-radius: 16px;
    color: #334155;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.filter-input:focus,
.filter-select:focus {
    border-color: rgba(225, 29, 72, 0.42);
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1);
}

.empty-state {
    display: none;
    padding: 42px;
    border-radius: 26px;
    color: #64748b;
    background: #fff;
    box-shadow: var(--shadow);
    text-align: center;
}

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

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

.ranking-item {
    display: grid;
    grid-template-columns: 58px 88px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.ranking-no {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #f97316, var(--rose));
    font-weight: 900;
}

.ranking-cover {
    overflow: hidden;
    width: 72px;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    background: #fce7f3;
}

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

.ranking-main h2 {
    margin: 0 0 5px;
    font-size: 20px;
}

.ranking-main p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.ranking-meta {
    color: var(--rose);
    font-weight: 900;
    white-space: nowrap;
}

.detail-wrap {
    padding: 40px 0 64px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    color: #fff;
    background: #111827;
    box-shadow: 0 32px 90px rgba(15, 23, 42, 0.28);
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
    filter: blur(2px) saturate(1.05);
}

.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.75) 48%, rgba(15, 23, 42, 0.46));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
    padding: 42px;
}

.detail-cover {
    overflow: hidden;
    border-radius: 26px;
    aspect-ratio: 3 / 4;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

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

.detail-title h1 {
    color: #fff;
    margin-top: 12px;
}

.detail-title p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.player-section,
.article-section,
.related-section {
    margin-top: 34px;
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.72));
    cursor: pointer;
}

.player-overlay.is-hidden {
    display: none;
}

.play-circle {
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose), var(--pink));
    box-shadow: 0 22px 44px rgba(225, 29, 72, 0.42);
    font-size: 28px;
    transition: transform 0.25s ease;
}

.player-overlay:hover .play-circle {
    transform: scale(1.08);
}

.article-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.article-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
    color: #111827;
}

.article-card p {
    margin: 0 0 16px;
    color: #475569;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #fff;
}

.mini-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.mini-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.13);
}

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

.mini-card span {
    display: block;
    padding: 10px;
    font-size: 14px;
    font-weight: 800;
    color: #1f2937;
}

.site-footer {
    margin-top: 36px;
    color: #cbd5e1;
    background: linear-gradient(135deg, #0f172a, #111827 48%, #1e1b4b);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 32px;
    padding: 46px 0 34px;
}

.footer-brand {
    margin-bottom: 12px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 18px;
}

.site-footer p {
    margin: 0;
    color: #94a3b8;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links a {
    color: #cbd5e1;
    transition: color 0.25s ease;
}

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

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

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

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

    .hero-slide {
        grid-template-columns: 1fr;
        padding: 44px;
    }

    .hero-poster-wrap {
        display: none;
    }

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

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

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 74px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid rgba(148, 163, 184, 0.22);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

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

    .nav-link {
        display: block;
    }

    .hero {
        min-height: 650px;
        padding-top: 28px;
    }

    .hero-shell {
        min-height: 580px;
        border-radius: 26px;
    }

    .hero-slide {
        padding: 28px;
    }

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

    .hero-search {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .hero-search input {
        height: 44px;
    }

    .hero-dots {
        left: 28px;
        bottom: 24px;
    }

    .section-head {
        display: block;
    }

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

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

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

    .detail-hero-inner {
        grid-template-columns: 1fr;
        padding: 26px;
    }

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

    .ranking-item {
        grid-template-columns: 42px 64px 1fr;
        gap: 12px;
    }

    .ranking-meta {
        display: none;
    }

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

@media (max-width: 520px) {
    .container {
        width: min(100% - 22px, 1200px);
    }

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

    .hero-shell {
        min-height: 620px;
    }

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

    .btn {
        width: 100%;
    }

    .movie-card h2 {
        min-height: 44px;
        font-size: 16px;
    }

    .movie-card p {
        display: none;
    }

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