@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600;700&display=swap");

:root {
    --red-950: #450a0a;
    --red-900: #7f1d1d;
    --red-800: #991b1b;
    --red-700: #b91c1c;
    --red-600: #dc2626;
    --amber-50: #fff7ed;
    --amber-100: #ffedd5;
    --amber-200: #fed7aa;
    --amber-300: #fdba74;
    --amber-500: #f59e0b;
    --orange-50: #fff7ed;
    --paper: #fffaf2;
    --ink: #321414;
    --muted: #7c4a32;
    --shadow: 0 24px 60px rgba(127, 29, 29, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, var(--amber-50), #fff1e6 42%, #fff7ed 100%);
    font-family: "Noto Serif SC", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.is-locked {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(255, 247, 237, 0.96), rgba(255, 237, 213, 0.96), rgba(254, 215, 170, 0.96));
    border-bottom: 2px solid rgba(153, 27, 27, 0.62);
    box-shadow: 0 12px 30px rgba(127, 29, 29, 0.13);
    backdrop-filter: blur(18px);
}

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

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

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #fff7ed;
    font-size: 24px;
    font-weight: 700;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--red-700), var(--red-950));
    box-shadow: 0 18px 36px rgba(127, 29, 29, 0.22);
    transition: transform 0.3s ease;
}

.brand:hover .brand-mark {
    transform: rotate(6deg) scale(1.04);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    color: var(--red-950);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand-subtitle {
    color: var(--red-700);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    color: var(--red-950);
    font-weight: 600;
    white-space: nowrap;
}

.desktop-nav a {
    position: relative;
    padding: 8px 0;
    transition: color 0.25s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--red-700);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.desktop-nav a:hover {
    color: var(--red-600);
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    color: var(--red-950);
    background: rgba(153, 27, 27, 0.08);
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 14px;
    border: 1px solid rgba(153, 27, 27, 0.18);
    border-radius: 18px;
    background: rgba(255, 247, 237, 0.96);
    box-shadow: var(--shadow);
}

.mobile-nav a {
    display: block;
    padding: 12px 10px;
    border-radius: 12px;
    color: var(--red-950);
    font-weight: 600;
}

.mobile-nav a:hover {
    background: rgba(185, 28, 28, 0.08);
}

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

.hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    color: white;
    background: var(--red-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.8s ease, transform 1.4s ease;
}

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

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(253, 186, 116, 0.32), transparent 28%),
        linear-gradient(180deg, transparent 0%, rgba(69, 10, 10, 0.38) 76%, rgba(255, 247, 237, 1) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    text-align: center;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.45);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 5px 14px;
    border: 1px solid rgba(253, 186, 116, 0.7);
    border-radius: 999px;
    color: #ffedd5;
    background: rgba(69, 10, 10, 0.34);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--red-800);
    background: rgba(253, 186, 116, 0.32);
    border-color: rgba(185, 28, 28, 0.18);
    text-shadow: none;
}

.hero h1 {
    margin: 22px 0 10px;
    font-size: clamp(36px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 700;
}

.hero h2 {
    margin: 0 0 18px;
    color: #ffedd5;
    font-size: clamp(26px, 3.4vw, 44px);
    font-weight: 700;
}

.hero p {
    width: min(760px, 100%);
    margin: 0 auto 24px;
    color: #fff7ed;
    font-size: clamp(17px, 2vw, 24px);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-tags span {
    padding: 7px 12px;
    border: 1px solid rgba(255, 237, 213, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    color: #fff7ed;
    font-size: 14px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.primary-btn,
.ghost-btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.primary-btn {
    color: white;
    background: linear-gradient(135deg, var(--red-700), var(--red-950));
    box-shadow: 0 16px 34px rgba(127, 29, 29, 0.26);
}

.primary-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 44px rgba(127, 29, 29, 0.34);
}

.ghost-btn {
    color: white;
    border: 1px solid rgba(255, 237, 213, 0.34);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

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

.text-link {
    color: var(--red-800);
    min-height: auto;
    padding: 8px 0;
}

.text-link:hover {
    color: var(--red-600);
    transform: translateX(3px);
}

.full-btn {
    width: 100%;
    margin-top: 18px;
}

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

.hero-dots button {
    width: 38px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 237, 213, 0.48);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
    width: 56px;
    background: #fff7ed;
}

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

.section-lift {
    margin-top: -36px;
    position: relative;
    z-index: 5;
}

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

.compact-heading {
    margin-bottom: 18px;
}

.section-heading h2,
.ranking-panel h2,
.detail-copy-card h2,
.side-card h2 {
    margin: 10px 0 0;
    color: var(--red-950);
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.12;
}

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

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

.catalogue-grid {
    margin-top: 28px;
}

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 250, 242, 0.94);
    box-shadow: 0 16px 34px rgba(127, 29, 29, 0.12);
    border: 1px solid rgba(185, 28, 28, 0.10);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 54px rgba(127, 29, 29, 0.20);
    border-color: rgba(185, 28, 28, 0.26);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #7f1d1d, #fdba74);
}

.featured-grid .poster-wrap {
    aspect-ratio: 16 / 10;
}

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

.movie-card:hover .poster-wrap img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.72));
    opacity: 0.9;
}

.type-badge,
.rank-badge {
    position: absolute;
    top: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    background: rgba(153, 27, 27, 0.92);
    backdrop-filter: blur(12px);
}

.type-badge {
    left: 12px;
}

.rank-badge {
    right: 12px;
    background: rgba(245, 158, 11, 0.92);
}

.play-hover {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: rgba(185, 28, 28, 0.86);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
    transform: translate(-50%, -50%) scale(0.82);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
}

.movie-copy strong {
    color: var(--red-950);
    font-size: 18px;
    line-height: 1.28;
}

.movie-meta {
    color: var(--red-700);
    font-size: 13px;
    line-height: 1.5;
}

.movie-desc {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.compact-card {
    min-width: 180px;
}

.compact-card .movie-copy strong {
    font-size: 16px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
}

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

.category-tile,
.category-overview-card,
.ranking-panel,
.detail-copy-card,
.side-card,
.player-card {
    border: 1px solid rgba(185, 28, 28, 0.13);
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.92);
    box-shadow: var(--shadow);
}

.category-tile {
    display: block;
    min-height: 144px;
    padding: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(127, 29, 29, 0.20);
}

.category-tile span,
.category-overview-head span {
    color: var(--red-950);
    font-size: 21px;
    font-weight: 700;
}

.category-tile p,
.category-overview-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.category-overview-card {
    padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-overview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.category-overview-head em {
    color: var(--red-700);
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
}

.ranking-panel {
    padding: 28px;
    position: sticky;
    top: 104px;
}

.mini-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.slim-list {
    margin-top: 18px;
}

.mini-link {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(185, 28, 28, 0.11);
}

.mini-link:last-child {
    border-bottom: 0;
}

.mini-rank,
.mini-dot {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red-700), var(--red-950));
    font-size: 12px;
    font-weight: 700;
}

.mini-dot {
    width: 9px;
    height: 9px;
    background: var(--amber-500);
}

.mini-link span {
    overflow: hidden;
    color: var(--red-950);
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-link em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.horizontal-scroll {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 4px 24px;
    scroll-snap-type: x mandatory;
}

.horizontal-scroll .movie-card {
    scroll-snap-align: start;
}

.sub-hero,
.detail-hero {
    color: white;
    background:
        radial-gradient(circle at 18% 12%, rgba(253, 186, 116, 0.26), transparent 24%),
        linear-gradient(135deg, var(--red-950), var(--red-800));
}

.sub-hero {
    padding: 88px 24px 74px;
    text-align: center;
}

.sub-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
}

.sub-hero p {
    width: min(820px, 100%);
    margin: 0 auto;
    color: #ffedd5;
    font-size: 18px;
    line-height: 1.8;
}

.centered-actions {
    margin-top: 28px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    color: #ffedd5;
    font-size: 14px;
}

.breadcrumb a {
    color: #fff7ed;
    font-weight: 700;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(4, minmax(140px, 1fr));
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(185, 28, 28, 0.13);
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.95);
    box-shadow: var(--shadow);
}

.search-box {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid rgba(153, 27, 27, 0.16);
    border-radius: 14px;
    background: #fff7ed;
}

.search-box span {
    color: var(--red-800);
    font-weight: 700;
}

.search-box input,
.filter-panel select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(153, 27, 27, 0.16);
    border-radius: 14px;
    color: var(--red-950);
    background: #fff7ed;
    outline: none;
}

.search-box input {
    border: 0;
    background: transparent;
}

.filter-panel select {
    padding: 0 14px;
}

.empty-state {
    display: none;
    margin-top: 24px;
    padding: 30px;
    border-radius: 20px;
    color: var(--muted);
    text-align: center;
    background: rgba(255, 250, 242, 0.94);
}

.empty-state.is-visible {
    display: block;
}

.detail-hero {
    min-height: 540px;
    padding: 60px 24px;
    background-position: center;
    background-size: cover;
}

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

.detail-hero .breadcrumb {
    justify-content: flex-start;
    margin-top: 0;
    margin-bottom: 28px;
}

.detail-title-row {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    align-items: end;
}

.detail-poster {
    width: 260px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 5px solid rgba(255, 247, 237, 0.78);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.detail-title-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.05;
}

.detail-title-copy p {
    width: min(760px, 100%);
    margin: 0 0 24px;
    color: #ffedd5;
    font-size: 19px;
    line-height: 1.8;
}

.detail-title-copy .hero-tags {
    justify-content: flex-start;
}

.detail-section {
    padding-top: 44px;
}

.player-card {
    padding: 14px;
    margin-bottom: 30px;
}

.video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #120606;
    aspect-ratio: 16 / 9;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: black;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    width: 100%;
    border: 0;
    color: white;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(69, 10, 10, 0.70));
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.28s ease;
}

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

.player-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red-700), var(--red-950));
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
    font-size: 30px;
}

.player-overlay span:last-child {
    font-size: 20px;
    font-weight: 700;
}

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

.detail-copy-card,
.side-card {
    padding: 30px;
}

.detail-copy-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 2;
}

.detail-copy-card h2 + p {
    margin-top: 14px;
}

.detail-copy-card p + h2 {
    margin-top: 28px;
}

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

.detail-meta-list div {
    padding: 16px;
    border-radius: 16px;
    background: rgba(253, 186, 116, 0.18);
}

.detail-meta-list dt {
    color: var(--red-800);
    font-weight: 700;
}

.detail-meta-list dd {
    margin: 6px 0 0;
    color: var(--muted);
}

.side-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.site-footer {
    margin-top: 40px;
    color: #ffedd5;
    background: linear-gradient(135deg, var(--red-950), var(--red-800));
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.footer-inner strong {
    font-size: 22px;
}

.footer-inner p {
    margin: 8px 0 0;
    color: #fed7aa;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 22px;
}

.footer-links a {
    color: #ffedd5;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 14px;
        font-size: 14px;
    }

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

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

    .split-section,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        position: static;
    }
}

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

    .mobile-toggle {
        display: block;
    }

    .hero {
        height: 620px;
    }

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

    .filter-panel {
        grid-template-columns: 1fr 1fr;
    }

    .search-box {
        grid-column: 1 / -1;
    }

    .detail-title-row {
        grid-template-columns: 160px minmax(0, 1fr);
        align-items: center;
    }

    .detail-poster {
        width: 160px;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .header-inner {
        width: min(100% - 24px, 1280px);
        height: 72px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .brand-name {
        font-size: 20px;
    }

    .brand-subtitle {
        font-size: 11px;
    }

    .hero {
        height: 560px;
    }

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

    .hero h2 {
        font-size: 25px;
    }

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

    .hero-actions,
    .centered-actions {
        flex-direction: column;
    }

    .primary-btn,
    .ghost-btn {
        width: 100%;
    }

    .section {
        width: min(100% - 24px, 1280px);
        padding: 44px 0;
    }

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

    .featured-grid,
    .category-grid,
    .category-overview-grid,
    .movie-grid,
    .filter-panel,
    .detail-meta-list,
    .side-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-title-copy .hero-tags {
        justify-content: flex-start;
    }

    .detail-poster {
        width: min(230px, 72vw);
    }

    .detail-copy-card,
    .side-card {
        padding: 22px;
    }
}
