:root {
    color-scheme: light;
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --secondary-500: #7c3aed;
    --secondary-600: #6d28d9;
    --accent-500: #f97316;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    --white: #ffffff;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.10);
    --shadow-card: 0 14px 30px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--neutral-900);
    background: var(--neutral-50);
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.header-inner {
    max-width: 1240px;
    height: 76px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.brand-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--white);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-600), var(--secondary-600));
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 1.22rem;
    letter-spacing: -0.03em;
}

.brand-text small {
    margin-top: 4px;
    color: var(--neutral-500);
    font-size: 0.75rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: var(--neutral-700);
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    width: min(310px, 28vw);
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.header-search input,
.mobile-panel input,
.inline-filter input,
.large-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--neutral-900);
    background: transparent;
}

.header-search input {
    padding: 11px 84px 11px 18px;
}

.header-search button,
.large-search button,
.mobile-panel button {
    border: 0;
    color: var(--white);
    background: var(--primary-600);
    cursor: pointer;
}

.header-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 16px;
    border-radius: 999px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: var(--neutral-800);
    background: var(--neutral-100);
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--neutral-200);
    background: var(--white);
}

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

.mobile-panel nav,
.mobile-panel form {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 20px;
}

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

.mobile-panel a {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--neutral-700);
    background: var(--neutral-50);
}

.mobile-panel form {
    display: flex;
    gap: 10px;
    padding-top: 0;
}

.mobile-panel input {
    padding: 12px 14px;
    border: 1px solid var(--neutral-200);
    border-radius: 14px;
}

.mobile-panel button {
    padding: 0 18px;
    border-radius: 14px;
}

.hero-carousel {
    position: relative;
    min-height: 650px;
    color: var(--white);
    overflow: hidden;
    background: var(--neutral-900);
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: saturate(1.1);
}

.hero-overlay,
.detail-backdrop::after,
.page-hero-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 18% 24%, rgba(59, 130, 246, 0.56), transparent 34%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.16));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 40px));
    min-height: 650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.45fr);
    align-items: center;
    gap: 52px;
    padding: 70px 0 92px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    padding: 7px 12px;
    color: #dbeafe;
    background: rgba(30, 64, 175, 0.42);
    border: 1px solid rgba(219, 234, 254, 0.3);
}

.hero-copy h1 {
    margin: 22px 0 18px;
    max-width: 850px;
    font-size: clamp(2.7rem, 7vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: -0.08em;
}

.hero-copy p {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(239, 246, 255, 0.92);
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.82;
}

.hero-tags,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.detail-meta span {
    padding: 7px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-600), var(--secondary-600));
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.32);
}

.primary-button:hover,
.ghost-button:hover,
.movie-card:hover,
.category-tile:hover {
    transform: translateY(-3px);
}

.ghost-button {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(14px);
}

.ghost-button.dark {
    color: var(--primary-700);
    background: rgba(239, 246, 255, 0.8);
    border-color: rgba(37, 99, 235, 0.18);
}

.primary-button.small {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 0.92rem;
}

.hero-poster {
    display: block;
    border-radius: 30px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 72px rgba(2, 6, 23, 0.42);
    backdrop-filter: blur(18px);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 22px;
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-controls > button,
.hero-dots button {
    border: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.hero-controls > button {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1.6rem;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 28px;
    height: 8px;
    border-radius: 999px;
    opacity: 0.55;
}

.hero-dots button.active {
    width: 42px;
    opacity: 1;
    background: var(--white);
}

.section-wrap {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 64px 0;
}

.section-highlight {
    margin-top: -36px;
    position: relative;
    z-index: 5;
}

.section-title-row,
.category-overview-head,
.panel-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-kicker {
    color: var(--primary-700);
    margin-bottom: 10px;
}

.section-title-row h2,
.panel-heading h2,
.category-overview-head h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.15;
    letter-spacing: -0.05em;
}

.text-link {
    color: var(--primary-700);
    font-weight: 800;
}

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

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    box-shadow: var(--shadow-soft);
}

.poster-link {
    position: relative;
    display: block;
    background: var(--neutral-200);
}

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

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

.card-badge {
    right: 10px;
    bottom: 10px;
    padding: 5px 10px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.64);
}

.card-rank {
    left: 10px;
    top: 10px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent-500), var(--secondary-600));
}

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

.movie-meta-line {
    display: flex;
    gap: 8px;
    color: var(--neutral-500);
    font-size: 0.82rem;
}

.movie-card h3 {
    margin: 8px 0 7px;
    font-size: 1.02rem;
    line-height: 1.35;
}

.movie-card h3 a:hover {
    color: var(--primary-600);
}

.movie-card p {
    min-height: 46px;
    margin: 0;
    color: var(--neutral-600);
    font-size: 0.9rem;
    line-height: 1.65;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.tag-row span {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--primary-700);
    background: var(--primary-50);
    font-size: 0.76rem;
    font-weight: 700;
}

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.rank-panel,
.category-overview-block,
.detail-article {
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.rank-panel {
    position: sticky;
    top: 96px;
    padding: 24px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 38px 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 16px;
    background: var(--neutral-50);
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
    transform: translateX(3px);
    background: var(--primary-50);
}

.rank-number {
    color: var(--primary-700);
    font-size: 1.05rem;
    font-weight: 900;
}

.rank-item img {
    width: 56px;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-content {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.rank-content strong,
.rank-content small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-content small {
    color: var(--neutral-500);
}

.rank-item em {
    color: var(--accent-500);
    font-style: normal;
    font-weight: 900;
}

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

.category-tile {
    display: block;
    min-height: 250px;
    padding: 16px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-700), var(--secondary-600));
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease;
}

.category-posters {
    display: flex;
    margin-bottom: 18px;
}

.category-posters img {
    width: 34%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 30px rgba(2, 6, 23, 0.18);
}

.category-posters img + img {
    margin-left: -14px;
}

.category-tile h3 {
    margin: 0 0 8px;
    font-size: 1.18rem;
}

.category-tile p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.62;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-700), var(--secondary-600));
}

.simple-hero {
    padding: 78px max(20px, calc((100vw - 1240px) / 2)) 82px;
}

.simple-hero > div,
.page-hero-content {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
}

.simple-hero h1,
.page-hero h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.3rem, 6vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.07em;
}

.simple-hero p,
.page-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.12rem;
    line-height: 1.8;
}

.category-hero {
    min-height: 450px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-content {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 76px 0 90px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

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

.inline-filter input {
    width: min(280px, 100%);
    padding: 13px 16px;
    border: 1px solid var(--neutral-200);
    border-radius: 16px;
    background: var(--white);
}

.category-overview {
    display: grid;
    gap: 26px;
}

.category-overview-block {
    padding: 26px;
}

.category-overview-head p {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--neutral-600);
    line-height: 1.7;
}

.four-preview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.full-rank-list {
    max-width: 920px;
    margin: 0 auto;
}

.large-search {
    display: flex;
    width: min(680px, 100%);
    gap: 12px;
    margin-top: 28px;
}

.large-search input {
    min-height: 54px;
    padding: 0 18px;
    border-radius: 16px;
    color: var(--neutral-900);
    background: var(--white);
}

.large-search button {
    padding: 0 24px;
    border-radius: 16px;
    font-weight: 800;
}

.result-note {
    color: var(--neutral-500);
    font-weight: 700;
}

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

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(2px) saturate(1.05);
    transform: scale(1.02);
}

.detail-inner {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 52px 0 70px;
}

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

.detail-poster {
    padding: 10px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.34);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 20px;
}

.detail-copy h1 {
    margin: 18px 0 16px;
    font-size: clamp(2.2rem, 5.8vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.07em;
}

.one-line {
    max-width: 860px;
    margin: 0 0 22px;
    color: rgba(239, 246, 255, 0.9);
    font-size: 1.14rem;
    line-height: 1.8;
}

.detail-tags span {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.12);
}

.detail-section {
    padding-top: 44px;
    padding-bottom: 44px;
}

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

.movie-video,
.player-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.movie-video {
    background: #020617;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    color: var(--white);
    cursor: pointer;
    background: #020617;
}

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

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.58) saturate(1.08);
}

.play-ring {
    position: relative;
    z-index: 2;
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
}

.play-ring span {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--primary-700);
    background: var(--white);
    font-size: 1.5rem;
    padding-left: 4px;
}

.detail-article {
    padding: clamp(24px, 5vw, 42px);
}

.detail-article h2 {
    margin: 0 0 14px;
    font-size: 1.45rem;
}

.detail-article h2 + p {
    margin-top: 0;
}

.detail-article p {
    color: var(--neutral-700);
    font-size: 1.04rem;
    line-height: 1.9;
}

.site-footer {
    margin-top: 54px;
    color: var(--neutral-300);
    background: var(--neutral-900);
}

.footer-inner {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 56px 0;
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.7fr;
    gap: 42px;
}

.brand-footer .brand-text strong {
    color: var(--white);
}

.footer-brand p {
    max-width: 520px;
    margin: 18px 0 0;
    color: var(--neutral-400);
    line-height: 1.75;
}

.footer-links h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 1rem;
}

.footer-links div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.footer-links a {
    color: var(--neutral-400);
    font-size: 0.94rem;
}

.footer-links a:hover {
    color: var(--primary-100);
}

.footer-bottom {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    color: var(--neutral-500);
    font-size: 0.92rem;
}

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

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

    .hero-content,
    .two-column-layout,
    .detail-layout,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        width: min(320px, 70vw);
    }

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

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

    .rank-panel {
        position: static;
    }
}

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

    .brand-text strong {
        font-size: 1.05rem;
    }

    .hero-carousel,
    .hero-content {
        min-height: 720px;
    }

    .hero-content {
        gap: 30px;
        padding-top: 44px;
    }

    .hero-copy h1,
    .detail-copy h1,
    .simple-hero h1,
    .page-hero h1 {
        letter-spacing: -0.05em;
    }

    .hero-actions,
    .large-search,
    .section-title-row,
    .category-overview-head {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .ghost-button,
    .large-search button {
        width: 100%;
    }

    .section-wrap {
        width: min(100% - 28px, 1240px);
        padding: 42px 0;
    }

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

    .movie-card-body {
        padding: 13px;
    }

    .movie-card p {
        min-height: 0;
    }

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

    .rank-item em {
        display: none;
    }

    .detail-layout {
        gap: 24px;
    }

    .detail-poster {
        width: min(250px, 74vw);
    }

    .play-ring {
        width: 74px;
        height: 74px;
    }

    .play-ring span {
        width: 54px;
        height: 54px;
    }

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

@media (max-width: 460px) {
    .movie-grid,
    .featured-grid,
    .compact-grid,
    .four-preview,
    .category-grid {
        grid-template-columns: 1fr;
    }

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