/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6C63FF;
    --primary-dark: #5A52D5;
    --primary-light: #8B83FF;
    --secondary: #FF6584;
    --accent: #00D9A6;
    --bg-dark: #0F0E17;
    --bg-card: #1A1929;
    --bg-card-hover: #232238;
    --text-primary: #FFFFFE;
    --text-secondary: #A7A9BE;
    --text-muted: #6B6D7B;
    --border: #2E2D3D;
    --gradient: linear-gradient(135deg, #6C63FF 0%, #00D9A6 100%);
    --gradient-warm: linear-gradient(135deg, #FF6584 0%, #FFD93D 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== Pages ===== */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* ===== Navbar ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    position: sticky;
    top: 0;
    background: rgba(15, 14, 23, 0.9);
    backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ===== Language Dropdown ===== */
.language-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.lang-btn .fa-chevron-down {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 140px;
    box-shadow: var(--shadow);
    z-index: 200;
}

.lang-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 0.7rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.lang-option:hover {
    background: var(--bg-card-hover);
    color: var(--primary-light);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.logo i {
    color: var(--secondary);
    font-size: 1.6rem;
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--primary);
    color: white;
}

/* ===== Buttons ===== */
.btn-primary {
    padding: 0.85rem 2rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    padding: 0.85rem 2rem;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== Hero Section ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.feature-pill {
    padding: 0.5rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-pill i {
    color: var(--primary);
}

.hero-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Phone Mockup */
.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 1rem;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

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

.mockup-header {
    display: flex;
    gap: 6px;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.mockup-dot:first-child { background: var(--secondary); }
.mockup-dot:nth-child(2) { background: #FFD93D; }
.mockup-dot:nth-child(3) { background: var(--accent); }

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
}

.mockup-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-dark);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.mockup-card i {
    color: var(--primary);
    font-size: 1.2rem;
}

.mockup-card span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.mockup-progress {
    padding: 1rem;
    background: var(--bg-dark);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.progress-bar {
    height: 8px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    transition: width 1s ease;
}

.mockup-progress span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== Features Section ===== */
.features-section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.features-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    background: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.feature-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== Onboarding ===== */
.onboarding-container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 5%;
}

.onboarding-header {
    text-align: center;
    margin-bottom: 2rem;
}

.onboarding-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.onboarding-header p {
    color: var(--text-secondary);
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.step span:first-child {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step.active {
    border-color: var(--primary);
    color: var(--text-primary);
}

.step.active span:first-child {
    background: var(--primary);
    color: white;
}

.step.completed {
    border-color: var(--accent);
    color: var(--accent);
}

.step.completed span:first-child {
    background: var(--accent);
    color: white;
}

/* Form */
.onboarding-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-step h3 i {
    color: var(--primary);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    padding: 0.85rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Goals Grid */
.goals-selection {
    margin-bottom: 1.5rem;
}

.goals-selection > label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.goal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.goal-card i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.goal-card span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.goal-card:hover {
    border-color: var(--primary-light);
}

.goal-card.selected {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
}

.goal-card.selected i {
    color: var(--primary);
}

.goal-card.selected span {
    color: var(--text-primary);
}

/* ===== Loading ===== */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
}

.loading-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--primary);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(108, 99, 255, 0.5); }
    to { text-shadow: 0 0 30px rgba(108, 99, 255, 0.8); }
}

.loading-container h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.loading-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.loading-step {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.5s;
}

.loading-step i {
    color: var(--border);
    transition: color 0.5s;
}

.loading-step.done {
    color: var(--text-primary);
}

.loading-step.done i {
    color: var(--accent);
}

/* ===== Dashboard ===== */
.dashboard-nav {
    position: sticky;
    top: 0;
}

.nav-actions {
    display: flex;
    gap: 0.8rem;
}

.dashboard-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 5%;
}

/* Welcome Banner */
.welcome-banner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.welcome-text h2 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.welcome-text p {
    color: var(--text-secondary);
}

.quick-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tabs */
.dashboard-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.4rem;
}

.tab-btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-btn.active {
    background: var(--primary);
    color: white;
}

.tab-btn:hover:not(.active) {
    background: var(--bg-card-hover);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Plan Content */
.plan-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.meal-card, .workout-card, .tip-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s;
}

.meal-card:hover, .workout-card:hover, .tip-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.meal-card-header, .workout-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.meal-card-header h4, .workout-card-header h4 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meal-card-header h4 i {
    color: var(--secondary);
}

.workout-card-header h4 i {
    color: var(--accent);
}

.meal-time, .workout-duration {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--bg-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.meal-items, .exercise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.meal-items li, .exercise-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.meal-items li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.exercise-list li::before {
    content: '💪';
    font-size: 0.9rem;
}

.meal-macros {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.macro {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.macro span {
    color: var(--text-primary);
    font-weight: 600;
}

.exercise-details {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tip-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tip-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-icon i {
    color: var(--primary);
}

.tip-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.tip-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 5%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .phone-mockup {
        width: 250px;
    }

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

    .form-grid {
        grid-template-columns: 1fr;
    }

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

    .progress-steps {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .progress-steps .step {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: 0;
        flex: 1 1 auto;
        justify-content: center;
        text-align: center;
    }

    .progress-steps .step span:first-child {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        flex-shrink: 0;
    }

    .welcome-banner {
        flex-direction: column;
        text-align: center;
    }

    .quick-stats {
        width: 100%;
        justify-content: center;
    }

    .dashboard-tabs {
        flex-wrap: wrap;
    }

    .onboarding-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .goals-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quick-stats {
        gap: 1rem;
    }

    .progress-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .progress-steps .step {
        justify-content: center;
        width: 100%;
    }
}

/* ===== Disclaimer ===== */
.disclaimer {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    text-align: center;
}

.disclaimer p {
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

.disclaimer i {
    margin-right: 0.4rem;
    color: #ffc107;
}

/* Loading detail - personalized computation feedback */
.loading-detail {
    display: inline-block;
    font-size: 0.75rem;
    color: #6C63FF;
    font-weight: 600;
    margin-left: 4px;
    opacity: 0;
    animation: fadeInDetail 0.5s ease forwards;
}

@keyframes fadeInDetail {
    from { opacity: 0; transform: translateX(-5px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Per-item calorie label */
.item-cal {
    font-size: 0.75rem;
    color: #888;
    font-weight: 500;
    margin-left: 4px;
}

/* Week Day Selector */
.week-day-selector {
    margin-bottom: 1.5rem;
}

.week-days {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.day-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 52px;
}

.day-btn:hover {
    border-color: #6C63FF;
    background: #f8f7ff;
}

.day-btn.active {
    border-color: #6C63FF;
    background: #6C63FF;
    color: #fff;
}

.day-btn.active .day-name,
.day-btn.active .day-date {
    color: #fff;
}

.day-btn.today {
    position: relative;
}

.day-btn.today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF6584;
}

.day-btn.today.active::after {
    background: #fff;
}

.day-name {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
}

.day-date {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-top: 2px;
}

.week-label {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin: 0.5rem 0 0 0;
}
