* {
    box-sizing: border-box;
}

:root {
    color-scheme: light;
    --bg: #f8fafc;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: #ffffff;
    --text: #111827;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.08);
    --primary: #0f766e;
    --primary-bright: #14b8a6;
    --secondary: #2563eb;
    --accent: #f59e0b;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
    --soft-shadow: 0 12px 35px rgba(15, 23, 42, 0.10);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(20, 184, 166, 0.18), transparent 34rem),
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 30rem),
        var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(20px);
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 900;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-bright), var(--secondary));
    box-shadow: 0 12px 30px rgba(20, 184, 166, 0.28);
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong,
.footer-brand {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.desktop-nav a,
.mobile-nav a {
    color: #334155;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--primary);
}

.global-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 999px;
}

.global-search-form input {
    width: 210px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 10px 12px;
    color: var(--text);
}

.global-search-form button,
.primary-button,
.ghost-button {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.global-search-form button,
.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 14px 35px rgba(15, 118, 110, 0.24);
}

.global-search-form button {
    padding: 10px 18px;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
}

.ghost-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.global-search-form button:hover,
.primary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.28);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #eef2ff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: #1e293b;
}

.mobile-nav {
    display: none;
    padding: 0 24px 18px;
    border-top: 1px solid var(--line);
}

.hero-carousel {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    isolation: isolate;
    background: #0f172a;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
    align-items: center;
    gap: 56px;
    padding: 110px max(24px, calc((100vw - 1240px) / 2)) 150px;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 1s ease;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    filter: blur(20px) saturate(1.1);
    transform: scale(1.08);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.92), rgba(15, 23, 42, 0.70) 45%, rgba(15, 23, 42, 0.20)),
        radial-gradient(circle at 18% 20%, rgba(20, 184, 166, 0.42), transparent 34rem),
        radial-gradient(circle at 78% 50%, rgba(37, 99, 235, 0.34), transparent 32rem);
}

.hero-content {
    max-width: 760px;
    color: #ffffff;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--primary-bright);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-content h1 {
    margin: 0 0 20px;
    font-size: clamp(36px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero-content h2 {
    margin: 0 0 18px;
    font-size: clamp(26px, 3vw, 44px);
    line-height: 1.12;
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.8;
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    color: #0f766e;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.12);
    font-size: 12px;
    font-weight: 800;
}

.hero-tags span {
    color: #ccfbf1;
    background: rgba(20, 184, 166, 0.22);
}

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

.hero-poster {
    position: relative;
    aspect-ratio: 3 / 4;
    max-width: 420px;
    width: 100%;
    justify-self: end;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.26), rgba(37, 99, 235, 0.28));
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.44);
    transform: rotate(2deg);
}

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

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

.hero-controls {
    position: absolute;
    left: max(24px, calc((100vw - 1240px) / 2));
    bottom: 88px;
    z-index: 5;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 42px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.30);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 72px;
    background: #ffffff;
}

.hero-search {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 6;
    width: min(760px, calc(100% - 48px));
    transform: translateX(-50%);
    box-shadow: var(--shadow);
}

.hero-search input {
    width: 100%;
}

.section-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 78px 24px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 28px;
}

.intro-card,
.rank-panel,
.page-hero,
.category-overview-card,
.detail-hero,
.detail-content article {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--soft-shadow);
}

.intro-card {
    padding: clamp(28px, 5vw, 54px);
    overflow: hidden;
    position: relative;
}

.intro-card::after {
    content: "";
    position: absolute;
    right: -110px;
    top: -90px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.18), rgba(37, 99, 235, 0.18));
}

.intro-card h2,
.page-hero h1,
.section-title h2,
.detail-copy h1,
.detail-content h2 {
    margin: 0;
    color: #0f172a;
    letter-spacing: -0.04em;
}

.intro-card h2 {
    max-width: 760px;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.08;
}

.intro-card p,
.page-hero p,
.category-overview-card p,
.detail-content p {
    color: var(--muted);
    line-height: 1.85;
}

.quick-links,
.filter-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.quick-links a,
.filter-link,
.text-link {
    color: var(--primary);
    font-weight: 900;
}

.rank-panel {
    padding: 28px;
}

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

.section-title span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: clamp(26px, 3vw, 42px);
}

.section-title a {
    color: var(--primary);
    font-weight: 900;
}

.section-title.compact {
    display: block;
    margin-bottom: 18px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: #f8fafc;
    transition: transform 0.2s ease, background 0.2s ease;
}

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

.rank-row span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-weight: 900;
}

.rank-row strong,
.rank-row em {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-row em {
    grid-column: 2;
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

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

.category-card {
    min-height: 210px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 24px;
    color: #ffffff;
    border-radius: 24px;
    background: #0f172a;
    box-shadow: var(--soft-shadow);
    isolation: isolate;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--category-image);
    background-size: cover;
    background-position: center;
    transition: transform 0.55s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.86));
}

.category-card:hover::before {
    transform: scale(1.08);
}

.category-card span,
.category-card em {
    color: rgba(255, 255, 255, 0.76);
    font-style: normal;
    font-size: 13px;
    font-weight: 800;
}

.category-card strong {
    margin: 8px 0;
    font-size: 22px;
    line-height: 1.2;
}

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface-strong);
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(20, 184, 166, 0.34);
    box-shadow: 0 28px 64px rgba(15, 23, 42, 0.16);
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(37, 99, 235, 0.18));
}

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

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

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.24);
}

.play-chip {
    right: 14px;
    bottom: 14px;
    min-width: 62px;
    height: 34px;
    border-radius: 999px;
    font-size: 13px;
}

.rank-badge {
    top: 14px;
    left: 14px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
}

.movie-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.movie-meta-line,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.movie-meta-line a {
    color: var(--primary);
}

.movie-card h3 {
    margin: 12px 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

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

.movie-card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.movie-card .tag-row {
    margin-top: auto;
}

.page-main,
.detail-main {
    min-height: 70vh;
}

.page-hero {
    max-width: 1240px;
    margin: 36px auto 0;
    padding: clamp(30px, 5vw, 58px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.90)),
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.16), transparent 22rem);
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.08;
}

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

.local-filter {
    width: min(680px, 100%);
    margin-top: 28px;
}

.local-filter input {
    width: 100%;
    border: 1px solid var(--line);
    outline: 0;
    padding: 16px 18px;
    border-radius: 18px;
    color: var(--text);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.filter-chip {
    min-height: 36px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #334155;
    background: #ffffff;
    cursor: pointer;
    font-weight: 800;
}

.filter-chip.is-active,
.filter-chip:hover {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    min-height: 210px;
}

.category-cover-stack img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(37, 99, 235, 0.18));
}

.category-cover-stack img:nth-child(2) {
    transform: translateY(14px);
}

.category-cover-stack img:nth-child(3) {
    transform: translateY(28px);
}

.breadcrumb {
    max-width: 1240px;
    margin: 28px auto 18px;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 800;
}

.detail-hero {
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
    gap: 36px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(37, 99, 235, 0.18));
    box-shadow: var(--soft-shadow);
}

.detail-poster img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.detail-copy {
    align-self: center;
}

.detail-copy h1 {
    font-size: clamp(34px, 5vw, 66px);
    line-height: 1.05;
}

.detail-one-line {
    max-width: 780px;
    color: #334155;
    font-size: 19px;
    line-height: 1.85;
}

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

.detail-meta span {
    padding: 8px 12px;
    border-radius: 12px;
    background: #f1f5f9;
}

.large-tags {
    margin-bottom: 28px;
}

.player-section {
    max-width: 1240px;
    margin: 34px auto 0;
    padding: 0 24px;
}

.video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: 0 34px 90px rgba(2, 6, 23, 0.32);
    aspect-ratio: 16 / 9;
}

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    background: #020617;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #ffffff;
    border: 0;
    cursor: pointer;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72)),
        var(--poster) center / cover no-repeat,
        #020617;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-circle {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    padding-left: 6px;
    color: #ffffff;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-bright), var(--secondary));
    box-shadow: 0 20px 48px rgba(2, 6, 23, 0.34);
    font-size: 38px;
}

.player-overlay strong {
    max-width: 80%;
    font-size: clamp(24px, 4vw, 44px);
    line-height: 1.2;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
}

.narrow-wrap {
    max-width: 980px;
}

.detail-content {
    display: grid;
    gap: 22px;
}

.detail-content article {
    padding: 28px;
}

.detail-content h2 {
    margin-bottom: 14px;
    font-size: 28px;
}

.detail-content p {
    margin: 0;
    font-size: 17px;
}

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

.site-footer {
    margin-top: 86px;
    color: #cbd5e1;
    background: #0f172a;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 46px 24px 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 36px;
}

.footer-brand {
    color: #ffffff;
}

.footer-inner p {
    max-width: 560px;
    color: #94a3b8;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    gap: 12px;
}

.footer-links a {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    color: #e2e8f0;
}

.copyright {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px 34px;
    color: #64748b;
    font-size: 14px;
}

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

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

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

    .mobile-nav.is-open {
        display: grid;
        gap: 14px;
    }

    .mobile-nav .global-search-form {
        width: 100%;
    }

    .mobile-nav .global-search-form input {
        width: 100%;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
    }

    .hero-poster {
        display: none;
    }

    .intro-grid,
    .detail-hero,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 760px) {
    .header-inner {
        padding: 12px 16px;
    }

    .brand-copy small {
        display: none;
    }

    .hero-carousel {
        min-height: 680px;
    }

    .hero-slide {
        padding: 84px 18px 145px;
    }

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

    .hero-controls {
        left: 18px;
    }

    .section-wrap,
    .player-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-title {
        align-items: start;
        flex-direction: column;
    }

    .category-grid,
    .movie-grid,
    .featured-grid,
    .related-grid,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

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

    .category-cover-stack {
        min-height: 170px;
    }

    .category-cover-stack img {
        min-height: 170px;
    }

    .detail-hero {
        margin-left: 16px;
        margin-right: 16px;
        padding: 18px;
    }

    .detail-poster img {
        min-height: auto;
    }

    .video-frame {
        border-radius: 20px;
    }

    .play-circle {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .footer-inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}
