/* ============================================================
   YukiSubs — Shared Stylesheet
   Design: Sinematik karanlık, indigo + sakura, manga-panel hissi
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
    --bg: #080810;
    --surface: #0f0f1a;
    --surface-2: #14142a;
    --surface-3: #1c1c38;
    --border: rgba(108, 99, 255, 0.15);
    --border-hover: rgba(108, 99, 255, 0.5);

    --indigo: #6c63ff;
    --indigo-dim: #4c45c0;
    --sakura: #ff4d6d;
    --sakura-dim: #c73050;

    --text-primary: #e8e8f0;
    --text-secondary: #9090b0;
    --text-muted: #55556a;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 24px rgba(108, 99, 255, 0.25);
    --shadow-sakura: 0 0 24px rgba(255, 77, 109, 0.3);

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--indigo-dim);
    border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--indigo);
}

/* ── Typography ─────────────────────────────────────────── */
.font-display {
    font-family: 'Syne', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.02em;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.1em;
    background: linear-gradient(180deg, var(--indigo), var(--sakura));
    border-radius: 99px;
    flex-shrink: 0;
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 32px;
    background: rgba(8, 8, 16, 0.75);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid var(--border);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.navbar-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 1px solid var(--border);
}

.navbar-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, var(--indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Search ─────────────────────────────────────────────── */
.search {
    flex: 1;
    max-width: 540px;
    position: relative;
}

.search-bar {
    width: 100%;
    height: 42px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0 16px 0 44px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.search-bar::placeholder {
    color: var(--text-muted);
}

.search-bar:focus {
    border-color: var(--indigo);
    background: var(--surface-3);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}

.search-icon path {
    fill: var(--text-muted);
}

/* Search dropdown */
.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: 320px;
    overflow-y: auto;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition);
    z-index: 10000;
}

.search-results.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background var(--transition);
    position: relative;
    overflow: hidden;
}

.search-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.06));
    opacity: 0;
    transition: opacity var(--transition);
}

.search-item:hover {
    background: var(--surface-3);
}

.search-item:hover::before {
    opacity: 1;
}

.search-item .anime-logo {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.search-item .anime-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ── Nav Menu ───────────────────────────────────────────── */
.right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.right a,
.right .nav-link {
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.right a:hover,
.right .nav-link:hover {
    color: var(--text-primary);
    background: var(--surface-2);
}

.nav-cta {
    background: linear-gradient(135deg, var(--indigo), var(--indigo-dim)) !important;
    color: #fff !important;
    padding: 8px 16px !important;
}

.nav-cta:hover {
    box-shadow: var(--shadow-glow) !important;
    background: var(--indigo) !important;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 190px;
    box-shadow: var(--shadow-card);
    z-index: 4000;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.dropdown:hover .dropdown-content,
.dropdown-content.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary) !important;
    transition: color var(--transition), background var(--transition);
}

.dropdown-content a:hover {
    color: var(--text-primary) !important;
    background: var(--surface-3);
}

/* Hamburger */
.menu-icon {
    display: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.menu-icon:hover {
    background: var(--surface-2);
}

/* ── Hero Slider ────────────────────────────────────────── */
.slider-area {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 32px 20px 0;
}

.slider {
    width: 100%;
    max-width: 1600px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.swiper-slide.slider-slide {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: inherit;
}

.slider-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(8, 8, 16, 0.92) 0%,
            rgba(8, 8, 16, 0.6) 50%,
            transparent 100%);
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 24px;
    padding: 32px;
    width: 100%;
}

.slider-logo {
    width: 130px;
    height: 185px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.slider-texts {
    flex: 1;
    max-width: 600px;
}

.slider-name {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.slider-desc {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Swiper nav buttons */
.swiper-button-prev,
.swiper-button-next {
    width: 44px !important;
    height: 44px !important;
    background: rgba(8, 8, 16, 0.7) !important;
    border: 1px solid var(--border) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px);
    color: white !important;
    transition: background var(--transition), border-color var(--transition) !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(108, 99, 255, 0.4) !important;
    border-color: var(--indigo) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px !important;
    font-weight: 800 !important;
}

/* ── Main Content Area ──────────────────────────────────── */
.free-content {
    display: flex;
    justify-content: center;
    padding: 48px 20px;
}

.free-content-area {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* ── Popular Cards Row ──────────────────────────────────── */
.populars .cards {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    overflow: hidden;
}

.card {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 280px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    border-color: var(--indigo);
}

.rank {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--indigo), var(--indigo-dim));
    color: #fff;
}

.rank.rank-1 {
    background: linear-gradient(135deg, #f5b642, #e07b20);
}

.rank.rank-2 {
    background: linear-gradient(135deg, #c0c0c0, #888);
}

.rank.rank-3 {
    background: linear-gradient(135deg, #cd7f32, #a05a1a);
}

.card-thumb {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.card-texts {
    flex: 1;
    min-width: 0;
}

.card-name {
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Anime Grid ─────────────────────────────────────────── */
.animes {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.anime {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.anime:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: rgba(108, 99, 255, 0.4);
}

/* Manga-panel hover line — the signature */
.anime::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--indigo), var(--sakura));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
    z-index: 5;
}

.anime:hover::after {
    transform: scaleX(1);
}

.anime-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.anime:hover .anime-logo {
    transform: scale(1.06);
}

.anime-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 10px 10px;
    background: linear-gradient(transparent, rgba(8, 8, 16, 0.97) 60%);
}

.anime-name {
    font-weight: 700;
    font-size: 0.82rem;
    line-height: 1.3;
    color: var(--text-primary);
}

.anime-episode {
    font-size: 0.72rem;
    color: var(--indigo);
    font-weight: 700;
    margin-top: 3px;
    letter-spacing: 0.03em;
}

/* ── Watch / Episode Page ───────────────────────────────── */
.watch-layout {
    display: flex;
    justify-content: center;
    padding: 32px 20px 60px;
}

.watch-area {
    width: 100%;
    max-width: 1600px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.watch-main {
    flex: 1;
    min-width: 0;
}

.watch-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.watch-breadcrumb a {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.watch-breadcrumb a:hover {
    color: var(--indigo);
}

.watch-breadcrumb .sep {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.watch-breadcrumb .current {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Episode nav arrows */
.wards {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.ward-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    text-decoration: none;
    transition: color var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.ward-btn:hover {
    color: var(--text-primary);
    border-color: var(--indigo);
    background: var(--surface-2);
    box-shadow: var(--shadow-glow);
}

/* Video player */
.player-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
}

/* Bottom info + discord */
.watch-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.info-card,
.discord-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
}

.info-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--indigo);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.info-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 14px;
}

.info-content {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Discord card */
.discord-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.discord-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.discord-logo {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.discord-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.discord-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.discord-join {
    display: block;
    text-align: center;
    padding: 11px;
    background: linear-gradient(135deg, #5865f2, #404eed);
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    cursor: pointer;
    transition: box-shadow var(--transition), transform var(--transition);
    border: none;
}

.discord-join:hover {
    box-shadow: 0 0 24px rgba(88, 101, 242, 0.5);
    transform: translateY(-1px);
}

/* Episode list sidebar */
.episode-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.episode-list-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: 80px;
}

.episode-list-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--indigo);
    padding: 16px 18px 14px;
    border-bottom: 1px solid var(--border);
}

.episode-list {
    max-height: 520px;
    overflow-y: auto;
}

.episode-item {
    display: block;
    padding: 11px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background var(--transition), color var(--transition);
    border-left: 3px solid transparent;
}

.episode-item:hover {
    background: var(--surface-2);
    color: var(--text-primary);
}

.episode-item.active {
    color: var(--text-primary);
    background: rgba(108, 99, 255, 0.1);
    border-left-color: var(--indigo);
    font-weight: 700;
}

/* Comments toggle */
.show-comments {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 10px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.show-comments:hover {
    color: var(--text-primary);
    border-color: var(--indigo);
    background: var(--surface-2);
}

#disqus_thread {
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* ── Footer ─────────────────────────────────────────────── */
footer,
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
}

footer a,
.footer a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

footer a:hover,
.footer a:hover {
    color: var(--indigo);
}

/* ── Empty state ────────────────────────────────────────── */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    gap: 12px;
    color: var(--text-muted);
}

.empty-state .big {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1400px) {
    .animes {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .watch-area {
        flex-direction: column;
    }

    .episode-sidebar {
        width: 100%;
    }

    .episode-list-card {
        position: static;
    }

    .episode-list {
        max-height: 280px;
    }

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

@media (max-width: 900px) {
    .animes {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    .navbar {
        padding: 12px 16px;
    }

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

@media (max-width: 700px) {
    .animes {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .slider-logo {
        display: none;
    }

    .slider-name {
        font-size: 1.1rem;
    }

    .slider-desc {
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 500px) {
    .right {
        display: none;
    }

    .right.show {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        background: var(--surface-2);
        border-top: 1px solid var(--border);
        padding: 16px;
        gap: 4px;
        z-index: 8000;
    }

    .right.show a,
    .right.show .nav-link {
        width: 100%;
        text-align: center;
    }

    .menu-icon {
        display: block;
    }

    .animes {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .swiper-slide.slider-slide {
        height: 260px;
    }

    .watch-breadcrumb a,
    .watch-breadcrumb .current {
        font-size: 0.95rem;
    }

    .search-bar {
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .animes {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Plyr overrides ─────────────────────────────────────── */
.plyr--video {
    border-radius: 0;
}

.plyr__control--overlaid {
    background: rgba(108, 99, 255, 0.85) !important;
}

.plyr__control--overlaid:hover {
    background: var(--indigo) !important;
}

.plyr__progress input[type='range'],
.plyr__volume input[type='range'] {
    color: var(--indigo) !important;
}

/* ── Utility ────────────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
