:root {
    color-scheme: dark;
    font-family:
        "DotGothic16", "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono",
        monospace;

    /* Theme color variables */
    --text-color: #d8fff1;
    --bg-color: #050807;
    --primary-color: #57f0bd;
    --primary-glow: rgb(87 240 189 / 28%);
    --secondary-color: #97d9c5;
    --border-color-opacity: rgb(119 255 214 / 26%);
    --border-color-light: rgb(119 255 214 / 18%);
    --shell-bg: rgb(2 10 8 / 90%);
    --panel-border: rgb(119 255 214 / 20%);
    --panel-bg: rgb(119 255 214 / 14%);
    --glow-effect: rgb(139 235 205 / 13%);
    --card-text: #8ab8aa;
    --active-bg: rgb(87 240 189 / 10%);
    --active-shadow: rgb(87 240 189 / 34%);

    color: var(--text-color);
    background: var(--bg-color);
}

/* Custom Themes Overrides */

/* Amber Theme */
.theme-amber {
    --text-color: #ffcc00;
    --bg-color: #0b0700;
    --primary-color: #ffb000;
    --primary-glow: rgb(255 176 0 / 28%);
    --secondary-color: #dca022;
    --border-color-opacity: rgb(255 176 0 / 26%);
    --border-color-light: rgb(255 176 0 / 18%);
    --shell-bg: rgb(11 7 0 / 92%);
    --panel-border: rgb(255 176 0 / 20%);
    --panel-bg: rgb(255 176 0 / 14%);
    --glow-effect: rgb(255 176 0 / 13%);
    --card-text: #bca06a;
    --active-bg: rgb(255 176 0 / 10%);
    --active-shadow: rgb(255 176 0 / 34%);
}

/* Cyberpunk Theme */
.theme-cyberpunk {
    --text-color: #00ffff;
    --bg-color: #0d0114;
    --primary-color: #ff007f;
    --primary-glow: rgb(255 0 127 / 28%);
    --secondary-color: #da00ff;
    --border-color-opacity: rgb(0 255 255 / 26%);
    --border-color-light: rgb(0 255 255 / 18%);
    --shell-bg: rgb(13 1 20 / 92%);
    --panel-border: rgb(255 0 127 / 20%);
    --panel-bg: rgb(255 0 127 / 14%);
    --glow-effect: rgb(0 255 255 / 13%);
    --card-text: #b050d0;
    --active-bg: rgb(255 0 127 / 10%);
    --active-shadow: rgb(255 0 127 / 34%);
}

/* Matrix Theme */
.theme-matrix {
    --text-color: #33ff33;
    --bg-color: #000500;
    --primary-color: #00ff00;
    --primary-glow: rgb(0 255 0 / 28%);
    --secondary-color: #22aa22;
    --border-color-opacity: rgb(0 255 0 / 26%);
    --border-color-light: rgb(0 255 0 / 18%);
    --shell-bg: rgb(0 5 0 / 92%);
    --panel-border: rgb(0 255 0 / 20%);
    --panel-bg: rgb(0 255 0 / 14%);
    --glow-effect: rgb(0 255 0 / 13%);
    --card-text: #66aa66;
    --active-bg: rgb(0 255 0 / 10%);
    --active-shadow: rgb(0 255 0 / 34%);
}

/* Ghost Theme */
.theme-ghost {
    --text-color: #ffffff;
    --bg-color: #111111;
    --primary-color: #dddddd;
    --primary-glow: rgb(221 221 221 / 28%);
    --secondary-color: #aaaaaa;
    --border-color-opacity: rgb(255 255 255 / 20%);
    --border-color-light: rgb(255 255 255 / 12%);
    --shell-bg: rgb(17 17 17 / 94%);
    --panel-border: rgb(255 255 255 / 16%);
    --panel-bg: rgb(255 255 255 / 8%);
    --glow-effect: rgb(255 255 255 / 6%);
    --card-text: #999999;
    --active-bg: rgb(255 255 255 / 10%);
    --active-shadow: rgb(255 255 255 / 24%);
}

/* Toxic Theme */
.theme-toxic {
    --text-color: #ccff00;
    --bg-color: #080d00;
    --primary-color: #adff2f;
    --primary-glow: rgb(173 255 47 / 28%);
    --secondary-color: #9acd32;
    --border-color-opacity: rgb(173 255 47 / 26%);
    --border-color-light: rgb(173 255 47 / 18%);
    --shell-bg: rgb(8 13 0 / 92%);
    --panel-border: rgb(173 255 47 / 20%);
    --panel-bg: rgb(173 255 47 / 14%);
    --glow-effect: rgb(173 255 47 / 13%);
    --card-text: #8baf40;
    --active-bg: rgb(173 255 47 / 10%);
    --active-shadow: rgb(173 255 47 / 34%);
}

/* Matrix Background Canvas */
.matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100vh;
    margin: 0;
}

button {
    font: inherit;
}

.app {
    min-height: 100vh;
    padding: 24px;
    background:
        linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
        radial-gradient(circle at 72% 8%,
            var(--glow-effect),
            transparent 28rem),
        var(--bg-color);
    background-size:
        100% 4px,
        auto,
        auto;
    outline: none;
}

.shell {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    min-height: calc(100vh - 48px);
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    border: 1px solid var(--border-color-opacity);
    border-radius: 8px;
    background: var(--shell-bg);
    box-shadow: 0 28px 90px rgb(0 0 0 / 58%);
    overflow: hidden;
}

.topbar,
.statusbar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    min-height: 48px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-color-light);
    color: var(--secondary-color);
    font-size: 13px;
}

.statusbar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border-color-light);
    border-bottom: 0;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 0;
}

.mark {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color);
}

.title {
    color: var(--text-color);
    font-weight: 800;
}

.signal,
.metric strong {
    color: var(--primary-color);
}

.select-screen-wrapper,
.result-screen {
    min-height: 0;
}

.select-screen-wrapper {
    grid-row: 2 / -1;
    display: grid;
    grid-template-columns: 1fr 480px;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.result-screen {
    padding: clamp(20px, 4vw, 48px);
}

.select-hero h1,
.result-screen h1 {
    margin: 14px 0 0;
    color: var(--text-color);
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1.05;
}

.select-hero h1 {
    letter-spacing: 0;
}

.hero-subtitle {
    margin-top: 8px;
    color: var(--primary-color);
    font-size: clamp(15px, 2vw, 22px);
    font-weight: 800;
    line-height: 1.25;
}

.genre-label {
    width: fit-content;
    margin-top: 20px;
    color: var(--text-color);
    font-size: clamp(14px, 1.7vw, 17px);
    font-weight: 500;
}

.select-copy {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--secondary-color);
    font-size: clamp(13px, 1.5vw, 16px);
    line-height: 1.6;
}

.typing-demo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    max-width: 760px;
    margin-top: 18px;
    color: var(--secondary-color);
    font-size: 13px;
}

.typing-demo span,
.typing-demo strong,
.typing-demo kbd {
    min-height: 26px;
}

.typing-demo span {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
}

.typing-demo kbd {
    display: inline-grid;
    place-items: center;
    min-width: 24px;
    padding: 0 7px;
    border: 1px solid var(--border-color-opacity);
    border-radius: 3px;
    background: rgb(87 240 189 / 5%);
    color: var(--text-color);
    font: inherit;
    font-weight: 800;
}

.typing-demo strong {
    display: inline-flex;
    align-items: center;
    padding-left: 4px;
    color: var(--primary-color);
    font-size: 12px;
}

.select-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 22px;
    color: var(--secondary-color);
    font-size: 13px;
}

.meta-button {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primary-color);
    font: inherit;
    cursor: pointer;
}

.meta-button:hover,
.meta-button:focus-visible {
    text-decoration: underline;
}

.select-main-content {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow-y: auto;
    padding: clamp(20px, 4vw, 48px);
}

.sidebar-terminal {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    border-left: 1px solid var(--border-color-light);
    background: rgb(0 0 0 / 22%);
}

.sidebar-terminal.keyboard-focus {
    outline: 2px solid #e9d985;
    outline-offset: -2px;
}

.meta-button.keyboard-focus,
.head-action.keyboard-focus,
.primary-action.keyboard-focus,
.mode-card.keyboard-focus {
    outline: 2px solid #e9d985;
    outline-offset: 3px;
}

.terminal-body {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 14px;
    font-size: 13px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terminal-line {
    white-space: pre-wrap;
    word-break: break-all;
    color: var(--card-text);
}

.terminal-line.command {
    color: var(--primary-color);
}

.terminal-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0 0;
    background: transparent;
}

.terminal-prompt {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 13px;
    white-space: nowrap;
}

.terminal-input-row input {
    flex-grow: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-color);
    font: inherit;
    font-size: 13px;
}

.mode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.mode-card {
    min-height: 220px;
    padding: 22px;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    background: rgb(255 255 255 / 2%);
    color: var(--card-text);
    text-align: left;
    cursor: pointer;
}

.mode-card.active {
    border-color: var(--primary-color);
    background: var(--active-bg);
    color: var(--text-color);
    box-shadow: inset 0 0 0 1px var(--active-shadow);
}

.mode-card.hard {
    border-color: rgb(255 107 122 / 32%);
}

.mode-card.hard.active {
    border-color: #ff6b7a;
    background: rgb(255 107 122 / 10%);
    box-shadow: inset 0 0 0 1px rgb(255 107 122 / 30%);
}

.mode-card.hard span {
    color: #ff6b7a;
}

.mode-card span,
.play-head span {
    color: var(--primary-color);
    font-size: 12px;
}

.mode-card strong {
    display: block;
    margin-top: 18px;
    color: var(--text-color);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.35;
}

.mode-card small {
    display: block;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.7;
}

.select-actions,
.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.select-footer-links {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    padding-top: 28px;
    color: rgb(154 203 184 / 62%);
    font-size: 12px;
}

.select-footer-links a {
    color: inherit;
    text-decoration: none;
}

.select-footer-links a:hover,
.select-footer-links a:focus-visible {
    color: var(--primary-color);
    text-decoration: underline;
}

.contract-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 18px;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    background: var(--panel-bg);
    overflow: hidden;
}

.contract-panel div {
    min-height: 82px;
    padding: 16px;
    background: rgb(2 10 8 / 92%);
}

.contract-panel span {
    display: block;
    color: var(--secondary-color);
    font-size: 12px;
}

.contract-panel strong {
    display: block;
    margin-top: 12px;
    color: var(--primary-color);
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.2;
}

.primary-action,
.secondary-action {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 6px;
    cursor: pointer;
}

.shortcut-overlay {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgb(0 0 0 / 64%);
}

.shortcut-panel {
    width: min(720px, 100%);
    max-height: min(720px, calc(100vh - 40px));
    overflow: auto;
    border: 1px solid var(--border-color-opacity);
    border-radius: 8px;
    background: rgb(2 10 8 / 96%);
    box-shadow: 0 28px 90px rgb(0 0 0 / 62%);
}

.shortcut-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start;
    padding: 18px;
    border-bottom: 1px solid var(--border-color-light);
}

.shortcut-head span {
    color: var(--primary-color);
    font-size: 13px;
}

.shortcut-head h2 {
    margin: 8px 0 0;
    color: var(--text-color);
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1;
}

.shortcut-grid {
    display: grid;
    gap: 1px;
    background: var(--panel-bg);
}

.shortcut-grid div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    min-height: 48px;
    padding: 12px 18px;
    background: rgb(2 10 8 / 94%);
    color: var(--secondary-color);
    font-size: 13px;
}

.shortcut-grid kbd {
    display: inline-grid;
    place-items: center;
    min-width: 30px;
    min-height: 26px;
    padding: 0 8px;
    border: 1px solid var(--border-color-opacity);
    border-radius: 4px;
    background: rgb(87 240 189 / 6%);
    color: var(--text-color);
    font: inherit;
    font-weight: 800;
}

.confirm-panel {
    width: min(520px, 100%);
}

.confirm-message {
    margin: 0;
    padding: 20px 18px;
    border-bottom: 1px solid var(--border-color-light);
    color: var(--secondary-color);
    line-height: 1.8;
}

.confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 18px;
}

.primary-action.danger {
    border-color: #ff6b6b;
    background: #ff6b6b;
    color: #170606;
}

.badge-list {
    display: grid;
    gap: 1px;
    background: var(--panel-bg);
}

.badge-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 76px;
    padding: 14px 18px;
    background: rgb(2 10 8 / 94%);
    color: #617d74;
}

.badge-row.unlocked {
    color: var(--secondary-color);
}

.badge-row strong,
.badge-row small {
    display: block;
}

.badge-row strong {
    color: inherit;
    font-size: 14px;
}

.badge-row.unlocked strong {
    color: var(--text-color);
}

.badge-row small {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.45;
}

.badge-row>span {
    color: #617d74;
    font-size: 12px;
}

.badge-row.unlocked>span {
    color: var(--primary-color);
}

.primary-action {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: #04110d;
    font-weight: 800;
}

.secondary-action {
    border: 1px solid var(--border-color-opacity);
    background: transparent;
    color: var(--text-color);
}

.play-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    min-height: 58px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-color-light);
    color: var(--text-color);
}

.play-head span {
    display: block;
}

.play-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.head-action {
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid var(--border-color-opacity);
    border-radius: 4px;
    background: rgb(87 240 189 / 5%);
    color: var(--primary-color);
    cursor: pointer;
}

.head-action:hover,
.head-action:focus-visible {
    border-color: var(--primary-color);
    background: rgb(87 240 189 / 10%);
}

.workbench {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    min-height: 0;
}

.work-surface {
    min-width: 0;
    padding: clamp(18px, 3vw, 34px);
    border-right: 1px solid var(--border-color-light);
}

.prompt {
    color: var(--primary-color);
    font-size: clamp(13px, 1.6vw, 16px);
}

.target {
    min-height: 120px;
    margin-top: 22px;
    padding: 22px 0;
    color: var(--text-color);
    font-size: clamp(28px, 4.8vw, 64px);
    font-weight: 800;
    line-height: 1.16;
    overflow-wrap: anywhere;
}

.furigana {
    margin-top: 16px;
    color: var(--secondary-color);
    font-size: clamp(16px, 1.8vw, 24px);
    font-weight: 500;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.target-done {
    color: var(--primary-color);
    font-weight: 800;
    text-shadow: 0 0 18px var(--primary-glow);
}

.stealth-char {
    display: inline-block;
    transition:
        opacity 180ms ease,
        color 180ms ease,
        filter 180ms ease;
}

.stealth-char.fading-edge {
    color: var(--secondary-color);
    opacity: 0.45;
    filter: blur(0.4px);
}

.stealth-char.faded {
    opacity: 0;
    filter: blur(1px);
    text-shadow: none;
}

.input-target {
    overflow-wrap: anywhere;
}

.candidate-preview {
    overflow-wrap: anywhere;
}

.candidate-preview span:last-child {
    color: var(--secondary-color);
}

.typed {
    min-height: 72px;
    padding: 18px 0 12px;
    border-top: 1px solid var(--border-color-light);
    border-bottom: 1px solid var(--border-color-light);
    color: var(--primary-color);
    font-size: clamp(22px, 3vw, 36px);
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.caret {
    display: inline-block;
    width: 0.7ch;
    height: 1em;
    margin-left: 4px;
    background: var(--primary-color);
    transform: translateY(0.12em);
    animation: blink 1s steps(2, start) infinite;
}

.feedback {
    min-height: 28px;
    margin-top: 18px;
    color: #e9d985;
}

.feedback.miss {
    color: #ff6b7a;
}

.hint {
    margin-top: 18px;
    color: var(--card-text);
    font-size: 14px;
}

.side {
    min-width: 0;
    padding: 22px;
    background: rgb(255 255 255 / 2%);
}

.lock {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgb(255 255 255 / 6%), transparent 42%),
        rgb(2 10 8 / 86%);
}

.shackle {
    position: relative;
    width: 58%;
    height: 58%;
    border: 12px solid var(--primary-color);
    border-bottom: 0;
    border-radius: 999px 999px 0 0;
    opacity: 0.76;
}

.shackle::after {
    content: "";
    position: absolute;
    left: -22%;
    right: -22%;
    bottom: -42%;
    height: 48%;
    border: 1px solid var(--border-color-opacity);
    border-radius: 7px;
    background: #07130f;
    box-shadow: inset 0 0 24px rgb(87 240 189 / 14%);
}

.alarm {
    margin-top: 22px;
}

.target-progress {
    margin-top: 14px;
}

.alarm-label {
    display: flex;
    justify-content: space-between;
    color: var(--secondary-color);
    font-size: 12px;
}

.alarm-track {
    height: 12px;
    margin-top: 8px;
    border: 1px solid var(--panel-border);
    border-radius: 999px;
    overflow: hidden;
}

.alarm-fill {
    height: 100%;
    background: linear-gradient(90deg, #57f0bd, #e9d985, #ff6b7a);
    transition: width 160ms ease;
}

.target-progress-fill {
    height: 100%;
    background: var(--primary-color);
    box-shadow: 0 0 18px var(--primary-glow);
    transition: width 160ms ease;
}

.log {
    margin-top: 22px;
    display: grid;
    gap: 10px;
    color: var(--card-text);
    font-size: 13px;
}

.log-line {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

.log-line b {
    color: var(--primary-color);
    font-weight: 500;
}

.metric {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.result-mode {
    margin-top: 14px;
    color: var(--secondary-color);
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.result-stat {
    min-height: 130px;
    padding: 18px;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    background: rgb(255 255 255 / 2%);
}

.result-stat.wide {
    grid-column: span 2;
}

.result-stat span {
    display: block;
    color: var(--secondary-color);
    font-size: 12px;
}

.result-stat strong {
    display: block;
    margin-top: 18px;
    color: var(--primary-color);
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1;
}

.achievement-unlocks {
    margin-top: 22px;
    border: 1px solid rgb(233 217 133 / 28%);
    border-radius: 8px;
    background: rgb(233 217 133 / 6%);
    overflow: hidden;
}

.achievement-unlocks>span {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid rgb(233 217 133 / 20%);
    color: #e9d985;
    font-size: 12px;
}

.achievement-unlocks>div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1px;
    background: rgb(233 217 133 / 14%);
}

.achievement-card {
    min-height: 86px;
    padding: 16px;
    background: rgb(2 10 8 / 94%);
}

.achievement-card strong,
.achievement-card small {
    display: block;
}

.achievement-card strong {
    color: #f4fffb;
    font-size: 14px;
}

.achievement-card small {
    margin-top: 10px;
    color: var(--secondary-color);
    font-size: 12px;
    line-height: 1.5;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@media (max-width: 820px) {
    .app {
        padding: 12px;
    }

    .shell {
        min-height: calc(100vh - 24px);
    }

    .topbar,
    .statusbar {
        grid-template-columns: 1fr;
    }

    .mode-grid,
    .contract-panel,
    .workbench {
        grid-template-columns: 1fr;
    }

    .select-screen-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        grid-row: 2 / -1;
        min-height: 0;
        height: auto;
    }

    .select-main-content {
        padding: 20px;
        overflow-y: auto;
    }

    .sidebar-terminal {
        border-left: 0;
        border-top: 1px solid var(--border-color-light);
        height: 220px;
        flex-shrink: 0;
    }

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

    .result-stat.wide {
        grid-column: auto;
    }

    .work-surface {
        border-right: 0;
    }

    .side {
        border-top: 1px solid var(--border-color-light);
    }

    .lock {
        max-height: 220px;
    }
}
