/* ══════════════════════════════════════════════════════════════
   QUENTIN.LIVE — Liquid Glass · Auto Dark / Light Theme
   Détection automatique via prefers-color-scheme
   ══════════════════════════════════════════════════════════════ */

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

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

/* ══════════════════════════════════════════════════════════════
   THÈME CLAIR (défaut)
   ══════════════════════════════════════════════════════════════ */
:root {
    /* Glass */
    --glass-bg:         rgba(255, 255, 255, 0.18);
    --glass-bg-deep:    rgba(255, 255, 255, 0.26);
    --glass-bg-hover:   rgba(255, 255, 255, 0.32);
    --glass-border:     rgba(255, 255, 255, 0.55);
    --glass-border-dim: rgba(255, 255, 255, 0.25);
    --glass-shadow:     0 8px 40px rgba(80, 60, 160, 0.12),
                        0 1.5px 0 rgba(255, 255, 255, 0.70) inset;
    --glass-blur:       blur(32px) saturate(180%);

    /* Speculaire */
    --specular:    linear-gradient(135deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0) 55%);
    --specular-sm: linear-gradient(135deg, rgba(255,255,255,0.60) 0%, rgba(255,255,255,0) 50%);

    /* Background page */
    --page-bg:     #e8ecf8;

    /* Blobs (lumineux & pastels) */
    --blob-1: radial-gradient(circle, #a78bfa, #6366f1);
    --blob-2: radial-gradient(circle, #f9a8d4, #f472b6);
    --blob-3: radial-gradient(circle, #67e8f9, #38bdf8);
    --blob-4: radial-gradient(circle, #fde68a, #fb923c);
    --blob-5: radial-gradient(circle, #6ee7b7, #10b981);
    --blob-opacity: 0.55;
    --blob-blur: 80px;

    /* Texte */
    --text-primary:   rgba(20, 20, 40, 0.92);
    --text-secondary: rgba(20, 20, 40, 0.55);
    --text-muted:     rgba(20, 20, 40, 0.35);

    /* Accents */
    --accent-blue:   #3b82f6;
    --accent-purple: #a855f7;
    --accent-live:   #22c55e;
    --accent-red:    #ef4444;

    /* Badge OFFLINE */
    --badge-off-bg:     rgba(239, 68, 68, 0.10);
    --badge-off-border: rgba(239, 68, 68, 0.28);
    --badge-off-color:  #ef4444;

    /* Badge LIVE */
    --badge-live-bg:     rgba(34, 197, 94, 0.12);
    --badge-live-border: rgba(34, 197, 94, 0.35);
    --badge-live-color:  #16a34a;
    --badge-live-glow:   rgba(34, 197, 94, 0.20);

    /* Bouton primaire */
    --btn-primary-bg:     linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    --btn-primary-shadow: rgba(99, 102, 241, 0.35);
    --btn-primary-hover:  rgba(99, 102, 241, 0.50);

    /* Inputs */
    --input-bg:     rgba(255, 255, 255, 0.45);
    --input-border: rgba(255, 255, 255, 0.65);
    --input-focus-bg:     rgba(255, 255, 255, 0.65);
    --input-focus-border: rgba(99, 102, 241, 0.50);
    --input-focus-glow:   rgba(99, 102, 241, 0.12);

    /* Tabs */
    --tabs-bg:     rgba(255, 255, 255, 0.30);
    --tabs-border: rgba(255, 255, 255, 0.50);
    --tab-active-bg:     rgba(255, 255, 255, 0.85);
    --tab-active-color:  rgba(20, 20, 40, 0.92);
    --tab-active-shadow: rgba(100, 80, 200, 0.15);

    /* Bouton ghost */
    --btn-ghost-bg:     rgba(255, 255, 255, 0.40);
    --btn-ghost-border: rgba(255, 255, 255, 0.65);
    --btn-ghost-color:  rgba(20, 20, 40, 0.55);
    --btn-ghost-hover:  rgba(255, 255, 255, 0.60);

    /* Video overlay */
    --video-overlay-bg:      rgba(230, 230, 245, 0.55);
    --spinner-core:          #e6e6f5;

    /* Chrome URL bar */
    --chrome-url-bg:     rgba(255, 255, 255, 0.40);
    --chrome-url-border: rgba(255, 255, 255, 0.60);

    /* Toasts */
    --toast-ok-bg:    rgba(220, 252, 231, 0.80);
    --toast-ok-bord:  rgba(134, 239, 172, 0.60);
    --toast-ok-color: #15803d;
    --toast-err-bg:   rgba(254, 226, 226, 0.80);
    --toast-err-bord: rgba(252, 165, 165, 0.60);
    --toast-err-color: #b91c1c;

    /* Divers */
    --font-display: 'Syne', sans-serif;
    --font-body:    'Figtree', sans-serif;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --transition:        0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════════════════════════════
   THÈME SOMBRE — override des variables uniquement
   ══════════════════════════════════════════════════════════════ */
@media (prefers-color-scheme: dark) {
    :root {
        /* Glass */
        --glass-bg:         rgba(255, 255, 255, 0.07);
        --glass-bg-deep:    rgba(255, 255, 255, 0.11);
        --glass-bg-hover:   rgba(255, 255, 255, 0.13);
        --glass-border:     rgba(255, 255, 255, 0.14);
        --glass-border-dim: rgba(255, 255, 255, 0.08);
        --glass-shadow:     0 8px 40px rgba(0, 0, 0, 0.55),
                            0 1px 0 rgba(255, 255, 255, 0.12) inset;
        --glass-blur:       blur(40px) saturate(200%);

        /* Speculaire */
        --specular:    linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 55%);
        --specular-sm: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 50%);

        /* Background page */
        --page-bg: #06040f;

        /* Blobs (profonds & saturés) */
        --blob-1: radial-gradient(circle, #7c3aed, #4c1d95);
        --blob-2: radial-gradient(circle, #be185d, #831843);
        --blob-3: radial-gradient(circle, #0e7490, #164e63);
        --blob-4: radial-gradient(circle, #92400e, #451a03);
        --blob-5: radial-gradient(circle, #065f46, #022c22);
        --blob-opacity: 0.38;
        --blob-blur: 90px;

        /* Texte */
        --text-primary:   rgba(240, 238, 255, 0.95);
        --text-secondary: rgba(220, 216, 255, 0.55);
        --text-muted:     rgba(200, 195, 255, 0.30);

        /* Accents */
        --accent-blue:   #818cf8;
        --accent-purple: #c084fc;
        --accent-live:   #4ade80;
        --accent-red:    #f87171;

        /* Badge OFFLINE */
        --badge-off-bg:     rgba(248, 113, 113, 0.10);
        --badge-off-border: rgba(248, 113, 113, 0.22);
        --badge-off-color:  #f87171;

        /* Badge LIVE */
        --badge-live-bg:     rgba(74, 222, 128, 0.10);
        --badge-live-border: rgba(74, 222, 128, 0.28);
        --badge-live-color:  #4ade80;
        --badge-live-glow:   rgba(74, 222, 128, 0.18);

        /* Bouton primaire */
        --btn-primary-bg:     linear-gradient(135deg, #4f46e5, #7c3aed, #9333ea);
        --btn-primary-shadow: rgba(99, 40, 234, 0.40);
        --btn-primary-hover:  rgba(99, 40, 234, 0.55);

        /* Inputs */
        --input-bg:     rgba(255, 255, 255, 0.06);
        --input-border: rgba(255, 255, 255, 0.12);
        --input-focus-bg:     rgba(255, 255, 255, 0.10);
        --input-focus-border: rgba(129, 140, 248, 0.55);
        --input-focus-glow:   rgba(129, 140, 248, 0.12);

        /* Tabs */
        --tabs-bg:     rgba(255, 255, 255, 0.06);
        --tabs-border: rgba(255, 255, 255, 0.10);
        --tab-active-bg:     rgba(255, 255, 255, 0.12);
        --tab-active-color:  rgba(240, 238, 255, 0.95);
        --tab-active-shadow: rgba(0, 0, 0, 0.35);

        /* Bouton ghost */
        --btn-ghost-bg:     rgba(255, 255, 255, 0.07);
        --btn-ghost-border: rgba(255, 255, 255, 0.13);
        --btn-ghost-color:  rgba(220, 216, 255, 0.55);
        --btn-ghost-hover:  rgba(255, 255, 255, 0.12);

        /* Video overlay */
        --video-overlay-bg: rgba(6, 4, 15, 0.60);
        --spinner-core:     #0d0a1e;

        /* Chrome URL bar */
        --chrome-url-bg:     rgba(255, 255, 255, 0.06);
        --chrome-url-border: rgba(255, 255, 255, 0.10);

        /* Toasts */
        --toast-ok-bg:    rgba(20, 83, 45, 0.55);
        --toast-ok-bord:  rgba(74, 222, 128, 0.28);
        --toast-ok-color: #86efac;
        --toast-err-bg:   rgba(127, 29, 29, 0.55);
        --toast-err-bord: rgba(248, 113, 113, 0.28);
        --toast-err-color: #fca5a5;
    }
}

/* ══════════════════════════════════════════════════════════════
   STYLES — un seul bloc, lit les variables ci-dessus
   ══════════════════════════════════════════════════════════════ */

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--page-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    transition: background 0.4s ease, color 0.4s ease;
}

/* ── Blobs ──────────────────────────────────────────────────── */
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(var(--blob-blur));
    opacity: var(--blob-opacity);
    animation: drift linear infinite alternate;
    will-change: transform;
    transition: opacity 0.6s ease;
}

.blob-1 { width: 580px; height: 580px; background: var(--blob-1); top: -180px; left: -140px; animation-duration: 24s; }
.blob-2 { width: 500px; height: 500px; background: var(--blob-2); top: 80px;   right: -110px; animation-duration: 30s; animation-delay: -9s; }
.blob-3 { width: 450px; height: 450px; background: var(--blob-3); bottom: 60px; left: 6%;     animation-duration: 36s; animation-delay: -16s; }
.blob-4 { width: 380px; height: 380px; background: var(--blob-4); bottom: -110px; right: 12%; animation-duration: 28s; animation-delay: -5s; }
.blob-5 { width: 320px; height: 320px; background: var(--blob-5); top: 48%; left: 42%;        animation-duration: 42s; animation-delay: -22s; opacity: calc(var(--blob-opacity) * 0.7); }

@keyframes drift {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(42px, -32px) scale(1.08); }
    66%  { transform: translate(-22px, 20px) scale(0.94); }
    100% { transform: translate(32px, 42px) scale(1.06); }
}

/* ── Glass utility ──────────────────────────────────────────── */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

/* Specular sheen */
.glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--specular);
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

/* Top-edge light line */
.glass::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 5%,
        rgba(255, 255, 255, 0.45) 35%,
        rgba(255, 255, 255, 0.65) 50%,
        rgba(255, 255, 255, 0.45) 65%,
        transparent 95%
    );
    pointer-events: none;
    z-index: 2;
}

/* ── Page layout ────────────────────────────────────────────── */
.page {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 880px;
    padding: 32px 20px 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Header ─────────────────────────────────────────────────── */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    border-radius: var(--radius-xl);
}

.wordmark {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
    color: var(--text-primary);
    position: relative;
    z-index: 3;
}

.wordmark span {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Live Badge ─────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    background: var(--badge-off-bg);
    border: 1px solid var(--badge-off-border);
    color: var(--badge-off-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.badge.live {
    background: var(--badge-live-bg);
    border-color: var(--badge-live-border);
    color: var(--badge-live-color);
    box-shadow: 0 0 22px var(--badge-live-glow);
}

.badge .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.badge.live .dot { animation: pulse 1.4s ease-in-out infinite; }

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

/* ── Video ──────────────────────────────────────────────────── */
.video-wrap {
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
}

.video-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--glass-bg-deep);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border-dim);
    position: relative;
}

.video-chrome::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--specular-sm);
    pointer-events: none;
}

.chrome-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.chrome-dot:nth-child(1) { background: #ff5f57; }
.chrome-dot:nth-child(2) { background: #febc2e; }
.chrome-dot:nth-child(3) { background: #28c840; }

.chrome-url {
    flex: 1;
    margin: 0 12px;
    background: var(--chrome-url-bg);
    border: 1px solid var(--chrome-url-border);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-family: var(--font-body);
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-wrap video { width: 100%; height: auto; display: block; background: #000; }

.video-status {
    position: absolute;
    inset: 0;
    top: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    background: var(--video-overlay-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    transition: opacity 0.5s ease;
}

.video-status.hidden { opacity: 0; pointer-events: none; }

.spinner-ring {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(129, 140, 248, 0.95) 0%,
        rgba(192, 132, 252, 0.80) 40%,
        rgba(244, 114, 182, 0.60) 70%,
        transparent 100%
    );
    animation: spin 1s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-ring::after {
    content: '';
    width: 34px; height: 34px;
    background: var(--spinner-core);
    border-radius: 50%;
}

.video-status p {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.4px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Section title ──────────────────────────────────────────── */
.section-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    width: 100%;
    text-align: left;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    transition: background 0.25s ease;
    position: relative;
    z-index: 3;
}

.section-title:hover { background: var(--glass-bg-hover); }
.section-title .label { flex: 1; position: relative; z-index: 3; }

.chevron {
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; z-index: 3;
}

.section-title.collapsed .chevron { transform: rotate(-90deg); }

/* ── Notification card ──────────────────────────────────────── */
.notif-card {
    border-radius: var(--radius-xl);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    overflow: hidden;
    max-height: 700px;
    transition:
        max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity    0.30s ease,
        padding    0.35s ease,
        margin     0.35s ease;
}

.notif-card .content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.notif-card.collapsed {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -8px;
    pointer-events: none;
}

.notif-card p.desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Notification states ────────────────────────────────────── */
.notif-state {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.state-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.state-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.state-icon--ok {
    background: rgba(34, 197, 94, 0.12);
    color: var(--badge-live-color);
    border: 1px solid var(--badge-live-border);
}

.state-icon--err {
    background: rgba(239, 68, 68, 0.10);
    color: var(--badge-off-color);
    border: 1px solid var(--badge-off-border);
}

.state-icon--warn {
    background: rgba(251, 146, 60, 0.12);
    color: #fb923c;
    border: 1px solid rgba(251, 146, 60, 0.28);
}

.state-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 6px;
}

.state-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-style: italic;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 13px 26px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.22) 50%, transparent 65%);
    transform: translateX(-100%);
    transition: transform 0.55s ease;
    border-radius: inherit;
}

.btn:hover::after { transform: translateX(100%); }

.btn-primary {
    background: var(--btn-primary-bg);
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px var(--btn-primary-shadow),
                0 1px 0 rgba(255, 255, 255, 0.20) inset;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 36px var(--btn-primary-hover),
                0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
    background: var(--btn-ghost-bg);
    color: var(--btn-ghost-color);
    border: 1px solid var(--btn-ghost-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.10), 0 1px 0 rgba(255,255,255,0.10) inset;
}

.btn-ghost:hover {
    background: var(--btn-ghost-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15), 0 1px 0 rgba(255,255,255,0.15) inset;
}

.btn-ghost:active { transform: translateY(0); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }

/* ── Toast ──────────────────────────────────────────────────── */
#toast-container {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    pointer-events: none;
}

.toast {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid;
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    animation: toastIn  0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
               toastOut 0.3s ease 2.7s forwards;
    pointer-events: auto;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.20), 0 1px 0 rgba(255,255,255,0.12) inset;
}

.toast.success { background: var(--toast-ok-bg);  border-color: var(--toast-ok-bord);  color: var(--toast-ok-color);  }
.toast.error   { background: var(--toast-err-bg); border-color: var(--toast-err-bord); color: var(--toast-err-color); }

@keyframes toastIn  { from { opacity: 0; transform: translateY(16px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateY(8px); } }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
    position: relative;
    z-index: 10;
    padding: 28px 20px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.4px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 600px) {
    .page { padding: 20px 14px 60px; gap: 14px; }
    header { padding: 14px 18px; }
    .wordmark { font-size: 1.6rem; }
    .notif-card { padding: 20px 18px; }
    .video-chrome { padding: 10px 14px; }
}
