:root {
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(219, 39, 119, 0.14);
    --shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-800);
    background: linear-gradient(180deg, #ffffff 0%, var(--pink-50) 48%, #ffffff 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

img {
    display: block;
    max-width: 100%;
    background: linear-gradient(135deg, var(--pink-100), var(--rose-100));
}

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(253, 242, 248, 0.96), rgba(255, 241, 242, 0.96));
    border-bottom: 1px solid rgba(251, 207, 232, 0.8);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 28px rgba(236, 72, 153, 0.08);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pink-600);
    font-weight: 800;
    letter-spacing: 0.01em;
}

.brand {
    font-size: 24px;
}

.brand-icon {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(219, 39, 119, 0.25);
    font-size: 14px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--gray-700);
    font-weight: 650;
}

.desktop-nav a,
.mobile-nav a,
.site-footer a {
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
    color: var(--pink-600);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--pink-100);
    border-radius: 12px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 0 24px 18px;
    color: var(--gray-700);
    font-weight: 650;
}

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

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    padding: 92px 0 78px;
    background:
        radial-gradient(circle at 10% 18%, rgba(236, 72, 153, 0.22), transparent 25%),
        radial-gradient(circle at 78% 24%, rgba(244, 63, 94, 0.2), transparent 28%),
        linear-gradient(135deg, #fff7fb 0%, #ffe4ef 46%, #fff1f2 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(45px);
    opacity: 0.48;
    pointer-events: none;
}

.glow-one {
    width: 230px;
    height: 230px;
    left: 6%;
    top: 9%;
    background: #f9a8d4;
}

.glow-two {
    width: 290px;
    height: 290px;
    right: 3%;
    bottom: 8%;
    background: #fda4af;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
    gap: 44px;
    align-items: center;
}

.hero-main h1 {
    margin: 18px 0 22px;
    color: var(--gray-800);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero-main p,
.hero-copy p,
.page-hero p,
.section-heading p {
    color: var(--gray-600);
}

.hero-main p {
    max-width: 640px;
    margin: 0 0 28px;
    font-size: 18px;
}

.hero-kicker,
.section-heading span,
.page-hero span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 14px;
    color: var(--pink-600);
    background: rgba(252, 231, 243, 0.9);
    border: 1px solid rgba(249, 168, 212, 0.7);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
}

.hero-search {
    display: flex;
    max-width: 620px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(251, 207, 232, 0.9);
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.hero-search input,
.search-panel input,
.section-toolbar input {
    width: 100%;
    min-width: 0;
    color: var(--gray-800);
    background: transparent;
    border: 0;
    outline: none;
}

.hero-search input {
    padding: 0 18px;
}

.hero-search button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    border: 0;
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(219, 39, 119, 0.24);
    font-weight: 750;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-search button {
    min-width: 112px;
    padding: 12px 22px;
}

.primary-button,
.ghost-button {
    min-height: 48px;
    padding: 0 24px;
}

.primary-button:hover,
.hero-search button:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow: 0 18px 32px rgba(219, 39, 119, 0.28);
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-600);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--pink-200);
    border-radius: 999px;
    font-weight: 750;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ghost-button:hover {
    transform: translateY(-2px);
    border-color: var(--pink-500);
}

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

.hero-slider {
    position: relative;
    min-height: 480px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 22px;
    align-items: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(251, 207, 232, 0.86);
    border-radius: 30px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    transition: opacity 0.55s ease, transform 0.55s ease;
    pointer-events: none;
}

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

.hero-copy h2 {
    margin: 16px 0 12px;
    color: var(--gray-800);
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.18;
}

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

.hero-tags {
    margin: 18px 0 24px;
}

.hero-tags span,
.detail-meta span,
.tag-cloud span {
    color: var(--pink-600);
    background: var(--pink-50);
    border: 1px solid var(--pink-100);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span,
.tag-cloud span {
    padding: 6px 11px;
}

.detail-meta span {
    padding: 7px 12px;
}

.hero-poster {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.18);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-poster:hover img {
    transform: scale(1.06);
}

.hero-dots {
    position: absolute;
    right: 28px;
    bottom: 24px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    background: var(--pink-200);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 26px;
    background: var(--pink-600);
}

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

.white-block {
    background: var(--white);
}

.soft-block {
    background: linear-gradient(180deg, var(--pink-50), var(--white));
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.left-heading {
    margin-left: 0;
    text-align: left;
}

.section-heading h2,
.page-hero h1,
.detail-panel h1 {
    margin: 12px 0 12px;
    color: var(--gray-800);
    line-height: 1.18;
}

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

.page-hero {
    padding: 78px 0 64px;
    background:
        radial-gradient(circle at 18% 10%, rgba(236, 72, 153, 0.18), transparent 28%),
        linear-gradient(135deg, var(--pink-50), var(--rose-50));
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 56px);
}

.page-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--gray-600);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--pink-600);
    font-weight: 700;
}

.breadcrumb.dark {
    justify-content: flex-start;
    color: #cbd5e1;
}

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

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 186px;
    padding: 22px;
    background: linear-gradient(135deg, rgba(253, 242, 248, 0.95), rgba(255, 241, 242, 0.96));
    border: 1px solid rgba(251, 207, 232, 0.9);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(236, 72, 153, 0.45);
    box-shadow: var(--shadow);
}

.category-card strong,
.category-card em {
    position: relative;
    z-index: 2;
    display: block;
}

.category-card strong {
    margin: 12px 0 8px;
    color: var(--gray-800);
    font-size: 20px;
    font-style: normal;
}

.category-card em {
    max-width: 82%;
    color: var(--gray-600);
    font-size: 14px;
    font-style: normal;
}

.category-card img {
    position: absolute;
    right: -22px;
    bottom: -28px;
    width: 118px;
    height: 158px;
    object-fit: cover;
    border-radius: 18px;
    opacity: 0.33;
    transform: rotate(8deg);
}

.category-card.large {
    min-height: 230px;
}

.category-icon {
    position: relative;
    z-index: 2;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--white);
    background: var(--pink-600);
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(219, 39, 119, 0.25);
}

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

.movie-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(251, 207, 232, 0.65);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(219, 39, 119, 0.16);
}

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--pink-100), var(--rose-100));
}

.movie-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .movie-cover img {
    transform: scale(1.08);
}

.movie-cover::after {
    position: absolute;
    inset: auto 0 0;
    height: 55%;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.78));
    opacity: 0.75;
}

.movie-type,
.movie-year {
    position: absolute;
    z-index: 2;
    top: 10px;
    padding: 4px 9px;
    color: var(--white);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 750;
}

.movie-type {
    left: 10px;
    background: var(--pink-600);
}

.movie-year {
    right: 10px;
    background: rgba(17, 24, 39, 0.72);
}

.play-mark {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--white);
    background: rgba(219, 39, 119, 0.92);
    border-radius: 999px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.84);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.movie-body h3 {
    margin: 0 0 6px;
    color: var(--gray-800);
    font-size: 16px;
    line-height: 1.35;
}

.movie-body h3 a:hover {
    color: var(--pink-600);
}

.movie-meta,
.movie-line {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--gray-500);
    font-size: 13px;
    -webkit-box-orient: vertical;
}

.movie-meta {
    -webkit-line-clamp: 1;
}

.movie-line {
    min-height: 42px;
    margin-top: 8px;
    -webkit-line-clamp: 2;
}

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

.section-toolbar h2 {
    margin: 0;
    color: var(--gray-800);
    font-size: 28px;
}

.section-toolbar input,
.search-panel input {
    max-width: 420px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--pink-200);
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(236, 72, 153, 0.08);
}

.search-panel {
    max-width: 680px;
    margin: 28px auto 0;
}

.search-panel input {
    max-width: none;
}

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

.rank-panel {
    padding: 22px;
    background: var(--white);
    border: 1px solid rgba(251, 207, 232, 0.75);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.rank-panel .section-heading {
    margin-bottom: 20px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 42px 54px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: var(--pink-50);
    border: 1px solid rgba(251, 207, 232, 0.7);
    border-radius: 16px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    background: var(--white);
}

.rank-num {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    border-radius: 12px;
    font-weight: 800;
}

.rank-row img {
    width: 54px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
}

.rank-row strong,
.rank-row em {
    grid-column: 3;
    min-width: 0;
}

.rank-row strong {
    overflow: hidden;
    color: var(--gray-800);
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-row em {
    overflow: hidden;
    color: var(--gray-500);
    font-size: 12px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.watch-page,
.dark-related {
    background: linear-gradient(180deg, #111827, #1f2937);
}

.watch-page {
    min-height: 720px;
    padding: 34px 0 58px;
}

.watch-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
    align-items: start;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 22px;
    box-shadow: var(--shadow-dark);
}

.player-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    cursor: pointer;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-start {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    border: 0;
    border-radius: 999px;
    box-shadow: 0 24px 54px rgba(219, 39, 119, 0.4);
    cursor: pointer;
    font-size: 34px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.player-start:hover {
    transform: scale(1.08);
    filter: saturate(1.12);
}

.detail-panel {
    margin-top: 22px;
    padding: 28px;
    color: #d1d5db;
    background: rgba(31, 41, 55, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow-dark);
}

.detail-panel h1 {
    color: var(--white);
    font-size: clamp(30px, 4vw, 46px);
}

.detail-panel h2 {
    margin: 28px 0 10px;
    color: var(--white);
    font-size: 22px;
}

.detail-panel p {
    margin: 0;
    color: #d1d5db;
}

.detail-panel .lead-text {
    margin-top: 22px;
    color: #f9a8d4;
    font-size: 18px;
    font-weight: 700;
}

.detail-meta {
    margin-top: 14px;
}

.tag-cloud {
    margin-top: 26px;
}

.watch-side {
    display: grid;
    gap: 20px;
}

.side-poster {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow-dark);
}

.side-box {
    padding: 20px;
    background: rgba(31, 41, 55, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.side-box h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 20px;
}

.compact-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    color: #e5e7eb;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.compact-card:hover {
    color: #f9a8d4;
}

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

.compact-card span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.light-heading h2,
.light-heading p {
    color: var(--white);
}

.light-heading span {
    color: #f9a8d4;
    background: rgba(219, 39, 119, 0.16);
    border-color: rgba(249, 168, 212, 0.4);
}

.dark-related .movie-card {
    background: #1f2937;
    border-color: rgba(255, 255, 255, 0.08);
}

.dark-related .movie-body h3 {
    color: var(--white);
}

.dark-related .movie-meta,
.dark-related .movie-line {
    color: #cbd5e1;
}

.site-footer {
    background: linear-gradient(180deg, var(--pink-50), var(--pink-100));
    border-top: 1px solid rgba(251, 207, 232, 0.8);
}

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

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--gray-800);
    font-size: 18px;
}

.site-footer p,
.site-footer li {
    color: var(--gray-600);
    font-size: 14px;
}

.site-footer p {
    margin: 12px 0 0;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom {
    padding: 18px 0 26px;
    color: var(--gray-600);
    border-top: 1px solid rgba(249, 168, 212, 0.6);
    text-align: center;
    font-size: 13px;
}

@media (max-width: 1080px) {
    .hero-layout,
    .watch-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        min-height: 430px;
    }

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

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

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

    .watch-side {
        grid-template-columns: 220px minmax(0, 1fr);
    }
}

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

    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .brand {
        font-size: 20px;
    }

    .hero-section {
        min-height: auto;
        padding: 58px 0;
    }

    .hero-search {
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
    }

    .hero-search input {
        min-height: 48px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        min-height: 620px;
    }

    .hero-poster {
        max-width: 210px;
    }

    .category-grid,
    .category-grid.wide,
    .movie-grid,
    .footer-grid,
    .watch-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .section-toolbar input {
        max-width: none;
    }

    .watch-side {
        grid-template-columns: 1fr;
    }
}

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

    .hero-main h1 {
        font-size: 34px;
    }

    .hero-slider {
        min-height: 660px;
    }

    .hero-slide {
        padding: 18px;
    }

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

    .category-grid,
    .category-grid.wide,
    .movie-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .player-start {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

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