:root {
    --teal: #0d9488;
    --teal-soft: #14b8a6;
    --cyan: #0891b2;
    --blue: #2563eb;
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --paper: #ffffff;
    --paper-soft: #f8fafc;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 48%, #f0fdfa 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(16px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, var(--teal), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.brand-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    background: linear-gradient(135deg, var(--teal-soft), var(--cyan));
    box-shadow: 0 12px 24px rgba(8, 145, 178, 0.28);
}

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

.main-nav a,
.mobile-links a {
    position: relative;
    padding: 9px 12px;
    color: #334155;
    font-weight: 700;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-links a:hover,
.mobile-links a.active {
    color: var(--teal);
    background: #ecfeff;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
}

.header-search input,
.mobile-panel input,
.search-panel input,
.js-card-filter {
    width: 240px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 11px 15px;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-panel input:focus,
.search-panel input:focus,
.js-card-filter:focus {
    border-color: var(--teal-soft);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
}

.header-search button,
.mobile-panel button,
.primary-btn,
.ghost-btn,
.quick-actions a,
.category-overview-head a,
.section-heading a {
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    padding: 11px 18px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(13, 148, 136, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.header-search button:hover,
.mobile-panel button:hover,
.primary-btn:hover,
.quick-actions a:hover,
.category-overview-head a:hover,
.section-heading a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(13, 148, 136, 0.28);
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 12px;
    padding: 9px 12px;
    background: #f1f5f9;
    color: #0f172a;
}

.mobile-panel {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-panel form,
.mobile-links,
.mobile-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #bae6fd;
    border-radius: 999px;
    padding: 8px 12px;
    color: #0369a1;
    background: #f0f9ff;
    font-weight: 700;
}

.hero-carousel {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    color: #fff;
    background: #031b2d;
}

.hero-track {
    position: relative;
    min-height: 610px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
    align-items: center;
    gap: 46px;
    padding: 86px max(32px, calc((100vw - 1280px) / 2 + 32px)) 116px;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.55s ease, transform 0.75s ease;
    pointer-events: none;
}

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

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 18% 24%, rgba(20, 184, 166, 0.34), transparent 28%), radial-gradient(circle at 82% 38%, rgba(37, 99, 235, 0.28), transparent 28%);
    pointer-events: none;
}

.hero-copy,
.hero-poster {
    position: relative;
    z-index: 2;
}

.hero-eyebrow,
.section-heading span,
.page-hero span,
.category-overview-head span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    padding: 7px 13px;
    color: #cffafe;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-copy h1,
.hero-copy h2 {
    max-width: 820px;
    margin: 20px 0 18px;
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 760px;
    margin: 0 0 30px;
    color: #dbeafe;
    font-size: clamp(17px, 2.2vw, 22px);
}

.hero-actions,
.quick-actions,
.detail-tags,
.hero-tags,
.filter-buttons,
.mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ghost-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.ghost-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.24);
}

.hero-tags {
    margin-top: 24px;
}

.tag {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 11px;
    color: #0f766e;
    background: #ccfbf1;
    font-size: 13px;
    font-weight: 800;
}

.hero-tags .tag,
.detail-tags .tag {
    color: #ecfeff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-poster {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
    transform: rotate(2deg);
}

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

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

.hero-controls > button,
.hero-dots button {
    border: 0;
    cursor: pointer;
}

.hero-controls > button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    font-size: 30px;
    line-height: 1;
    backdrop-filter: blur(12px);
}

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

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #fff;
}

.quick-panel,
.content-section,
.page-wrap,
.detail-page,
.breadcrumb {
    width: min(1280px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.quick-panel {
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: -54px;
    padding: 26px 30px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.quick-panel h2,
.section-heading h2,
.page-hero h1,
.category-overview-head h2,
.detail-copy h1,
.detail-content h2 {
    margin: 0;
    letter-spacing: -0.04em;
}

.quick-panel h2 {
    font-size: clamp(24px, 3vw, 36px);
}

.quick-panel p {
    margin: 8px 0 0;
    color: var(--muted);
}

.quick-actions a {
    color: var(--teal);
    background: #ecfeff;
    box-shadow: none;
}

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

.soft-section {
    padding-top: 66px;
}

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

.section-heading.compact {
    align-items: center;
}

.section-heading span,
.page-hero span,
.category-overview-head span {
    color: var(--cyan);
    border-color: #bae6fd;
    background: #f0f9ff;
}

.section-heading h2 {
    margin-top: 9px;
    font-size: clamp(28px, 4vw, 44px);
}

.section-heading a,
.category-overview-head a {
    white-space: nowrap;
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    border-color: rgba(20, 184, 166, 0.45);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
}

.poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #ecfeff, #dbeafe);
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(15, 23, 42, 0.46));
    opacity: 0.72;
}

.rank-number {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #f97316, #ef4444);
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.25);
}

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

.meta-row,
.mini-tags {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.meta-row a {
    color: var(--teal);
}

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

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

.movie-card p {
    display: -webkit-box;
    min-height: 3.3em;
    margin: 0 0 14px;
    overflow: hidden;
    color: #475569;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mini-tags {
    justify-content: flex-start;
}

.mini-tags span {
    border-radius: 999px;
    padding: 4px 9px;
    color: #0369a1;
    background: #f0f9ff;
}

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

.category-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 24px;
    border-radius: var(--radius-lg);
    color: #fff;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.category-card span {
    font-size: 25px;
    font-weight: 900;
}

.category-card strong {
    color: #dffafe;
    font-weight: 600;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: 28px;
    align-items: start;
    padding-bottom: 70px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, border 0.2s ease;
}

.rank-item:hover {
    transform: translateX(5px);
    border-color: rgba(20, 184, 166, 0.45);
}

.rank-item span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--teal);
    background: #ccfbf1;
    font-weight: 900;
}

.rank-item strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-item em {
    color: var(--muted);
    font-style: normal;
    font-weight: 700;
}

.page-wrap {
    padding: 46px 0 72px;
}

.page-hero {
    padding: 58px 42px;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(135deg, #0f766e, #0891b2 55%, #2563eb);
    box-shadow: var(--shadow);
}

.page-hero h1 {
    max-width: 880px;
    margin-top: 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
}

.page-hero p {
    max-width: 820px;
    margin: 16px 0 0;
    color: #dffafe;
    font-size: 18px;
}

.page-hero .filter-bar,
.search-panel {
    margin-top: 28px;
}

.page-hero .js-card-filter,
.search-panel input {
    width: min(620px, 100%);
}

.filter-buttons {
    margin-top: 14px;
}

.filter-buttons button {
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 800;
}

.filter-buttons button.active,
.filter-buttons button:hover {
    color: var(--teal);
    background: #fff;
}

.category-overview-list {
    display: grid;
    gap: 28px;
    margin-top: 34px;
}

.category-overview-card {
    padding: 26px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.category-overview-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.category-overview-head h2 {
    margin-top: 10px;
    font-size: 32px;
}

.category-overview-head p {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--muted);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    padding-top: 32px;
    color: var(--muted);
    font-weight: 700;
}

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

.detail-page {
    padding-bottom: 72px;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    margin-top: 24px;
    padding: 38px;
    border-radius: 32px;
    color: #fff;
    background: radial-gradient(circle at 12% 12%, rgba(20, 184, 166, 0.42), transparent 30%), linear-gradient(135deg, #0f172a, #0f766e 58%, #2563eb);
    box-shadow: var(--shadow);
}

.detail-cover {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.detail-cover img {
    width: 100%;
    aspect-ratio: 3 / 4.15;
    object-fit: cover;
}

.detail-copy h1 {
    margin-top: 18px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.08;
}

.lead-text {
    max-width: 820px;
    margin: 18px 0 22px;
    color: #dffafe;
    font-size: 20px;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.detail-meta div {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.11);
}

.detail-meta dt {
    color: #bfdbfe;
    font-size: 13px;
    font-weight: 800;
}

.detail-meta dd {
    margin: 4px 0 0;
    color: #fff;
    font-weight: 900;
}

.player-section,
.detail-content,
.related-section {
    margin-top: 46px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-cover span {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    font-size: 32px;
    box-shadow: 0 18px 34px rgba(8, 145, 178, 0.34);
}

.player-cover strong {
    font-size: 22px;
    letter-spacing: 0.03em;
}

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

.detail-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.detail-content article {
    padding: 28px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.detail-content h2 {
    margin-bottom: 13px;
    font-size: 27px;
}

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

.site-footer {
    color: #cbd5e1;
    background: #0f172a;
    padding: 48px 0 24px;
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.6fr 1fr;
    gap: 34px;
}

.footer-brand {
    margin-bottom: 12px;
    font-size: 26px;
}

.footer-inner p {
    max-width: 520px;
    margin: 0;
    color: #94a3b8;
}

.footer-links,
.footer-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-content: start;
}

.footer-links a,
.footer-cats a {
    color: #cbd5e1;
    font-weight: 700;
}

.footer-links a:hover,
.footer-cats a:hover {
    color: #67e8f9;
}

.copyright {
    width: min(1280px, calc(100% - 32px));
    margin: 28px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.24);
    color: #64748b;
    text-align: center;
}

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

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

    .hero-slide {
        grid-template-columns: minmax(0, 1fr) 300px;
    }
}

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

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

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

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 26px;
        padding-top: 52px;
        padding-bottom: 112px;
    }

    .hero-poster {
        width: min(280px, 70vw);
        margin: 0 auto;
        transform: none;
    }

    .quick-panel,
    .split-layout,
    .detail-hero,
    .detail-content,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .quick-panel {
        margin-top: -32px;
    }

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

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

    .brand {
        font-size: 21px;
    }

    .brand-icon {
        width: 34px;
        height: 34px;
    }

    .hero-carousel,
    .hero-track {
        min-height: 690px;
    }

    .hero-slide {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: 38px;
    }

    .quick-panel,
    .page-hero,
    .detail-hero,
    .category-overview-card,
    .detail-content article {
        padding: 22px;
        border-radius: 22px;
    }

    .movie-grid,
    .small-grid,
    .category-grid,
    .wide-rank-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

    .movie-card h3 {
        font-size: 16px;
    }

    .movie-card p {
        font-size: 14px;
    }

    .section-heading,
    .category-overview-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-meta {
        grid-template-columns: 1fr;
    }

    .player-cover span {
        width: 62px;
        height: 62px;
        font-size: 26px;
    }
}

@media (max-width: 420px) {
    .movie-grid,
    .small-grid,
    .category-grid,
    .wide-rank-list {
        grid-template-columns: 1fr;
    }

    .hero-carousel,
    .hero-track {
        min-height: 650px;
    }
}
