:root {
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --accent-50: #fef3c7;
    --accent-400: #f59e0b;
    --accent-600: #b45309;
    --secondary-50: #f8fafc;
    --secondary-100: #f1f5f9;
    --secondary-200: #e2e8f0;
    --secondary-300: #cbd5e1;
    --secondary-400: #94a3b8;
    --secondary-500: #64748b;
    --secondary-600: #475569;
    --secondary-700: #334155;
    --secondary-800: #1e293b;
    --secondary-900: #0f172a;
    --white: #ffffff;
    --radius-lg: 18px;
    --radius-md: 14px;
    --shadow-md: 0 12px 28px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 22px 55px rgba(15, 23, 42, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "Microsoft YaHei", sans-serif;
    background: var(--secondary-50);
    color: var(--secondary-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--secondary-200);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-weight: 800;
    color: var(--secondary-900);
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
}

.brand-icon rect {
    fill: currentColor;
}

.brand-icon path {
    fill: var(--white);
}

.brand-text {
    font-size: 20px;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    color: var(--secondary-700);
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease;
}

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

.header-search {
    position: relative;
    display: flex;
    width: 270px;
    border: 1px solid var(--secondary-300);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 10px 12px;
    color: var(--secondary-900);
}

.header-search button {
    border: 0;
    padding: 0 14px;
    color: var(--white);
    background: var(--primary-600);
    cursor: pointer;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--secondary-100);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--secondary-800);
    border-radius: 999px;
}

.hero-carousel {
    position: relative;
    height: 72vh;
    min-height: 560px;
    overflow: hidden;
    background: var(--secondary-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-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay,
.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.14));
}

.hero-content {
    position: absolute;
    left: max(16px, calc((100vw - 1180px) / 2));
    right: 16px;
    bottom: 82px;
    max-width: 760px;
    color: var(--white);
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--accent-400);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-kicker span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent-400);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.75);
}

.hero-content h1,
.detail-hero-content h1,
.compact-hero h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-content p,
.detail-hero-content p,
.compact-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--secondary-200);
    font-size: clamp(17px, 2vw, 22px);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--primary-50);
    color: var(--primary-700);
    font-size: 13px;
    font-weight: 700;
}

.hero-tags .tag-pill {
    color: var(--white);
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(6px);
}

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

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

.primary-button {
    color: var(--white);
    background: var(--primary-600);
    box-shadow: 0 16px 36px rgba(2, 132, 199, 0.34);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover {
    transform: translateY(-2px);
}

.primary-button:hover {
    background: var(--primary-700);
}

.ghost-button {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.ghost-button.light {
    color: var(--secondary-900);
    background: var(--white);
}

.small-button {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 14px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-dot.active {
    width: 34px;
    background: var(--white);
}

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

.surface-section {
    background: var(--white);
    border-top: 1px solid var(--secondary-200);
    border-bottom: 1px solid var(--secondary-200);
}

.intro-strip {
    padding: 42px 0;
    background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    gap: 32px;
    align-items: center;
}

.intro-grid h2,
.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.intro-grid p,
.section-heading p {
    color: var(--secondary-600);
    margin: 12px 0 0;
}

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

.section-more {
    min-height: 40px;
    color: var(--primary-700);
    background: var(--primary-50);
    white-space: nowrap;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--secondary-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.poster-link,
.poster-frame {
    display: block;
}

.poster-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-800), var(--primary-700));
}

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

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

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

.year-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.62);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

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

.movie-card-meta {
    min-height: 20px;
    color: var(--secondary-500);
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-card h2 {
    margin: 6px 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

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

.movie-card p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0;
    color: var(--secondary-600);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.compact-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
}

.compact-card .poster-frame {
    height: 100%;
    aspect-ratio: auto;
}

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

.compact-card h2 {
    font-size: 16px;
}

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

.channel-card,
.category-overview-card a {
    display: block;
    min-height: 168px;
    padding: 22px;
    border: 1px solid var(--secondary-200);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--white), var(--primary-50));
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.channel-card:hover,
.category-overview-card a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.channel-name {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--primary-700);
    font-weight: 900;
}

.channel-card strong,
.category-overview-card h2 {
    display: block;
    margin: 0 0 10px;
    color: var(--secondary-900);
    font-size: 20px;
    line-height: 1.3;
}

.channel-card em,
.category-overview-card strong {
    color: var(--secondary-500);
    font-size: 13px;
    font-style: normal;
}

.two-column-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
}

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

.rank-card a {
    display: grid;
    grid-template-columns: 54px 82px minmax(0, 1fr);
    gap: 14px;
    min-height: 126px;
    padding: 14px;
    border-radius: var(--radius-md);
    background: var(--secondary-50);
    border: 1px solid var(--secondary-200);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-card a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.rank-number {
    align-self: center;
    color: var(--primary-600);
    font-size: 24px;
    font-weight: 900;
}

.top-rank .rank-number {
    color: var(--accent-600);
}

.rank-card img {
    width: 82px;
    height: 98px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--secondary-800);
}

.rank-info {
    min-width: 0;
}

.rank-info strong,
.rank-info em,
.rank-info small {
    display: block;
}

.rank-info strong {
    font-size: 17px;
    line-height: 1.3;
}

.rank-info em {
    margin-top: 5px;
    color: var(--secondary-500);
    font-size: 13px;
    font-style: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-info small {
    display: -webkit-box;
    margin-top: 7px;
    color: var(--secondary-600);
    font-size: 13px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.65), transparent 36%), linear-gradient(135deg, var(--secondary-900), #0b1220 65%, #111827);
}

.compact-hero {
    padding: 82px 0 76px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--secondary-300);
    font-size: 14px;
}

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

.breadcrumb a::after {
    content: "/";
    margin-left: 8px;
    color: var(--secondary-500);
}

.page-actions {
    margin-top: 24px;
}

.category-overview-card a {
    min-height: 280px;
    background: var(--white);
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    height: 98px;
    margin-bottom: 18px;
}

.category-thumbs img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    background: var(--secondary-800);
}

.category-overview-card p {
    margin: 0 0 12px;
    color: var(--secondary-600);
}

.filter-panel {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid var(--secondary-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.filter-search-wrap {
    flex: 1;
}

.filter-search-wrap label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-700);
    font-weight: 800;
}

.filter-search {
    width: 100%;
    border: 1px solid var(--secondary-300);
    border-radius: 12px;
    outline: 0;
    padding: 12px 14px;
}

.filter-search:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-button {
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--secondary-700);
    background: var(--secondary-100);
    font-weight: 800;
    cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
    color: var(--white);
    background: var(--primary-600);
}

.no-results {
    padding: 32px;
    border-radius: var(--radius-lg);
    color: var(--secondary-600);
    background: var(--white);
    text-align: center;
}

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

.ranking-row {
    border-radius: var(--radius-md);
}

.ranking-row a {
    display: grid;
    grid-template-columns: 70px 86px minmax(0, 1fr) 120px;
    gap: 16px;
    align-items: center;
    padding: 14px;
}

.ranking-index {
    color: var(--primary-700);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.ranking-row img {
    width: 86px;
    height: 112px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--secondary-800);
}

.ranking-text {
    min-width: 0;
}

.ranking-text strong,
.ranking-text em,
.ranking-text small {
    display: block;
}

.ranking-text strong {
    font-size: 20px;
}

.ranking-text em {
    margin: 4px 0;
    color: var(--secondary-500);
    font-style: normal;
}

.ranking-text small {
    color: var(--secondary-600);
}

.ranking-heat {
    color: var(--accent-600);
    font-weight: 900;
    text-align: right;
}

.detail-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--secondary-900);
}

.detail-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 168px 0 86px;
    color: var(--white);
}

.player-section {
    padding-top: 40px;
    padding-bottom: 38px;
    background: #050b14;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

.site-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: var(--white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.12));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    padding-left: 6px;
    color: var(--primary-700);
    background: rgba(255, 255, 255, 0.92);
    font-size: 36px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.player-overlay strong {
    font-size: 20px;
}

.detail-section {
    background: var(--white);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}

.detail-main,
.detail-side {
    border: 1px solid var(--secondary-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.detail-main {
    padding: 30px;
}

.detail-title-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
}

.detail-main h2,
.detail-side h2 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
}

.detail-main p {
    margin: 0 0 26px;
    color: var(--secondary-700);
    font-size: 16px;
    line-height: 1.86;
    white-space: pre-line;
}

.info-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 28px;
}

.info-chips span {
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--secondary-700);
    background: var(--secondary-100);
    font-size: 14px;
    font-weight: 700;
}

.detail-side {
    padding: 24px;
    position: sticky;
    top: 94px;
}

.detail-side dl {
    margin: 0;
}

.detail-side dt {
    margin-top: 14px;
    color: var(--secondary-500);
    font-size: 13px;
    font-weight: 800;
}

.detail-side dd {
    margin: 4px 0 0;
    color: var(--secondary-900);
    font-weight: 700;
}

.detail-side a {
    color: var(--primary-700);
}

.site-footer {
    color: var(--secondary-300);
    background: var(--secondary-900);
}

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

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

.footer-brand p {
    max-width: 440px;
    color: var(--secondary-400);
}

.footer-links h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 18px;
}

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

.footer-link-grid a:hover {
    color: var(--primary-400);
}

.footer-bottom {
    padding: 22px 16px;
    border-top: 1px solid var(--secondary-800);
    color: var(--secondary-500);
    text-align: center;
    font-size: 14px;
}

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

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

    .detail-layout,
    .intro-grid,
    .two-column-section {
        grid-template-columns: 1fr;
    }

    .detail-side {
        position: static;
    }
}

@media (max-width: 820px) {
    .header-inner {
        height: auto;
        min-height: 64px;
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .nav-links {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 10px;
        border-top: 1px solid var(--secondary-200);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        justify-content: center;
    }

    .header-search {
        order: 3;
        width: calc(100% - 58px);
    }

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

    .hero-carousel {
        height: 78vh;
        min-height: 540px;
    }

    .hero-content {
        bottom: 70px;
    }

    .movie-grid,
    .channel-grid,
    .category-overview-grid,
    .small-grid,
    .rank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filter-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .ranking-row a {
        grid-template-columns: 54px 72px minmax(0, 1fr);
    }

    .ranking-heat {
        grid-column: 3;
        text-align: left;
    }

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

@media (max-width: 560px) {
    .container,
    .header-inner,
    .footer-inner {
        width: min(100% - 24px, 1180px);
    }

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

    .hero-content h1,
    .detail-hero-content h1,
    .compact-hero h1 {
        font-size: 34px;
    }

    .hero-content,
    .detail-hero-content {
        left: 12px;
        right: 12px;
    }

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

    .movie-grid,
    .channel-grid,
    .category-overview-grid,
    .small-grid,
    .rank-grid {
        grid-template-columns: 1fr;
    }

    .compact-card {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .section-heading,
    .detail-title-row {
        display: block;
    }

    .section-more,
    .detail-title-row .primary-button {
        margin-top: 14px;
    }

    .rank-card a {
        grid-template-columns: 44px 72px minmax(0, 1fr);
    }

    .ranking-row a {
        grid-template-columns: 46px 66px minmax(0, 1fr);
        gap: 10px;
    }

    .ranking-row img {
        width: 66px;
        height: 88px;
    }

    .ranking-heat {
        grid-column: 1 / -1;
        text-align: left;
    }

    .player-shell {
        border-radius: 16px;
    }
}
