/* ============================================
   Mochi Crew — mochicrew.com
   Aesthetic: Candy Pop Playground
   Fonts: Lilita One (display) + DM Sans (body)
   ============================================ */

:root {
    --coral: #FF6B6B;
    --coral-soft: #FF9B9B;
    --coral-pale: #FFF0EE;
    --teal: #2DD4BF;
    --teal-deep: #14B8A6;
    --violet: #A78BFA;
    --violet-deep: #7C3AED;
    --yellow: #FBBF24;
    --yellow-soft: #FEF3C7;
    --pink: #F472B6;
    --sky: #60A5FA;
    --cream: #FFFBF5;
    --warm-white: #FFF8F2;
    --text: #2D1B0E;
    --text-mid: #5C4433;
    --text-light: #8B7355;
    --text-muted: #B8A692;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(45, 27, 14, 0.06);
    --shadow-md: 0 8px 32px rgba(45, 27, 14, 0.08);
    --shadow-lg: 0 16px 48px rgba(45, 27, 14, 0.12);
    --shadow-glow: 0 0 40px rgba(255, 107, 107, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --radius-xl: 40px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Background Shapes ---- */
.bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: shapeMove 25s ease-in-out infinite;
}

.shape-1 {
    width: 600px; height: 600px;
    background: var(--coral-soft);
    top: -15%; right: -10%;
}
.shape-2 {
    width: 500px; height: 500px;
    background: var(--teal);
    bottom: -10%; left: -10%;
    animation-delay: -8s;
}
.shape-3 {
    width: 400px; height: 400px;
    background: var(--violet);
    top: 40%; left: 30%;
    animation-delay: -16s;
}

@keyframes shapeMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 24px;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 251, 245, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 1px 0 rgba(45, 27, 14, 0.06);
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-icon { font-size: 1.5rem; }

.logo-text {
    font-family: 'Lilita One', cursive;
    font-size: 1.4rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.logo-accent { color: var(--coral); }

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

.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-links a:hover { color: var(--coral); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    background: var(--coral);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.25);
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.35);
}

.nav-cta::after { display: none !important; }

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.nav-mobile span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    max-width: 1140px;
    margin: 0 auto;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 600;
    font-size: 1rem;
}

.mobile-menu.open { display: flex; }

/* ---- Hero ---- */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--coral-pale);
    color: var(--coral);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 24px;
    animation: popIn 0.5s ease-out;
}

.badge-icon { font-size: 0.9rem; }

.hero-title {
    font-family: 'Lilita One', cursive;
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    animation: fadeUp 0.6s ease-out 0.1s both;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--coral) 0%, var(--violet) 50%, var(--teal) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeUp 0.6s ease-out 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-icon {
    width: 18px; height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--text);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(45, 27, 14, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(45, 27, 14, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(45, 27, 14, 0.12);
}

.btn-outline:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeUp 0.6s ease-out 0.4s both;
}

.stat { text-align: center; }

.stat-num {
    display: block;
    font-family: 'Lilita One', cursive;
    font-size: 1.8rem;
    color: var(--coral);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(45, 27, 14, 0.1);
}

/* Hero Pets */
.hero-pets {
    flex-shrink: 0;
    position: relative;
    animation: fadeUp 0.8s ease-out 0.3s both;
}

.pet-parade {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 340px;
}

.pet-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-sm);
    transform: translateY(var(--y, 0));
    animation: petBounce 0.6s ease-out var(--delay) both, petFloat 4s ease-in-out var(--delay) infinite;
    animation-delay: var(--delay), calc(var(--delay) + 0.6s);
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pet-bubble:hover {
    transform: translateY(calc(var(--y, 0px) - 8px)) scale(1.05);
    box-shadow: var(--shadow-md);
}

.pet-emoji { font-size: 2.8rem; line-height: 1; }

.pet-name-tag {
    font-family: 'Lilita One', cursive;
    font-size: 0.8rem;
    color: var(--text-mid);
    letter-spacing: 0.02em;
}

@keyframes petBounce {
    0% { opacity: 0; transform: translateY(calc(var(--y, 0px) + 30px)) scale(0.8); }
    60% { transform: translateY(calc(var(--y, 0px) - 8px)) scale(1.05); }
    100% { opacity: 1; transform: translateY(var(--y, 0px)) scale(1); }
}

@keyframes petFloat {
    0%, 100% { transform: translateY(var(--y, 0px)); }
    50% { transform: translateY(calc(var(--y, 0px) - 8px)); }
}

/* ---- Diagonal Dividers ---- */
.divider {
    position: relative;
    z-index: 1;
    height: 80px;
    margin-top: -40px;
    margin-bottom: -40px;
}

.divider-1 {
    background: linear-gradient(175deg, var(--cream) 49.5%, var(--warm-white) 50.5%);
}

.divider-2 {
    background: linear-gradient(185deg, transparent 49.5%, var(--cream) 50.5%);
}

/* ---- Section Styles ---- */
.section-tag {
    display: inline-block;
    font-family: 'Lilita One', cursive;
    font-size: 0.82rem;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Lilita One', cursive;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 48px;
}

/* ---- Pets Section ---- */
.pets-section {
    position: relative;
    z-index: 1;
    padding: 100px 0 80px;
    background: var(--warm-white);
}

.pets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pet-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(45, 27, 14, 0.04);
}

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

.pet-card:hover .pet-card-glow {
    opacity: 1;
}

.pet-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--accent), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: soft-light;
}

.pet-card-emoji {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease;
}

.pet-card:hover .pet-card-emoji {
    transform: scale(1.15) rotate(-5deg);
}

.pet-card-info {
    position: relative;
    z-index: 1;
}

.pet-card-info h3 {
    font-family: 'Lilita One', cursive;
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text);
}

.pet-card-info p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---- Features Section ---- */
.features-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid rgba(45, 27, 14, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-hero-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, var(--text) 0%, #3D2B1A 100%);
    color: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
}

.feature-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(45, 27, 14, 0.3);
}

.feature-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--teal);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.feature-hero-card h3 {
    font-family: 'Lilita One', cursive;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.feature-hero-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 480px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-family: 'Lilita One', cursive;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* AI Chip Visual */
.feature-visual {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-chip {
    position: relative;
    width: 120px;
    height: 120px;
}

.chip-core {
    position: absolute;
    inset: 35%;
    background: var(--teal);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(45, 212, 191, 0.4);
    animation: chipPulse 2s ease-in-out infinite;
}

.chip-ring {
    position: absolute;
    border: 1.5px solid rgba(45, 212, 191, 0.2);
    border-radius: 12px;
    animation: chipSpin 12s linear infinite;
}

.ring-1 { inset: 20%; animation-duration: 10s; }
.ring-2 { inset: 8%; animation-duration: 15s; animation-direction: reverse; }
.ring-3 { inset: -4%; animation-duration: 20s; border-style: dashed; }

@keyframes chipPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(45, 212, 191, 0.4); }
    50% { box-shadow: 0 0 50px rgba(45, 212, 191, 0.6); }
}

@keyframes chipSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ---- Games Section ---- */
.games-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--warm-white);
}

.games-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.game-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--white);
    border-radius: 50px;
    border: 2px solid rgba(45, 27, 14, 0.04);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-mid);
    transition: all 0.3s ease;
    cursor: default;
}

.game-pill:hover {
    border-color: var(--pill-color);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.game-icon { font-size: 1.3rem; }

/* ---- How Section ---- */
.how-section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.steps-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral), var(--violet));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lilita One', cursive;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.25);
}

.step-card h3 {
    font-family: 'Lilita One', cursive;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--coral-soft);
    margin-top: 18px;
    flex-shrink: 0;
    font-weight: 300;
}

/* ---- CTA Section ---- */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 60px 0 100px;
}

.cta-card {
    background: linear-gradient(135deg, var(--coral) 0%, var(--violet-deep) 100%);
    border-radius: var(--radius-xl);
    padding: 64px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), transparent 60%);
    pointer-events: none;
}

.cta-pets {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.cta-pets span {
    font-size: 2.5rem;
    display: inline-block;
    animation: ctaPetBob 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.15s);
}

@keyframes ctaPetBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-card h2 {
    font-family: 'Lilita One', cursive;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
    position: relative;
}

.cta-card p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 32px;
    position: relative;
}

.cta-card .btn-primary {
    background: var(--white);
    color: var(--text);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    position: relative;
}

.cta-card .btn-primary:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.cta-note {
    display: block;
    margin-top: 16px;
    font-size: 0.78rem;
    opacity: 0.6;
    position: relative;
}

/* ---- Footer ---- */
.footer {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-top: 1px solid rgba(45, 27, 14, 0.05);
    padding: 60px 24px 24px;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(45, 27, 14, 0.05);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-family: 'Lilita One', cursive;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 4px;
}

.footer-col a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--coral); }

.footer-bottom {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ---- Animations ---- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.8); }
    60% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 110px;
        gap: 48px;
    }

    .hero-content { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .section-sub { margin-left: auto; margin-right: auto; }

    .pet-parade {
        max-width: 280px;
        margin: 0 auto;
    }

    .pets-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .feature-hero-card {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-hero-card p { max-width: 100%; }
    .feature-visual { margin: 0 auto; }

    .steps-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin-top: 0;
    }

    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav > .nav-cta { display: none; }
    .nav-inner > .nav-cta { display: none; }
    .nav-mobile { display: flex; }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .pets-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }

    .feature-hero-card {
        padding: 36px 24px;
    }

    .pet-parade {
        grid-template-columns: repeat(3, 1fr);
        max-width: 260px;
        gap: 10px;
    }

    .pet-bubble { padding: 14px 8px 12px; }
    .pet-emoji { font-size: 2rem; }

    .cta-card { padding: 48px 24px; }
    .cta-pets span { font-size: 2rem; }

    .footer-links {
        gap: 32px;
        flex-wrap: wrap;
    }

    .games-scroll { gap: 8px; }
    .game-pill {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}
