/* ChciHry.cz — Slova (česká slovní hra). Standalone styl (model B).
 * Sdílené tokeny + reset + @font-face: css/tokens.css (načíst PRED tímto souborem).
 * Zde jen herně specifické tokeny a layout/komponenty. Animace jen transform/opacity, událostní. */

:root {
    --wheel: min(100vw - 1.5rem, 58svh);
    --tile-size: 19%;
    --tile-1: #FFFDF4; --tile-2: #F0E2C4; --tile-3: #C6AE82;
    --line-stroke: rgba(212, 175, 55, 0.9);
}

html { height: 100%; }

body {
    font-family: 'Montserrat', 'Montserrat-fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--surface-dark);
    color: var(--text-primary);
    min-height: 100svh;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 20% 12%, rgba(212, 175, 55, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(92, 184, 92, 0.05) 0%, transparent 50%);
}

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
svg { display: block; }

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

/* ---------- layout ---------- */
.shell {
    padding: max(0.5rem, env(safe-area-inset-top)) max(0.5rem, env(safe-area-inset-right))
             0.5rem max(0.5rem, env(safe-area-inset-left));
}
.app {
    display: flex; flex-direction: column; align-items: center;
    gap: clamp(0.4rem, 1.2dvh, 0.9rem);
    max-width: 760px; margin: 0 auto;
}

.hd { text-align: center; min-width: 0; width: 100%; }
.hd h1 {
    font-size: clamp(1.15rem, 4.4vw, 2rem);
    font-weight: 900; letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary) 0%, #F5E6D3 55%, var(--primary-dark) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.hd .h1-sub { font-weight: 600; font-size: 0.72em; white-space: nowrap; }

/* meta řádek s chipy + ikonami */
.meta {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 0.4rem; margin-top: 0.4rem;
}
.chip {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.3rem 0.7rem; border-radius: 9999px;
    background: rgba(15, 23, 42, 0.8); border: 1px solid var(--gold-border);
    font-size: 0.8rem; font-weight: 700; color: var(--text-secondary);
}
.icobtn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(15, 23, 42, 0.8); border: 1px solid var(--gold-border);
    font-size: 1.05rem; transition: border-color 0.15s ease, transform 0.15s ease;
    text-decoration: none;
}
.icobtn:hover { border-color: var(--primary); transform: translateY(-1px); }
.icobtn:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }

.status {
    font-size: clamp(0.85rem, 2.6vw, 1.02rem); font-weight: 600;
    color: var(--text-secondary); min-height: 1.4em; text-align: center;
}
.status.is-good { color: var(--success); }
.status.is-bad { color: var(--danger); }
.status.is-key { color: var(--primary); }

/* ---------- play ---------- */
.play { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; width: 100%; }

/* sloty nalezených slov */
.slots {
    display: flex; flex-direction: column-reverse; gap: 0.5rem; width: 100%;
    max-width: var(--wheel);
}
.slots[hidden] { display: none; }
.slot-group { display: flex; flex-direction: column; gap: 0.25rem; }
.slot-group-head {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--text-muted);
}
.slot-row { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.slot {
    min-height: 1.7rem; padding: 0.15rem 0.5rem;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(203, 213, 225, 0.3);
    background: rgba(15, 23, 42, 0.55);
    font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em;
    color: var(--text-muted);
}
.slot .dots { letter-spacing: 0.18em; opacity: 0.6; }
.slot.filled {
    border-style: solid; border-color: var(--gold-border);
    background: rgba(212, 175, 55, 0.14); color: var(--text-primary);
    animation: slotPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.slot.key {
    border-color: var(--primary); background: rgba(212, 175, 55, 0.22);
    color: var(--primary); box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}
.slot.bonus.filled { border-color: rgba(92, 184, 92, 0.5); background: rgba(92, 184, 92, 0.12); }
@keyframes slotPop { 0% { transform: scale(0.3); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* živý náhled skládaného slova */
.preview-wrap { width: 100%; max-width: var(--wheel); display: flex; justify-content: center; }
.preview {
    min-height: 2.6rem; min-width: 60%;
    padding: 0.35rem 1.1rem;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.85); border: 1px solid var(--gold-border);
    font-size: clamp(1.1rem, 5vw, 1.7rem); font-weight: 800; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--primary);
}
.preview .ph { color: var(--text-muted); font-weight: 600; letter-spacing: normal; text-transform: none; font-size: 0.95rem; }
.preview.bad { border-color: var(--danger); color: var(--danger); animation: shake 0.4s ease; }
.preview.good { border-color: var(--success); color: var(--success); }
.preview.dup { border-color: var(--warning); color: var(--warning); }
@keyframes shake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-8px)} 50%{transform:translateX(8px)} 80%{transform:translateX(-4px)} }

/* ---------- kolo písmen ---------- */
.wheel-zone { display: flex; justify-content: center; width: 100%; }
.wheel {
    position: relative; width: var(--wheel); aspect-ratio: 1;
    touch-action: none; -webkit-user-select: none; user-select: none;
}
.wheel-line { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.wheel-line polyline {
    fill: none; stroke: var(--line-stroke); stroke-width: 2.4;
    stroke-linejoin: round; stroke-linecap: round;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.6));
}
.tiles { position: absolute; inset: 0; }
.wheel { container-type: inline-size; }
.tile {
    position: absolute;
    width: var(--tile-size); aspect-ratio: 1;
    transform: translate(-50%, -50%);
    display: grid; place-items: center;
    border-radius: 24%;
    background:
        linear-gradient(150deg, #FFF6D5 0%, #F4D98B 22%, #E7C25A 44%, #D4AF37 60%, #B8860B 85%, #9A6E10 100%);
    border: 1px solid rgba(150, 110, 20, 0.65);
    box-shadow:
        inset 0 2px 3px rgba(255, 255, 255, 0.85),
        inset 0 -5px 8px rgba(120, 80, 10, 0.55),
        inset 0 0 0 1px rgba(255, 244, 200, 0.55),
        0 5px 13px rgba(0, 0, 0, 0.5);
    color: #4A2E08;
    font-weight: 900; font-size: clamp(1.1rem, 6.5cqw, 2rem);
    text-transform: uppercase; line-height: 1;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
    overflow: hidden;
    z-index: 2;
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
/* luxusní lesklý odlesk přes dlaždici */
.tile::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.12) 34%, rgba(255, 255, 255, 0) 52%);
    pointer-events: none;
}
.tile span { position: relative; z-index: 1; pointer-events: none; }
.tile.sel {
    background:
        linear-gradient(150deg, #FFFDEE 0%, #FBE9A0 28%, #F0C94A 52%, #D4AF37 80%, #B8860B 100%);
    box-shadow:
        inset 0 2px 3px rgba(255, 255, 255, 0.9),
        inset 0 -5px 8px rgba(120, 80, 10, 0.5),
        0 0 0 3px var(--primary), 0 0 22px rgba(212, 175, 55, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 3;
}
.tile.used { opacity: 0.4; }
.tile:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }

/* ---------- ovládací tlačítka ---------- */
.controls {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.45rem;
    width: 100%; max-width: var(--wheel);
}
.btn {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 46px; min-width: 44px; padding: 0.5rem 0.7rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--gold-border); border-radius: 9999px;
    color: var(--text-primary); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
    transition: border-color 0.15s ease, transform 0.15s ease; text-align: center;
}
.btn:hover { border-color: var(--primary); transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.btn[aria-pressed="true"] { border-color: var(--primary); background: rgba(212, 175, 55, 0.16); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--surface-dark); border-color: var(--primary); }
.btn-primary:hover { border-color: #F5E6D3; }
.btn[hidden] { display: none; }
.badge {
    position: absolute; top: -6px; right: -2px;
    min-width: 18px; height: 18px; padding: 0 4px;
    border-radius: 9999px; background: var(--accent); color: #fff;
    font-size: 0.65rem; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
}
.badge[hidden] { display: none; }

/* ---------- dialogy ---------- */
dialog.dlg {
    margin: auto; max-width: min(92vw, 26rem); width: 100%;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.97), rgba(2, 6, 23, 0.97));
    color: var(--text-primary); border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-xl); padding: 1.3rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 90px rgba(212, 175, 55, 0.12);
}
dialog.dlg::backdrop { background: rgba(2, 6, 23, 0.72); backdrop-filter: blur(4px); }
.dlg h2 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.9rem; color: var(--primary); text-align: center; }
.dlg .dlg-text { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; text-align: center; }
.dlg fieldset { border: 0; margin-bottom: 0.8rem; }
.dlg legend { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 0.4rem; }
.seg { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 0.4rem; }
.seg label {
    display: flex; align-items: center; justify-content: center;
    min-height: 46px; padding: 0.45rem 0.5rem;
    border: 1px solid var(--gold-border); border-radius: var(--radius-lg);
    background: rgba(30, 41, 59, 0.6); font-size: 0.85rem; font-weight: 600; text-align: center; cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg input:checked + span { color: var(--primary); }
.seg label:has(input:checked) { border-color: var(--primary); background: rgba(212, 175, 55, 0.14); box-shadow: 0 0 12px rgba(212, 175, 55, 0.25); }
.seg label:has(input:focus-visible) { outline: 2px solid var(--primary); outline-offset: 2px; }
.dailybtn {
    width: 100%; min-height: 50px; margin-bottom: 0.3rem;
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    border: 1px solid var(--primary); border-radius: var(--radius-lg);
    background: rgba(212, 175, 55, 0.12); color: var(--primary);
    font-weight: 700; font-size: 0.95rem;
    transition: background 0.15s ease, transform 0.15s ease;
}
.dailybtn:hover { background: rgba(212, 175, 55, 0.22); transform: translateY(-1px); }
.dailybtn small { color: var(--text-secondary); font-weight: 600; }
.setrow {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 44px; padding: 0.3rem 0; font-size: 0.95rem; color: var(--text-primary);
}
.setrow input[type="checkbox"] { width: 1.3rem; height: 1.3rem; accent-color: var(--primary); }
.set-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.6rem; line-height: 1.45; }
.dlg-actions { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
.dlg-actions .btn { flex: 1 1 auto; }
.dlg .stats-line { text-align: center; margin-top: 0.7rem; color: var(--text-secondary); font-size: 0.9rem; }
.dlg .record { text-align: center; margin-top: 0.5rem; color: var(--primary); font-weight: 700; }
.dlg .record[hidden] { display: none; }
.dlg .result-emoji { display: block; text-align: center; font-size: 2.6rem; margin-bottom: 0.4rem; }
.dlg-words { max-width: min(94vw, 32rem); }
.words-list { display: flex; flex-direction: column; gap: 0.6rem; max-height: 60vh; overflow-y: auto; }
.words-list .wl-group { font-size: 0.9rem; }
.words-list .wl-head { font-weight: 700; color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; margin-bottom: 0.2rem; }
.words-list .wl-words { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.words-list .wl-w { padding: 0.15rem 0.5rem; border-radius: var(--radius-sm); background: rgba(30,41,59,0.7); font-weight: 600; }
.words-list .wl-w.found { background: rgba(212, 175, 55, 0.18); color: var(--primary); }
.words-list .wl-w.key { box-shadow: 0 0 0 1px var(--primary); }

/* ---------- toast ---------- */
.toast {
    position: fixed; left: 50%; bottom: max(1rem, env(safe-area-inset-bottom));
    transform: translateX(-50%); display: flex; gap: 0.6rem; align-items: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(2, 6, 23, 0.97));
    border: 1px solid rgba(212, 175, 55, 0.4); border-radius: 9999px;
    padding: 0.55rem 0.6rem 0.55rem 1rem; font-size: 0.85rem; font-weight: 600;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6); z-index: 90; opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease; max-width: 92vw;
}
.toast[hidden] { display: none; }
.toast.hiding { opacity: 0; transform: translateX(-50%) translateY(10px); }
.toast .btn { min-height: 36px; padding: 0.3rem 0.8rem; font-size: 0.78rem; }
.confetti { position: fixed; inset: 0; pointer-events: none; z-index: 80; }

/* ---------- obsahová sekce (SEO/GEO) ---------- */
.content {
    max-width: 820px; margin: 2.5rem auto 0;
    padding: 0 max(1rem, env(safe-area-inset-right)) 2.5rem max(1rem, env(safe-area-inset-left));
    line-height: 1.65; color: var(--text-secondary);
}
.content .answer-first {
    font-size: 1.02rem; color: var(--text-primary);
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--gold-border); border-left: 4px solid var(--primary);
    border-radius: var(--radius-lg); padding: 1rem 1.2rem;
}
.content h2 { font-size: clamp(1.25rem, 3.4vw, 1.6rem); font-weight: 800; color: var(--text-primary); margin: 2.2rem 0 0.8rem; }
.content h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin: 1.3rem 0 0.45rem; }
.content p { margin-bottom: 0.8rem; }
.content ul, .content ol { margin: 0 0 0.9rem 1.4rem; }
.content li { margin-bottom: 0.35rem; }
.content strong { color: var(--text-primary); }
.content kbd {
    background: rgba(30, 41, 59, 0.9); border: 1px solid var(--gold-border); border-radius: 4px;
    padding: 0.05rem 0.4rem; font-size: 0.85em; font-family: inherit;
}
.faq-item { background: rgba(15, 23, 42, 0.85); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); padding: 0.9rem 1.1rem; margin-bottom: 0.7rem; }
.faq-item h3 { margin: 0 0 0.4rem; }
.faq-item p { margin: 0; font-size: 0.95rem; }
.more-games { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0.8rem 0; }
.more-games a {
    padding: 0.45rem 1rem; background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-border); border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.more-games a:hover { border-color: var(--primary); transform: translateY(-2px); color: var(--primary); }
.more-games .all { flex-basis: 100%; display: flex; justify-content: center; margin-top: 0.6rem; }
.updated { margin-top: 2rem; font-size: 0.8rem; color: var(--text-muted); }

/* ========== ANIMOVANÝ NÁVOD ========== */
.tutorial { margin-top: 1.2rem; }
.demos { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .demos { grid-template-columns: 1fr 1fr; } }
.demo { margin: 0; background: rgba(15, 23, 42, 0.85); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); padding: 1rem 1.1rem 1.1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.demo-title { font-size: 1.02rem; font-weight: 700; color: var(--primary); margin: 0; }
.demo-stage {
    position: relative; width: min(100%, 280px); aspect-ratio: 1; align-self: center; margin: 0.2rem 0;
    border: 2px solid var(--primary-dark); border-radius: var(--radius-sm);
    background: linear-gradient(150deg, #20283a 0%, #161d2c 60%, #0d1420 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45); overflow: hidden;
}
.demo-stage svg.demo-line { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.demo-stage svg.demo-line polyline { fill: none; stroke: var(--line-stroke); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.demo-tile {
    position: absolute; width: 20%; aspect-ratio: 1; transform: translate(-50%, -50%);
    left: 0; top: 0; display: grid; place-items: center; border-radius: 22%;
    background: radial-gradient(circle at 38% 28%, var(--tile-1), var(--tile-2) 58%, var(--tile-3));
    box-shadow: inset 0 -2px 4px rgba(120,95,50,0.4), inset 0 1px 3px rgba(255,255,255,0.7), 0 3px 7px rgba(0,0,0,0.45);
    color: #2A2010; font-weight: 900; font-size: 1rem; text-transform: uppercase; z-index: 2;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.demo-tile.sel { box-shadow: 0 0 0 3px var(--primary), 0 0 12px rgba(212,175,55,0.7); transform: translate(-50%, -50%) scale(1.08); z-index: 3; }
.demo-finger {
    position: absolute; width: 14%; transform: translate(-30%, -20%); left: 0; top: 0; z-index: 4;
    font-size: 1.5rem; pointer-events: none; opacity: 0;
    transition: left 0.5s cubic-bezier(0.4,0,0.2,1), top 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.5));
}
.demo-word {
    position: absolute; left: 50%; bottom: 6%; transform: translateX(-50%);
    padding: 0.2rem 0.7rem; border-radius: 9999px; background: rgba(2,6,23,0.8);
    border: 1px solid var(--gold-border); color: var(--primary); font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.95rem; min-height: 1.6em; z-index: 5;
}
.demo-caption {
    min-height: 2.6em; font-size: 0.92rem; font-weight: 600; color: var(--text-primary);
    background: rgba(2, 6, 23, 0.55); border-left: 3px solid var(--primary);
    border-radius: var(--radius-sm); padding: 0.5rem 0.7rem;
}
.demo-controls { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.demo-controls .btn { min-height: 40px; font-size: 0.78rem; padding: 0.4rem 0.9rem; }
.demo-steps { margin: 0.2rem 0 0 1.2rem; font-size: 0.9rem; color: var(--text-secondary); }
.demo-steps li { margin-bottom: 0.25rem; }
.demo-steps li.is-current { color: var(--primary); font-weight: 700; }
.demo--rules .demo-stage { display: none; }
.ok-list { list-style: none; margin-left: 0; }
.ok-list li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.4rem; }
.ok-list .ok { color: var(--success); font-weight: 800; }
.ok-list .x { color: var(--danger); font-weight: 800; }

/* ---------- responzivita ---------- */
@media (min-width: 768px) {
    :root { --wheel: min(56svh, 480px); --tile-size: 18%; }
    .controls { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
    .app { max-width: 900px; }
    :root { --wheel: min(60svh, 520px); }
}
@media (min-width: 2560px) {
    :root { --wheel: min(60svh, 640px); }
    .content { max-width: 1000px; font-size: 1.1rem; }
}

/* mobil landscape: kolo vlevo, sloty/ovládání vpravo */
@media (max-height: 540px) and (orientation: landscape) {
    .app { max-width: none; }
    .play {
        display: grid; grid-template-columns: auto 1fr; align-items: center;
        gap: 0.6rem 1rem; width: 100%;
    }
    :root { --wheel: min(86svh - 2rem, 46vw); }
    .status { grid-column: 1 / -1; }
    .wheel-zone { grid-row: 2 / 5; }
    .slots, .preview-wrap, .controls { max-width: none; }
}

/* výkon: malé displeje — vypnout dekorativní/smyčkové animace */
@media (max-width: 768px) {
    .slot.filled { animation: none; }
}

/* omezený pohyb */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .demo-finger, .demo-tile { transition: none !important; }
}
