:root {
    --bg: #020617;
    --panel: rgba(15, 23, 42, 0.78);
    --panel-solid: #0f172a;
    --muted-panel: rgba(30, 41, 59, 0.62);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --soft: #cbd5e1;
    --blue: #3b82f6;
    --cyan: #22d3ee;
    --green: #22c55e;
    --red: #ef4444;
    --purple: #a855f7;
    --pink: #ec4899;
    --amber: #f59e0b;
    --teal: #14b8a6;
    --radius: 1rem;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), transparent 32rem),
        radial-gradient(circle at 80% 10%, rgba(34, 211, 238, 0.14), transparent 28rem),
        var(--bg);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(2, 6, 23, 0.92);
    border-color: var(--line);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
}

.nav-shell {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: #dff7ff;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(34, 211, 238, 0.9));
    box-shadow: 0 14px 36px rgba(34, 211, 238, 0.25);
    font-size: 0.9rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--soft);
    font-size: 0.94rem;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a,
.section-heading a,
.toolbar a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover,
.section-heading a:hover,
.toolbar a:hover {
    color: #ffffff;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.65);
    color: var(--text);
    padding: 9px;
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(18px);
}

.mobile-nav a {
    display: block;
    padding: 11px 12px;
    color: var(--soft);
    border-radius: 12px;
}

.mobile-nav a:hover {
    background: rgba(148, 163, 184, 0.1);
}

.spotlight {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background: #020617;
}

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

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

.spotlight-bg {
    position: absolute;
    inset: 0;
    background-image: var(--cover-image), linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(2, 6, 23, 1));
    background-size: cover;
    background-position: center;
}

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

.spotlight-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.82) 38%, rgba(2, 6, 23, 0.18) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 1) 0%, transparent 38%);
}

.spotlight-content {
    position: relative;
    z-index: 3;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 0 80px;
    max-width: 660px;
}

.eyebrow {
    margin: 0 0 10px;
    color: #7dd3fc;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
}

.spotlight h1,
.page-hero h1,
.detail-intro h1 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.spotlight h1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    max-width: 850px;
}

.spotlight-desc {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--soft);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.spotlight-tags,
.detail-meta,
.movie-meta,
.tag-list,
.quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.spotlight-tags {
    margin-top: 26px;
}

.spotlight-tags span,
.tag-list span,
.movie-meta span,
.movie-meta a,
.detail-meta span {
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.64);
    color: var(--soft);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.82rem;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 800;
    border: 1px solid var(--line);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: white;
    border-color: transparent;
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.28);
}

.button.ghost {
    background: rgba(15, 23, 42, 0.65);
    color: var(--soft);
}

.button.full {
    width: 100%;
}

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

.spotlight-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.48);
    transition: width 0.25s ease, background 0.25s ease;
}

.spotlight-dot.is-active {
    width: 34px;
    background: white;
}

.quick-search {
    position: relative;
    z-index: 10;
    margin-top: -38px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.search-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
}

.search-bar label,
.filter-field label {
    color: var(--soft);
    font-weight: 700;
}

.search-bar input,
.filter-field input,
.filter-field select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--text);
    background: rgba(2, 6, 23, 0.68);
    padding: 0 14px;
    outline: none;
}

.search-bar input:focus,
.filter-field input:focus,
.filter-field select:focus {
    border-color: rgba(34, 211, 238, 0.75);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.search-bar button {
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    padding: 0 24px;
    color: white;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.quick-links {
    margin-top: 16px;
}

.quick-links a {
    color: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(30, 41, 59, 0.58);
}

.section-block {
    padding: 64px 0;
}

.section-band {
    padding: 64px 0;
    background: rgba(15, 23, 42, 0.5);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.section-heading.slim {
    align-items: center;
    margin-bottom: 18px;
}

.section-heading h2,
.section-heading h3,
.category-card strong,
.content-card h2,
.site-footer h2 {
    margin: 0;
    color: white;
    line-height: 1.15;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.section-heading h3 {
    font-size: 1.35rem;
}

.section-heading a,
.toolbar a {
    color: #7dd3fc;
    font-weight: 800;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.62);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    background: rgba(30, 41, 59, 0.78);
    border-color: rgba(96, 165, 250, 0.38);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.cover-frame {
    background-image: var(--cover-image), linear-gradient(135deg, rgba(30, 41, 59, 0.96), rgba(2, 6, 23, 1));
    background-size: cover;
    background-position: center;
}

.cover-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72) 100%);
    pointer-events: none;
}

.cover-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.2s ease;
}

.cover-frame img.is-missing {
    opacity: 0;
}

.movie-card:hover img,
.wide-card:hover img,
.rank-item:hover img {
    transform: scale(1.08);
}

.poster-badge {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.68);
    color: white;
    font-size: 0.76rem;
    font-weight: 800;
}

.poster-play {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0;
    color: white;
    background: rgba(59, 130, 246, 0.9);
    box-shadow: 0 16px 36px rgba(59, 130, 246, 0.3);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .poster-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.movie-title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: white;
    font-weight: 800;
    min-height: 3.1em;
}

.movie-card-body p,
.wide-info p,
.rank-info p,
.category-card p,
.page-hero p,
.detail-one-line,
.content-card p,
.site-footer p {
    color: var(--muted);
}

.movie-card-body p,
.wide-info p,
.rank-info p {
    display: -webkit-box;
    overflow: hidden;
    margin: 10px 0 0;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 0.92rem;
}

.movie-meta {
    margin-top: 12px;
    gap: 7px;
}

.movie-meta span,
.movie-meta a {
    padding: 4px 8px;
    font-size: 0.75rem;
}

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

.wide-card {
    display: grid;
    grid-template-columns: 128px 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.64);
    transition: background 0.25s ease, transform 0.25s ease;
}

.wide-card:hover {
    transform: translateY(-4px);
    background: rgba(30, 41, 59, 0.78);
}

.wide-cover {
    position: relative;
    min-height: 164px;
    overflow: hidden;
}

.wide-info {
    padding: 16px;
}

.wide-info > a,
.rank-info > a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: white;
    font-weight: 800;
    line-height: 1.35;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
    align-items: start;
}

.category-stack {
    display: grid;
    gap: 34px;
}

.category-preview {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.48);
}

.ranking-panel,
.category-card,
.content-card,
.filter-panel,
.toolbar,
.play-panel {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.66);
    box-shadow: var(--shadow);
}

.ranking-panel {
    position: sticky;
    top: 96px;
    padding: 22px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 38px 76px 1fr;
    gap: 14px;
    align-items: start;
    padding: 12px;
    border-radius: 16px;
    transition: background 0.2s ease;
}

.rank-item:hover {
    background: rgba(148, 163, 184, 0.08);
}

.rank-index {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: rgba(203, 213, 225, 0.9);
    font-size: 1.4rem;
    font-weight: 900;
}

.rank-cover {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
}

.rank-info p {
    -webkit-line-clamp: 2;
    margin-top: 7px;
}

.page-main {
    padding-top: 110px;
}

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

.page-hero h1 {
    font-size: clamp(2.3rem, 6vw, 4.8rem);
}

.page-hero p {
    max-width: 780px;
    margin: 18px 0 0;
    font-size: 1.05rem;
}

.hero-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 24px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.7);
}

.hero-stat span {
    color: white;
    font-size: 2rem;
    font-weight: 900;
}

.hero-stat em {
    color: var(--muted);
    font-style: normal;
}

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

.category-card {
    padding: 22px;
}

.category-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.category-card-head span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.category-card strong {
    font-size: 1.2rem;
}

.category-count {
    margin: 16px 0;
    color: #7dd3fc;
    font-weight: 900;
}

.mini-links {
    display: grid;
    gap: 9px;
    margin: 18px 0;
}

.mini-links a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: var(--soft);
    font-size: 0.92rem;
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    margin-bottom: 26px;
}

.toolbar strong {
    color: white;
    font-size: 1.15rem;
}

.toolbar span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.filter-panel {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    padding: 20px;
    margin-bottom: 28px;
}

.filter-field {
    display: grid;
    gap: 8px;
}

.filter-field.span-2 {
    grid-column: span 2;
}

.filter-count {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    color: var(--soft);
    font-weight: 800;
    padding-bottom: 8px;
}

.filter-count span {
    color: #7dd3fc;
    margin-right: 5px;
}

.search-grid .movie-card.is-hidden {
    display: none;
}

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

.page-rank .rank-item {
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.55);
}

.detail-top {
    padding-top: 34px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.92rem;
}

.breadcrumbs a {
    color: #7dd3fc;
}

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

.detail-cover {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.detail-intro h1 {
    font-size: clamp(2.1rem, 5vw, 4.5rem);
}

.detail-one-line {
    max-width: 760px;
    margin: 18px 0 22px;
    font-size: 1.12rem;
}

.detail-meta {
    margin-bottom: 18px;
}

.tag-list {
    margin: 0 0 28px;
}

.tag-list span {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(96, 165, 250, 0.22);
    color: #bfdbfe;
}

.play-panel {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: black;
}

.play-panel video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: black;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 0;
    color: white;
    background:
        radial-gradient(circle, rgba(59, 130, 246, 0.24), transparent 28%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.25), rgba(2, 6, 23, 0.85));
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: clamp(72px, 11vw, 110px);
    height: clamp(72px, 11vw, 110px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 60px rgba(59, 130, 246, 0.42);
    font-size: clamp(1.7rem, 4vw, 3rem);
    padding-left: 0.12em;
}

.play-panel.is-playing .play-overlay {
    display: none;
}

.detail-content {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 24px;
}

.content-card {
    padding: 28px;
}

.content-card h2 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.content-card p {
    margin: 0;
    font-size: 1rem;
}

.site-footer {
    margin-top: 60px;
    padding: 54px 0;
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.76);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 36px;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-links {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.footer-links a {
    color: var(--muted);
}

.accent-blue .category-card-head span,
.accent-blue.page-hero .hero-stat,
.accent-blue.category-preview {
    border-color: rgba(59, 130, 246, 0.3);
}

.accent-cyan .category-card-head span {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.accent-red .category-card-head span {
    background: linear-gradient(135deg, #f97316, var(--red));
}

.accent-green .category-card-head span {
    background: linear-gradient(135deg, #16a34a, var(--green));
}

.accent-purple .category-card-head span {
    background: linear-gradient(135deg, #7c3aed, var(--purple));
}

.accent-pink .category-card-head span {
    background: linear-gradient(135deg, #db2777, var(--pink));
}

.accent-amber .category-card-head span {
    background: linear-gradient(135deg, #f97316, var(--amber));
}

.accent-teal .category-card-head span {
    background: linear-gradient(135deg, #0d9488, var(--teal));
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 14px;
        font-size: 0.88rem;
    }

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

    .wide-grid,
    .small-grid,
    .page-rank {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .ranking-panel {
        position: static;
    }
}

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

    .menu-button {
        display: block;
    }

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

    .spotlight,
    .spotlight-content {
        min-height: 78vh;
    }

    .spotlight-content {
        padding-top: 112px;
    }

    .search-bar {
        grid-template-columns: 1fr;
    }

    .wide-grid,
    .card-grid,
    .category-grid,
    .small-grid,
    .page-rank,
    .filter-panel,
    .footer-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .filter-field.span-2 {
        grid-column: auto;
    }

    .filter-count {
        justify-content: flex-start;
    }

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

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

    .nav-shell {
        min-height: 66px;
    }

    .brand {
        font-size: 1.05rem;
    }

    .brand-mark {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .section-block,
    .section-band {
        padding: 42px 0;
    }

    .section-heading,
    .toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .wide-card {
        grid-template-columns: 104px 1fr;
    }

    .wide-cover {
        min-height: 148px;
    }

    .rank-item {
        grid-template-columns: 32px 66px 1fr;
        gap: 10px;
        padding: 10px;
    }

    .detail-top {
        padding-top: 20px;
    }
}
