*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg: #f9fafb;
    --paper: #ffffff;
    --ink: #111827;
    --muted: #6b7280;
    --soft: #f3f4f6;
    --line: #e5e7eb;
    --red: #ef4444;
    --red-dark: #dc2626;
    --orange: #f97316;
    --yellow: #f59e0b;
    --green: #10b981;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.88);
}

.nav-wrap {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111827;
}

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

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.25);
}

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

.desktop-nav a {
    color: #374151;
    font-weight: 650;
    transition: color 0.2s ease;
}

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

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

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

.header-search button,
.hero-search button {
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--red);
    padding: 8px 16px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.hero-search button:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #f3f4f6;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: #111827;
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    padding: 16px;
    background: #fff;
}

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

.mobile-nav a {
    font-weight: 700;
    color: #374151;
}

.mobile-nav form {
    display: flex;
    gap: 8px;
}

.mobile-nav input {
    min-width: 0;
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 14px;
}

.mobile-nav button {
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--red);
    padding: 10px 16px;
    font-weight: 700;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 78px 0 86px;
    background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 52%, #fefce8 100%);
}

.hero-orb {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.25;
    animation: pulse 4s ease-in-out infinite;
}

.hero-orb-a {
    top: -90px;
    left: -60px;
    background: var(--red);
}

.hero-orb-b {
    right: -80px;
    bottom: -100px;
    background: var(--orange);
    animation-delay: 1.2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 48px;
    align-items: center;
}

.hero-pill,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fee2e2;
    color: var(--red-dark);
    font-size: 14px;
    font-weight: 800;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.eyebrow.light {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.hero-copy h1 {
    margin: 0;
    color: #111827;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero-copy h1 span {
    color: var(--red);
}

.hero-copy p {
    max-width: 620px;
    margin: 24px 0 30px;
    color: #5b6472;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: #fff;
    background: var(--red);
    box-shadow: 0 16px 28px rgba(239, 68, 68, 0.28);
}

.btn.primary:hover {
    background: var(--red-dark);
}

.btn.secondary {
    background: #fff;
    color: #374151;
    box-shadow: var(--shadow-soft);
}

.hero-search {
    display: flex;
    max-width: 560px;
    padding: 6px;
    border-radius: 999px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 12px 18px;
    border-radius: 999px;
}

.hero-carousel {
    position: relative;
    min-height: 440px;
    border-radius: 28px;
    overflow: hidden;
    background: #111827;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

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

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

.hero-slide:hover img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
}

.hero-label {
    position: absolute;
    left: 24px;
    bottom: 126px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    background: var(--red);
    font-size: 14px;
    font-weight: 800;
}

.hero-slide-text {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 34px;
    color: #fff;
}

.hero-slide-text strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.15;
}

.hero-slide-text em {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
}

.hero-dots {
    position: absolute;
    left: 24px;
    bottom: 16px;
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
}

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

.stats-section,
.content-section {
    padding: 64px 0;
}

.stats-section {
    background: #fff;
}

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

.stat-card {
    padding: 28px 18px;
    border-radius: 20px;
    text-align: center;
}

.stat-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1;
}

.stat-card span {
    color: #4b5563;
    font-weight: 700;
}

.stat-card.red {
    background: linear-gradient(135deg, #fff1f2, #ffedd5);
    color: var(--red);
}

.stat-card.orange {
    background: linear-gradient(135deg, #ffedd5, #fef3c7);
    color: var(--orange);
}

.stat-card.yellow {
    background: linear-gradient(135deg, #fef9c3, #dcfce7);
    color: #ca8a04;
}

.stat-card.green {
    background: linear-gradient(135deg, #dcfce7, #ccfbf1);
    color: var(--green);
}

.soft-bg {
    background: #f9fafb;
}

.warm-bg {
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.more-link {
    color: var(--red);
    font-weight: 800;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #374151);
}

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

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

.poster-mask {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08));
    transition: opacity 0.25s ease;
}

.movie-card:hover .poster-mask {
    opacity: 1;
}

.play-chip {
    position: absolute;
    left: 16px;
    bottom: 14px;
    opacity: 0;
    transform: translateY(8px);
    border-radius: 999px;
    padding: 8px 12px;
    color: #fff;
    background: var(--red);
    font-size: 13px;
    font-weight: 800;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-chip {
    opacity: 1;
    transform: translateY(0);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    font-weight: 900;
}

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

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

.movie-card-meta span,
.detail-meta span,
.rank-meta span {
    padding: 3px 8px;
    border-radius: 999px;
    background: #f3f4f6;
}

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

.movie-card h3 a:hover,
.rank-content h3 a:hover {
    color: var(--red);
}

.movie-card p {
    min-height: 48px;
    margin: 0 0 14px;
    color: #5f6877;
    font-size: 14px;
}

.movie-card-tags,
.detail-tags,
.footer-tags,
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag,
.footer-tags a,
.tag-cloud a {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 10px;
    color: #4b5563;
    background: #f3f4f6;
    font-size: 13px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.tag:hover,
.footer-tags a:hover,
.tag-cloud a:hover {
    color: #fff;
    background: var(--red);
}

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

.rank-item {
    display: grid;
    grid-template-columns: 140px 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.rank-cover {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 14px;
    background: #111827;
}

.rank-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-number {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    font-size: 20px;
    font-weight: 900;
}

.rank-content h3 {
    margin: 0 0 7px;
    font-size: 19px;
}

.rank-content p {
    margin: 0 0 9px;
    color: #5f6877;
}

.rank-action,
.panel-more {
    display: inline-flex;
    justify-content: center;
    border-radius: 12px;
    padding: 10px 14px;
    color: #fff;
    background: var(--red);
    font-weight: 800;
}

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

.category-card,
.category-overview-card {
    border-radius: 20px;
    background: linear-gradient(135deg, #fff, #f3f4f6);
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.category-card {
    padding: 24px;
}

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #fff1f2, #ffedd5);
    box-shadow: var(--shadow);
}

.category-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

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

.category-card p {
    margin: 10px 0 0;
    color: #6b7280;
    font-size: 14px;
}

.home-tags,
.search-tags {
    margin-top: 32px;
    justify-content: center;
}

.page-hero {
    padding: 58px 0 64px;
    color: #fff;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 720px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.gradient-red {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.gradient-orange {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.gradient-search {
    background: linear-gradient(135deg, #fb923c, #ef4444);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
}

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

.category-overview-card {
    overflow: hidden;
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 150px;
    background: linear-gradient(135deg, #111827, #374151);
}

.category-cover-stack img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
}

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

.category-overview-body span {
    color: var(--red);
    font-weight: 800;
}

.category-overview-body h2 {
    margin: 8px 0;
}

.category-overview-body p {
    margin: 0;
    color: #6b7280;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 160px 160px auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.search-panel {
    grid-template-columns: minmax(220px, 1fr) 140px 180px 140px auto;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: 0;
    padding: 12px 14px;
    background: #fff;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.result-count {
    color: var(--red);
    font-weight: 900;
    white-space: nowrap;
}

.detail-shell {
    padding: 34px 0 70px;
}

.detail-breadcrumb {
    color: #6b7280;
}

.detail-breadcrumb a:hover {
    color: var(--red);
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.watch-card,
.related-panel {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.player-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #030712;
}

.player-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #030712;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.28), rgba(0, 0, 0, 0.38));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 18px 40px rgba(239, 68, 68, 0.38);
    font-size: 28px;
}

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

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

.watch-body {
    padding: 26px;
}

.title-row {
    display: flex;
    gap: 16px;
    align-items: start;
    justify-content: space-between;
}

.title-row h1 {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.share-button {
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    color: #4b5563;
    background: #f3f4f6;
    font-weight: 800;
}

.share-button.is-copied {
    color: #fff;
    background: var(--green);
}

.detail-meta {
    margin: 16px 0 22px;
}

.detail-block {
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid var(--line);
}

.detail-block h2 {
    margin: 0 0 10px;
    font-size: 20px;
}

.detail-block p {
    margin: 0;
    color: #374151;
    white-space: pre-line;
}

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

.related-panel {
    position: sticky;
    top: 94px;
    padding: 22px;
}

.related-panel h2 {
    margin: 0 0 16px;
}

.side-related-list {
    display: grid;
    gap: 14px;
}

.side-related {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.side-related img {
    width: 118px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    background: #111827;
}

.side-related strong {
    display: -webkit-box;
    overflow: hidden;
    color: #111827;
    font-size: 14px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.side-related em {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 12px;
    font-style: normal;
}

.panel-more {
    width: 100%;
    margin-top: 18px;
}

.inline-related {
    padding-bottom: 0;
}

.site-footer {
    padding: 54px 0;
    color: #d1d5db;
    background: #111827;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1.1fr;
    gap: 32px;
}

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

.site-footer p {
    margin: 0;
    color: #9ca3af;
}

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

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--red);
}

.is-hidden {
    display: none !important;
}

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

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

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

    .related-panel {
        position: static;
    }
}

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

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

    .hero-section {
        padding: 54px 0 64px;
    }

    .hero-grid {
        gap: 30px;
    }

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

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

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

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

    .rank-action {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand {
        font-size: 18px;
    }

    .hero-copy p {
        font-size: 17px;
    }

    .hero-actions,
    .hero-search {
        flex-direction: column;
        align-items: stretch;
        border-radius: 22px;
    }

    .hero-search input,
    .hero-search button {
        width: 100%;
        border-radius: 16px;
    }

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

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

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

    .rank-number {
        position: absolute;
        margin: 8px;
    }

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

    .side-related {
        grid-template-columns: 104px minmax(0, 1fr);
    }
}
