:root {
    --bg: #f8fafc;
    --panel: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --teal: #14b8a6;
    --dark: #020617;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(226, 232, 240, 0.82);
    backdrop-filter: blur(18px);
}

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

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

.brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

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

.nav-link,
.mobile-link {
    padding: 10px 14px;
    border-radius: 12px;
    color: #334155;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover {
    color: var(--blue);
    background: #eff6ff;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: #eff6ff;
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
}

.menu-button span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--blue);
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 10px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

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

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 88px 0 56px;
    color: #fff;
    background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18), transparent 28%), linear-gradient(135deg, #1d4ed8 0%, #0891b2 48%, #0f766e 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.25;
}

.hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.28;
    pointer-events: none;
}

.hero-glow.one {
    left: -120px;
    top: 120px;
    background: #bfdbfe;
}

.hero-glow.two {
    right: -90px;
    bottom: 80px;
    background: #5eead4;
}

.hero-slider {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-slide {
    display: none;
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
    gap: 56px;
}

.hero-slide.is-active {
    display: grid;
}

.hero-copy {
    max-width: 700px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.eyebrow.light {
    color: #e0f2fe;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.eyebrow.dark {
    color: var(--blue);
    background: #eff6ff;
}

.hero-copy h1 {
    margin: 24px 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

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

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

.tag-row.compact {
    margin-top: 12px;
}

.hero-tags {
    margin: 22px 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.tag.light,
.hero-tags .tag {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-actions,
.prev-next-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn,
.plain-link,
.prev-next-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
    color: var(--blue);
    background: #fff;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
}

.btn.primary.small {
    min-height: 40px;
    padding: 0 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.btn.secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn:hover,
.plain-link:hover,
.prev-next-links a:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.32);
    transform: rotate(1deg);
    transition: transform 0.3s ease;
}

.hero-poster:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-poster img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.86), transparent 58%);
}

.hero-poster-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}

.hero-poster-caption span {
    color: #bae6fd;
    font-weight: 800;
}

.hero-poster-caption strong {
    display: block;
    margin-top: 6px;
    font-size: 24px;
}

.hero-controls {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 32px));
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-control,
.hero-dot {
    border: 0;
    cursor: pointer;
}

.hero-control {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: #fff;
    font-size: 30px;
    background: rgba(255, 255, 255, 0.16);
}

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

.hero-dot {
    width: 34px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
}

.hero-dot.is-active {
    background: #fff;
}

.hero-search-card {
    position: relative;
    z-index: 3;
    width: min(1180px, calc(100% - 32px));
    margin: 30px auto 0;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
}

.hero-search-card label {
    display: block;
    margin-bottom: 10px;
    font-weight: 800;
}

.search-bar {
    display: flex;
    gap: 10px;
}

.search-bar input {
    width: 100%;
    height: 50px;
    border: 1px solid transparent;
    outline: 0;
    border-radius: 15px;
    padding: 0 16px;
    background: #fff;
    color: var(--text);
}

.search-bar button {
    min-width: 96px;
    border: 0;
    border-radius: 15px;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

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

.muted-block {
    width: 100%;
    max-width: none;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
    background: #eef6ff;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 8px 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    max-width: 680px;
    color: var(--muted);
}

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

.section-heading.center {
    text-align: center;
}

.section-heading.center p {
    margin-left: auto;
    margin-right: auto;
}

.plain-link,
.prev-next-links a {
    color: var(--blue);
    background: #eff6ff;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.filter-chip {
    border: 0;
    padding: 10px 16px;
    border-radius: 999px;
    color: #334155;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    font-weight: 800;
}

.filter-chip.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

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

.poster-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #dbeafe, #ccfbf1);
}

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

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

.poster-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(10px);
}

.card-content {
    padding: 16px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.card-content h3,
.ranking-info h2 {
    margin: 8px 0 8px;
    font-size: 18px;
    line-height: 1.28;
}

.card-content p,
.ranking-info p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

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

.category-card,
.category-overview-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.category-card {
    padding: 18px;
}

.category-thumbs,
.category-overview-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.category-thumbs img,
.category-overview-top img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    border-radius: 14px;
}

.category-card h3,
.category-overview-body h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.category-card p,
.category-overview-body p {
    color: var(--muted);
    margin: 0 0 14px;
}

.category-card span {
    color: var(--blue);
    font-weight: 800;
}

.category-overview-body {
    padding: 20px;
}

.ranking-block {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
}

.ranking-panel,
.feature-panel {
    border-radius: 28px;
    padding: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.feature-panel {
    color: #fff;
    background: linear-gradient(135deg, #1d4ed8, #0891b2, #0f766e);
}

.feature-panel p {
    color: #dbeafe;
}

.feature-panel h2 {
    margin: 12px 0;
    font-size: 34px;
    line-height: 1.1;
}

.feature-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.feature-points div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
}

.feature-points strong,
.feature-points span {
    display: block;
}

.feature-points span {
    color: #dbeafe;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 46px 64px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #f8fafc;
}

.rank-no {
    color: var(--blue);
    font-size: 20px;
    font-weight: 900;
}

.rank-item img {
    width: 64px;
    height: 74px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-item p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.rank-item em,
.ranking-card em {
    color: var(--cyan);
    font-style: normal;
    font-weight: 900;
}

.page-hero {
    padding: 78px max(16px, calc((100% - 1180px) / 2));
    color: #fff;
    background: radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.2), transparent 30%), linear-gradient(135deg, #1d4ed8, #0891b2, #0f766e);
}

.page-hero h1 {
    max-width: 900px;
    margin: 18px 0 12px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

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

.page-search {
    max-width: 760px;
    margin-top: 28px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 28px;
    color: var(--muted);
    font-weight: 700;
}

.breadcrumbs a {
    color: var(--blue);
}

.light-breadcrumbs {
    color: #bfdbfe;
}

.light-breadcrumbs a {
    color: #fff;
}

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

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

.ranking-card {
    display: grid;
    grid-template-columns: 58px 124px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: 22px;
}

.ranking-card.top .ranking-number {
    color: #fff;
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.ranking-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: #eff6ff;
    font-weight: 900;
}

.ranking-card img {
    width: 124px;
    height: 150px;
    border-radius: 16px;
    object-fit: cover;
}

.detail-hero {
    background-size: cover;
    background-position: center;
    color: #fff;
}

.detail-hero-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 70px;
}

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

.detail-cover {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.detail-intro h1 {
    margin: 16px 0;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.detail-intro p {
    max-width: 760px;
    color: #dbeafe;
    font-size: 19px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #e0f2fe;
    font-weight: 800;
}

.player-section {
    width: min(1180px, calc(100% - 32px));
    margin: -42px auto 0;
    position: relative;
    z-index: 3;
}

.player-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
    aspect-ratio: 16 / 9;
}

.movie-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.72));
}

.player-overlay.is-hidden {
    display: none;
}

.play-circle {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 20px 38px rgba(37, 99, 235, 0.34);
    font-size: 32px;
}

.player-overlay strong {
    max-width: 80%;
    font-size: 24px;
}

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

.detail-article,
.detail-side {
    border-radius: 26px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

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

.detail-side dl {
    margin: 0;
    display: grid;
    gap: 14px;
}

.detail-side dt {
    color: var(--muted);
    font-weight: 800;
}

.detail-side dd {
    margin: -10px 0 0;
    color: var(--text);
}

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

.mini-movie-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
}

.mini-movie-card img {
    width: 72px;
    height: 86px;
    border-radius: 12px;
    object-fit: cover;
}

.mini-movie-card strong,
.mini-movie-card span {
    display: block;
}

.mini-movie-card span {
    color: var(--muted);
    font-size: 13px;
}

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

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
}

.footer-brand {
    color: #fff;
    margin-bottom: 14px;
}

.site-footer p {
    color: #94a3b8;
    margin: 0;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: #cbd5e1;
}

.site-footer a:hover {
    color: #38bdf8;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
    color: #94a3b8;
    text-align: center;
}

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

    .hero-slide,
    .ranking-block,
    .detail-content-grid {
        grid-template-columns: 1fr;
    }

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

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

    .menu-button {
        display: block;
    }

    .hero-section {
        min-height: auto;
        padding-top: 56px;
    }

    .hero-slide.is-active {
        display: block;
    }

    .hero-poster {
        margin-top: 28px;
        min-height: auto;
    }

    .hero-poster img {
        height: 420px;
    }

    .section-heading.split {
        display: block;
    }

    .plain-link {
        margin-top: 16px;
    }

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

    .ranking-card {
        grid-template-columns: 44px 92px 1fr;
    }

    .ranking-card em {
        grid-column: 3;
    }

    .ranking-card img {
        width: 92px;
        height: 116px;
    }

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

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

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

@media (max-width: 560px) {
    .header-inner,
    .hero-slider,
    .hero-controls,
    .hero-search-card,
    .section-wrap,
    .detail-hero-inner,
    .player-section,
    .footer-grid,
    .footer-bottom {
        width: calc(100% - 24px);
    }

    .brand {
        font-size: 18px;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-intro h1 {
        font-size: 38px;
    }

    .search-bar {
        display: grid;
    }

    .search-bar button {
        min-height: 48px;
    }

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

    .rank-item {
        grid-template-columns: 36px 58px 1fr;
    }

    .rank-item em {
        display: none;
    }

    .page-hero {
        padding-top: 56px;
        padding-bottom: 56px;
    }

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

    .ranking-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }

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

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