:root {
    color-scheme: light;
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #fffbeb;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --brand: #b45309;
    --brand-dark: #92400e;
    --brand-soft: #fef3c7;
    --shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "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;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(229, 231, 235, 0.85);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

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

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    box-shadow: 0 10px 20px rgba(180, 83, 9, 0.24);
}

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

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

.nav-link {
    color: #374151;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--brand);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
}

.header-search input {
    width: 210px;
    border: 0;
    outline: 0;
    padding: 8px 10px 8px 14px;
    background: transparent;
}

.header-search button,
.search-page-panel button {
    border: 0;
    border-radius: 999px;
    padding: 8px 16px;
    color: #ffffff;
    background: var(--brand);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--brand-dark);
    background: #ffffff;
}

main {
    overflow: hidden;
}

.hero-section {
    padding: 34px 0 24px;
    background:
        radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.20), transparent 34%),
        radial-gradient(circle at 90% 10%, rgba(180, 83, 9, 0.18), transparent 28%),
        linear-gradient(180deg, #fff7ed 0%, #f8fafc 100%);
}

.hero-shell {
    position: relative;
    width: min(1240px, calc(100% - 32px));
    min-height: 560px;
    margin: 0 auto;
    border-radius: 34px;
    overflow: hidden;
    background: #111827;
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
    align-items: stretch;
    opacity: 0;
    transform: scale(1.01);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-image {
    position: relative;
    min-height: 560px;
    background:
        linear-gradient(135deg, rgba(146, 64, 14, 0.96), rgba(17, 24, 39, 0.94)),
        radial-gradient(circle at center, rgba(245, 158, 11, 0.30), transparent 50%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    opacity: 0.84;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.15), #111827 96%);
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 64px 64px 74px 20px;
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 7px 13px;
    color: #92400e;
    background: #fef3c7;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-copy .eyebrow,
.detail-info .eyebrow {
    color: #fed7aa;
    background: rgba(245, 158, 11, 0.18);
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-copy p {
    max-width: 640px;
    margin: 0;
    color: #e5e7eb;
    font-size: 18px;
    line-height: 1.9;
}

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

.hero-tags span,
.tag-row span,
.filter-tokens button {
    border-radius: 999px;
    padding: 6px 11px;
    color: #78350f;
    background: #fef3c7;
    font-size: 12px;
    font-weight: 700;
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary,
.btn-ghost,
.btn-wide,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    min-height: 48px;
    padding: 0 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    box-shadow: 0 14px 24px rgba(180, 83, 9, 0.28);
}

.btn-ghost {
    min-height: 48px;
    padding: 0 22px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.10);
}

.btn-primary:hover,
.btn-ghost:hover,
.section-link:hover,
.btn-wide:hover {
    transform: translateY(-2px);
}

.hero-dots {
    position: absolute;
    z-index: 8;
    right: 46px;
    bottom: 34px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 34px;
    background: #f59e0b;
}

.quick-panel,
.content-section,
.split-section,
.filter-panel,
.detail-content,
.player-section {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.quick-panel {
    padding: 50px 0 24px;
}

.compact-quick {
    padding-top: 24px;
}

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

.section-heading h2,
.story-block h2,
.side-recommend h2 {
    margin: 10px 0 8px;
    color: #111827;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p,
.page-hero p,
.story-block p,
.footer-brand p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

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

.section-link {
    min-height: 42px;
    padding: 0 18px;
    color: var(--brand-dark);
    background: var(--brand-soft);
}

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

.category-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 18px;
    color: #78350f;
    background: #ffffff;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-chip:hover {
    border-color: #f59e0b;
    transform: translateY(-2px);
}

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

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

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

.movie-card {
    min-width: 0;
}

.movie-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.88);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster,
.compact-poster,
.hero-image,
.detail-poster,
.detail-backdrop {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(146, 64, 14, 0.95), rgba(17, 24, 39, 0.92)),
        radial-gradient(circle at 25% 20%, rgba(245, 158, 11, 0.34), transparent 35%);
}

.poster {
    aspect-ratio: 3 / 4;
}

.poster img,
.compact-poster img,
.detail-poster img,
.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.2s ease;
}

.movie-card-link:hover .poster img,
.compact-card:hover img {
    transform: scale(1.07);
}

.poster img.image-missing,
.compact-poster img.image-missing,
.hero-image img.image-missing,
.detail-poster img.image-missing,
.detail-backdrop img.image-missing {
    opacity: 0;
}

.poster-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-weight: 900;
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1.25;
}

.poster img,
.compact-poster img,
.hero-image img,
.detail-poster img,
.detail-backdrop img {
    position: relative;
    z-index: 1;
}

.poster-badge {
    position: absolute;
    z-index: 3;
    left: 12px;
    top: 12px;
    border-radius: 999px;
    padding: 5px 10px;
    color: #ffffff;
    background: rgba(180, 83, 9, 0.90);
    font-size: 12px;
    font-weight: 800;
}

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

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.card-body h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
}

.card-body p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 14px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.movie-card-large {
    grid-column: span 2;
}

.movie-card-large .poster {
    aspect-ratio: 16 / 9;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
    gap: 28px;
    padding: 42px 0;
}

.ranking-panel,
.recommend-panel,
.filter-panel,
.story-block,
.side-recommend,
.category-overview-card {
    border: 1px solid rgba(229, 231, 235, 0.88);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.ranking-panel,
.recommend-panel {
    padding: 28px;
}

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

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

.rank-item:hover {
    background: #fff7ed;
    transform: translateX(3px);
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    font-weight: 900;
}

.rank-title {
    overflow: hidden;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-meta {
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}

.btn-wide {
    width: 100%;
    min-height: 46px;
    margin-top: 18px;
    color: #ffffff;
    background: var(--brand);
}

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

.compact-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border-radius: 16px;
    padding: 10px;
    background: #f9fafb;
    transition: background 0.2s ease;
}

.compact-card:hover {
    background: #fff7ed;
}

.compact-poster {
    aspect-ratio: 3 / 4;
    border-radius: 12px;
}

.compact-card strong {
    display: block;
    overflow: hidden;
    color: #111827;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-card span {
    display: block;
    margin-top: 4px;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
}

.page-hero {
    margin: 34px auto 0;
    width: min(1240px, calc(100% - 32px));
    border-radius: 30px;
    padding: 58px;
    background:
        radial-gradient(circle at 90% 15%, rgba(245, 158, 11, 0.24), transparent 30%),
        linear-gradient(135deg, #111827, #78350f);
    color: #ffffff;
    box-shadow: var(--shadow);
}

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

.page-hero .breadcrumb {
    margin-top: 18px;
}

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

.category-overview-card {
    padding: 24px;
}

.category-overview-card a:first-child {
    display: block;
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    font-size: 22px;
    font-weight: 900;
}

.category-overview-card h2 {
    margin: 18px 0 8px;
    font-size: 24px;
}

.category-overview-card p {
    color: var(--muted);
    line-height: 1.8;
}

.category-samples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.category-samples a {
    border-radius: 999px;
    padding: 6px 10px;
    color: #92400e;
    background: #fef3c7;
    font-size: 12px;
    font-weight: 700;
}

.filter-panel {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 26px;
    padding: 18px;
}

.filter-panel input {
    flex: 1;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: 0;
    padding: 0 18px;
}

.filter-tokens button {
    border: 0;
    cursor: pointer;
}

.detail-hero {
    min-height: 560px;
    color: #ffffff;
    background: #111827;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.46;
    filter: blur(1px);
}

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.62)),
        linear-gradient(0deg, #111827, transparent 65%);
}

.detail-shell {
    position: relative;
    z-index: 3;
    width: min(1240px, calc(100% - 32px));
    min-height: 560px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
    padding: 64px 0;
}

.detail-poster {
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #fbbf24;
}

.detail-info {
    display: grid;
    gap: 18px;
}

.detail-one-line {
    max-width: 820px;
    margin: 0;
    color: #e5e7eb;
    font-size: 19px;
    line-height: 1.8;
}

.detail-tags span {
    color: #ffedd5;
    background: rgba(245, 158, 11, 0.22);
}

.player-section {
    padding: 54px 0 24px;
}

.video-player {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: var(--shadow);
}

.video-player video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    cursor: pointer;
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.70));
    cursor: pointer;
}

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

.play-button {
    width: 88px;
    height: 88px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    box-shadow: 0 18px 40px rgba(180, 83, 9, 0.35);
    cursor: pointer;
}

.play-icon {
    margin-left: 6px;
    font-size: 36px;
}

.player-overlay strong {
    display: block;
    font-size: clamp(22px, 4vw, 42px);
}

.player-overlay span {
    display: block;
    margin-top: 8px;
    color: #fef3c7;
}

.player-message {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 18px;
    z-index: 5;
    color: #ffffff;
    text-align: center;
    pointer-events: none;
}

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

.story-block,
.side-recommend {
    padding: 28px;
}

.story-block {
    grid-column: 1;
}

.side-recommend {
    grid-column: 2;
    grid-row: 1 / span 2;
}

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

.wide-rank-list {
    gap: 12px;
}

.site-footer {
    margin-top: 64px;
    color: #d1d5db;
    background: #111827;
}

.footer-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    padding: 44px 0;
}

.footer-brand-link {
    color: #fbbf24;
}

.footer-brand p {
    max-width: 680px;
    margin-top: 14px;
    color: #9ca3af;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.footer-links a:hover {
    color: #fbbf24;
}

.search-page-panel {
    align-items: stretch;
}

.search-page-panel button {
    min-width: 110px;
}

.is-filtered-out {
    display: none;
}

@media (max-width: 1100px) {
    .header-shell {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .header-search {
        order: 3;
        width: 100%;
    }

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

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

    .hero-copy {
        position: absolute;
        inset: auto 0 0 0;
        padding: 46px;
        background: linear-gradient(0deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.20));
    }

    .hero-image::after {
        background: linear-gradient(0deg, #111827 0%, rgba(17, 24, 39, 0.15) 70%);
    }

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

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

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

    .side-recommend,
    .story-block {
        grid-column: auto;
        grid-row: auto;
    }

    .detail-shell {
        grid-template-columns: 260px minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .header-shell {
        min-height: auto;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
        order: 2;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-left: 0;
        padding: 12px 0;
    }

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

    .nav-link {
        border-radius: 14px;
        padding: 10px 12px;
        background: #f9fafb;
    }

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

    .hero-shell,
    .hero-image,
    .hero-image img {
        min-height: 640px;
    }

    .hero-copy {
        padding: 28px;
    }

    .hero-copy h1,
    .page-hero h1,
    .detail-info h1 {
        font-size: 34px;
    }

    .hero-copy p,
    .detail-one-line,
    .page-hero p {
        font-size: 16px;
    }

    .hero-dots {
        right: 28px;
        bottom: 20px;
    }

    .page-hero {
        padding: 34px 24px;
        border-radius: 24px;
    }

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

    .movie-card-large {
        grid-column: span 2;
    }

    .split-section {
        padding-top: 24px;
    }

    .rank-item {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .rank-meta {
        grid-column: 2;
    }

    .filter-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .detail-shell {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .detail-poster {
        max-width: 280px;
    }

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

@media (max-width: 520px) {
    .header-shell,
    .quick-panel,
    .content-section,
    .split-section,
    .filter-panel,
    .detail-content,
    .player-section,
    .footer-shell,
    .page-hero {
        width: min(100% - 22px, 1240px);
    }

    .hero-shell {
        width: min(100% - 22px, 1240px);
        border-radius: 24px;
    }

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

    .movie-card-large {
        grid-column: auto;
    }

    .ranking-panel,
    .recommend-panel,
    .story-block,
    .side-recommend {
        padding: 20px;
    }
}
