@font-face {
    font-family: 'Circe';
    src: url('/assets/fonts/Circe-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Circe';
    src: url('/assets/fonts/Circe-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Circe';
    src: url('/assets/fonts/Circe-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Circe';
    src: url('/assets/fonts/Circe-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Circe';
    src: url('/assets/fonts/Circe-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --felt-green: #0b6e4f;
    --felt-green-dark: #073d2c;
    --wood-brown: #5c3a21;
    --wood-brown-light: #8a5a34;
    --wood-brown-dark: #3b2414;
    --gold: #c9a24b;
    --gold-light: #e0c179;
    --cream: #f5efe6;
    --text-on-dark: #f5efe6;
    --text-on-light: #2a1c10;
    --danger: #b3402f;
    --radius: 12px;
    --shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    --font-body: 'Circe', 'Segoe UI', Roboto, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: radial-gradient(ellipse at top, var(--felt-green) 0%, var(--felt-green-dark) 70%);
    color: var(--text-on-dark);
    display: flex;
    flex-direction: column;
}

a {
    color: var(--gold);
}

.site-header {
    background: linear-gradient(180deg, #0c8560 0%, var(--felt-green) 55%, var(--felt-green-dark) 100%);
    border-bottom: 2px solid var(--gold);
    box-shadow: var(--shadow);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.site-header .brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.site-header .brand img {
    border-radius: 7px;
    display: block;
}

/* The hamburger + dropdown menu is the only account menu now, on every
   device size — there's no separate always-visible desktop nav to keep in sync. */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: var(--cream);
}

.site-nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    right: 1rem;
    margin-top: 0.5rem;
    min-width: 190px;
    background: var(--felt-green-dark);
    border: 1px solid rgba(201, 162, 75, 0.4);
    border-radius: 10px;
    padding: 0.6rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    box-shadow: var(--shadow);
    z-index: 20;
}

.site-nav-mobile.open {
    display: flex;
}

/* Plain informational label (the current user's name) — deliberately
   styled unlike the menu links below it, so it doesn't read as tappable. */
.nav-mobile-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem 0.2rem;
}

.nav-mobile-label {
    font-size: 0.8rem;
    color: rgba(245, 239, 230, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.avatar-circle {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: inline-block;
}

.avatar-circle-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--wood-brown-dark);
    font-weight: 700;
}

.avatar-upload-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-upload-row input[type='file'] {
    flex: 1;
    min-width: 0;
    color: var(--cream);
    font-size: 0.85rem;
}

.nav-menu-item {
    display: block;
    padding: 0.6rem;
    border-radius: 8px;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
}

.nav-menu-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.nav-menu-item-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu-item-icon svg {
    flex-shrink: 0;
    opacity: 0.85;
}

/* Deliberately plain — a bare underlined link, not a button — and set
   apart with extra top margin so it always reads as the last, separate
   action in the menu rather than one more item in the list. */
.nav-mobile-logout {
    display: block;
    text-align: left;
    background: none;
    border: none;
    border-radius: 8px;
    color: var(--gold-light);
    text-decoration: underline;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.4rem 0.6rem;
    margin-top: 0.9rem;
}

.nav-mobile-logout:hover {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
    .brand-text {
        display: none;
    }
}

.container {
    flex: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}

.card {
    background: rgba(15, 15, 15, 0.28);
    border: 1px solid rgba(201, 162, 75, 0.35);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.card h1,
.card h2 {
    margin-top: 0;
    color: var(--gold);
}

.field {
    margin-bottom: 1rem;
}

.field label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    color: var(--cream);
}

.field input[type='text'],
.field input[type='email'],
.field input[type='password'],
.field input[type='tel'],
.field input[type='number'],
.field input[type='date'] {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-on-light);
    font-size: 1rem;
}

.select-input {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-on-light);
    font-size: 1rem;
}

.meeting-row {
    display: block;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.meeting-row-status {
    text-align: left;
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: rgba(245, 239, 230, 0.75);
}

.meeting-row-participants {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.6rem;
}

.meeting-row-player {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 0.2rem 0.6rem 0.2rem 0.2rem;
    font-size: 0.82rem;
    color: rgba(245, 239, 230, 0.85);
}

.meeting-row-player-name {
    max-width: 8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.meeting-row-balls {
    font-weight: 700;
    color: var(--gold-light);
}

.match-list-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}

.match-list-status {
    font-size: 0.85rem;
    color: rgba(245, 239, 230, 0.7);
    white-space: nowrap;
}

.match-list-score {
    margin-top: 0.6rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.4rem;
    font-size: 1.05rem;
    color: var(--cream);
}

.match-list-score .score-player {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    min-width: 0;
}

.score-player-name {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

/* Short names stay flush against their side of the block; a name too long
   to fit is clipped and faded out towards the score, instead of a hard cut. */
.score-player-left .score-player-name {
    text-align: left;
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 18px), transparent 100%);
    mask-image: linear-gradient(to right, #000 calc(100% - 18px), transparent 100%);
}

.score-player-right .score-player-name {
    text-align: right;
    -webkit-mask-image: linear-gradient(to left, #000 calc(100% - 18px), transparent 100%);
    mask-image: linear-gradient(to left, #000 calc(100% - 18px), transparent 100%);
}

.match-list-score .score-center {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.match-list-score .score-num {
    color: var(--gold);
    font-weight: 800;
    margin: 0 0.3rem;
}

.match-list-score .score-sep {
    color: rgba(245, 239, 230, 0.5);
}

.trophy-icon {
    width: 15px;
    height: 15px;
    color: var(--gold);
    flex-shrink: 0;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--cream);
    font-size: 0.95rem;
}

.checkbox-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.participant-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.participant-picker-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.7rem 0.45rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 162, 75, 0.35);
    background: rgba(15, 15, 15, 0.28);
    font-size: 0.9rem;
    color: var(--cream);
    cursor: pointer;
}

.participant-picker-item input[type='checkbox'] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 162, 75, 0.4);
    background: rgba(15, 15, 15, 0.3);
    color: var(--cream);
    font-family: inherit;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
}

.dropdown-trigger:hover {
    border-color: rgba(201, 162, 75, 0.7);
}

.dropdown.open .dropdown-trigger {
    border-color: var(--gold);
}

.dropdown-trigger-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-caret {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    transition: transform 0.15s ease;
    flex-shrink: 0;
}

.dropdown.open .dropdown-caret {
    margin-top: 4px;
    transform: rotate(-135deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    right: 0;
    z-index: 30;
    max-height: 280px;
    overflow-y: auto;
    padding: 0.4rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 162, 75, 0.4);
    background: var(--felt-green-dark);
    box-shadow: var(--shadow);
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.6rem;
    border-radius: 6px;
    color: var(--cream);
    font-size: 0.9rem;
    cursor: pointer;
}

.dropdown-option:hover {
    background: rgba(201, 162, 75, 0.15);
}

.dropdown-option:has(input:checked) {
    background: rgba(201, 162, 75, 0.22);
    color: var(--gold-light);
    font-weight: 700;
}

.dropdown-option input {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.qr-canvas {
    display: flex;
    justify-content: center;
    padding: 1rem;
    background: #fff;
    border-radius: var(--radius);
}

.qr-canvas svg {
    width: 100%;
    max-width: 260px;
    height: auto;
}

.stats-year-input {
    width: 4.5rem;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-on-light);
    font-size: 0.9rem;
}

.stats-filter-dates {
    display: flex;
    gap: 0.75rem;
}

/* `display: flex` above has the same specificity as the UA stylesheet's
   `[hidden] { display: none }` and (being an author style) wins the
   cascade tie — without this, [hidden] on this element is silently
   ignored and the date fields never actually hide. */
.stats-filter-dates[hidden] {
    display: none;
}

.stats-filter-dates .field {
    flex: 1;
    min-width: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.stat-tile {
    background: rgba(15, 15, 15, 0.28);
    border: 1px solid rgba(201, 162, 75, 0.35);
    border-radius: var(--radius);
    padding: 0.9rem 1rem;
}

.stat-tile-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.15;
}

.stat-tile-label {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: rgba(245, 239, 230, 0.75);
}

.chart-metric-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.chart-metric-chip {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(201, 162, 75, 0.25);
    font-size: 0.8rem;
    color: var(--cream);
    cursor: pointer;
}

.chart-metric-chip input[type='checkbox'] {
    width: 14px;
    height: 14px;
}

.chart-metric-swatch {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

#stats-chart svg {
    display: block;
    width: 100%;
    height: auto;
}

.h2h-scroll {
    overflow-x: auto;
    margin-top: 1rem;
}

.h2h-flex-table {
    display: flex;
    flex-direction: column;
    min-width: 460px;
    font-size: 0.9rem;
}

.h2h-frow {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(201, 162, 75, 0.2);
}

.h2h-fcell {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.45rem 0.3rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Minimal, content-independent width so the match-number column stays
   compact regardless of what's in the wider stat columns next to it. */
.h2h-fcell-num {
    flex: 0 0 1.7rem;
    padding-left: 0;
    padding-right: 0;
}

.h2h-fcell-delta {
    flex: 0 0 2.6rem;
}

/* flex-grow 3 == the combined width of the three flex-grow-1 stat cells
   below it, so the player-name row lines up with the Ш/Д/С row under it. */
.h2h-fcell-name {
    flex: 3 3 0;
    text-align: left;
    padding-left: 0.4rem;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
}

.h2h-match-num {
    color: rgba(245, 239, 230, 0.4);
}

.h2h-divider {
    border-left: 1px solid rgba(201, 162, 75, 0.25);
}

.h2h-header-row .h2h-fcell {
    color: var(--gold);
    font-weight: 700;
    border-bottom: 1px solid rgba(201, 162, 75, 0.4);
}

.h2h-meeting-info {
    padding: 0.9rem 0.3rem 0.4rem;
    font-weight: 700;
    color: var(--gold-light);
}

.h2h-meeting-total {
    font-weight: 700;
    background: rgba(15, 15, 15, 0.28);
}

.h2h-grand-total {
    font-weight: 800;
    background: rgba(201, 162, 75, 0.18);
    color: var(--gold-light);
}

.h2h-card {
    position: relative;
}

.h2h-card h2 {
    padding-right: 2.5rem;
}

.h2h-help {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.h2h-help-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 75, 0.5);
    background: rgba(15, 15, 15, 0.3);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.h2h-help-tooltip {
    display: none;
    position: absolute;
    top: 130%;
    right: 0;
    z-index: 20;
    width: 260px;
    max-width: 80vw;
    padding: 0.75rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(201, 162, 75, 0.4);
    background: var(--felt-green-dark);
    box-shadow: var(--shadow);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--cream);
    text-align: left;
    white-space: normal;
}

.h2h-help.open .h2h-help-tooltip {
    display: block;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: transform 0.05s ease-in-out, filter 0.15s ease;
}

.tap-btn:disabled,
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--gold);
    color: var(--wood-brown-dark);
    width: 100%;
}

.btn-primary:hover {
    filter: brightness(1.08);
}

.btn-block {
    width: 100%;
    margin-bottom: 0.6rem;
}

.btn-vk {
    background: #0077ff;
    color: #fff;
}

.btn-yandex {
    background: #fc3f1d;
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.alert {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.alert-error {
    background: rgba(179, 64, 47, 0.25);
    border: 1px solid var(--danger);
    color: #ffd9d0;
}

.alert-success {
    background: rgba(11, 110, 79, 0.35);
    border: 1px solid var(--felt-green);
    color: #d9f5ea;
}

.alert-warning {
    background: rgba(201, 162, 75, 0.18);
    border: 1px solid var(--gold);
    color: var(--gold-light);
}

.alert-warning a {
    color: var(--gold-light);
    text-decoration: underline;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(245, 239, 230, 0.6);
    margin: 1.25rem 0;
    font-size: 0.85rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(245, 239, 230, 0.25);
}

.divider:not(:empty)::before {
    margin-right: 0.75rem;
}

.divider:not(:empty)::after {
    margin-left: 0.75rem;
}

.helper-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    color: rgba(245, 239, 230, 0.85);
}

/* Match / meeting screens (touch-friendly, larger tap targets). Players
   stack vertically (up to 10 per match) rather than side-by-side, since a
   horizontal grid stops being usable past two or three players. */
.match-board {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.player-panel {
    background: rgba(15, 15, 15, 0.3);
    border: 1px solid rgba(201, 162, 75, 0.35);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
}

.player-panel-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.player-panel .player-name {
    font-weight: 700;
    color: var(--gold);
    word-break: break-word;
}

.player-panel .player-score {
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
}

.player-panel .ball-count {
    font-size: 1.9rem;
    font-weight: 800;
}

.player-panel .fluke-count {
    display: block;
    font-size: 0.8rem;
    color: rgba(245, 239, 230, 0.7);
}

.player-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.player-actions .tap-btn {
    flex: 1;
    margin-bottom: 0;
}

.tap-btn {
    display: block;
    width: 100%;
    padding: 0.85rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.tap-btn-ball {
    background: var(--gold);
    color: var(--wood-brown-dark);
}

.tap-btn-fluke {
    background: rgba(255, 255, 255, 0.15);
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
}

.player-actions-undo .tap-btn-undo {
    margin-bottom: 0;
}

.tap-btn-undo {
    background: transparent;
    color: rgba(245, 239, 230, 0.6);
    border: 1px dashed rgba(245, 239, 230, 0.3);
    font-size: 0.8rem;
    padding: 0.45rem;
}

.series-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.series-input {
    width: 3.2rem;
    flex-shrink: 0;
    padding: 0.6rem 0.4rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-on-light);
    font-size: 1rem;
    text-align: center;
}

.tap-btn-series {
    flex: 1;
    margin-bottom: 0;
    padding: 0.6rem;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    padding: 0;
}

.icon-btn svg {
    width: 22px;
    height: 22px;
}

.icon-btn:active {
    transform: scale(0.94);
}

.icon-btn-danger {
    border-color: rgba(179, 64, 47, 0.5);
    background: rgba(179, 64, 47, 0.18);
    color: #ff8a75;
}

.match-timer {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin: 1rem 0;
}

.match-status {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(245, 239, 230, 0.75);
    margin-bottom: 0.75rem;
}

.match-controls {
    display: flex;
    gap: 0.6rem;
    margin: 1rem 0;
}

.match-controls .btn {
    flex: 1;
}

@media (min-width: 600px) {
    .container {
        max-width: 720px;
    }
}
