:root {
    --bg-main: #020617;
    --bg-alt: #020921;
    --bg-elevated: #050f26;
    --border-soft: #1f2937;
    --accent: #38bdf8;
    --accent-strong: #1d4ed8;
    --accent-soft: rgba(56, 189, 248, 0.16);
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --danger: #fca5a5;
    --success: #4ade80;
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-strong: 0 18px 60px rgba(0, 0, 0, 0.85);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: 100vh;
    background: radial-gradient(circle at 10% -10%, #1d4ed8, #020617 45%, #000000 90%);
    color: var(--text-main);
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 16px;
    margin: 0 auto;
}

#arenaCanvas {
    position: fixed;
    inset: 0;
    width: 100vw !important;
    height: 100vh !important;
    pointer-events: none;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.6), rgba(0, 0, 0, 0.95));
    z-index: -1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.90));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 16px 6px;
    position: relative;
}

.brand-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.brand-logo {
    height: 80px;
    width: auto;
    display: block;
    margin-bottom: 10px;
}

.brand-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.19em;
    color: var(--text-muted);
}

.nav-toggle {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 3px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-main);
}


.main-nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding-bottom: 10px;
}

.main-nav a,
.main-nav .nav-link-button {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    border: none;
    background: transparent;
    cursor: pointer;
}

.main-nav a:hover,
.main-nav .nav-link-button:hover {
    color: var(--text-main);
}

.header-glow {
    height: 3px;
    background: linear-gradient(to right, transparent, #38bdf8, #38bdf8, transparent);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.8);
}

.hero-section {
    text-align: center;
    padding: 48px 16px 32px;
}

.hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.hero-title {
    font-size: 26px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 10px;
    background: linear-gradient(to right, #f9fafb, #93c5fd, #bfdbfe);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0 0 18px;
}

.hero-actions {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* buttons */

.btn {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    background: transparent;
}

.btn-primary {
    border-color: #38bdf8;
    background: radial-gradient(circle at 20% 0, #38bdf8, #1d4ed8);
    color: #020617;
    box-shadow: 0 14px 40px rgba(37, 99, 235, 0.8);
}

.btn-ghost {
    background: transparent;
}


.talent-section {
    padding: 24px 0 40px;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.talent-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: radial-gradient(circle at top, #020921, #020617);
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: var(--shadow-strong);
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.talent-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(56, 189, 248, 0.0);
    box-shadow: 0 0 0 rgba(56, 189, 248, 0);
    pointer-events: none;
    transition: box-shadow 0.12s ease, border-color 0.12s ease;
}

.talent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.98);
    border-color: rgba(56, 189, 248, 0.7);
}

.talent-card:hover::before {
    border-color: rgba(56, 189, 248, 0.85);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.9);
}

.talent-image {
    height: 220px;
    background: #020617;
    overflow: hidden;
}

.talent-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.talent-meta {
    padding: 10px 13px 12px;
}

.talent-name-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.talent-name-row h3 {
    margin: 0;
    font-size: 15px;
}

.talent-tag {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.7);
    color: #e0f2fe;
    background: rgba(37, 99, 235, 0.2);
}

.talent-location {
    margin: 6px 0 8px;
    font-size: 12px;
    color: var(--text-muted);
    min-height: 28px;
}

.view-profile-btn {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: transparent;
    color: var(--text-main);
    font-size: 12px;
    padding: 4px 10px;
    cursor: pointer;
}

/* empty state */

.empty-state {
    text-align: center;
    color: var(--text-muted);
    margin-top: 24px;
}

.hidden {
    display: none;
}

.profile-view {
    margin-top: 22px;
}

.back-btn {
    margin-bottom: 14px;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
    gap: 22px;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), #020617 70%);
    border-radius: var(--radius-lg);
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    box-shadow: var(--shadow-strong);
}

.profile-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #020617;
    max-height: 380px;
}

.profile-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow:
        inset 0 0 40px rgba(15, 23, 42, 0.95),
        0 0 26px rgba(56, 189, 248, 0.9);
    pointer-events: none;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    margin: 0 0 6px;
    font-size: 22px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 900;
    background: linear-gradient(to right, #f9fafb, #93c5fd, #e5e7eb);
    -webkit-background-clip: text;
    color: transparent;
}

.profile-location-line {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.profile-divider {
    margin: 10px 0;
    height: 1px;
    background: linear-gradient(to right, rgba(56, 189, 248, 0.0), rgba(56, 189, 248, 0.8), rgba(56, 189, 248, 0.0));
}

.profile-bio-text {
    font-size: 14px;
    margin: 0 0 14px;
}

.profile-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-contact-btn {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: radial-gradient(circle at top, #020921, #020617);
    padding: 6px 12px;
    font-size: 13px;
    color: var(--text-main);
}


.how-section {
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.97), rgba(2, 6, 23, 0.96));
    padding: 24px 0 30px;
}

.how-title {
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 14px;
}

.how-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: left;
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.25), rgba(15, 23, 42, 0.96));
}

.how-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 230px;
}

.how-icon {
    font-size: 20px;
}

.how-text h3 {
    margin: 0 0 2px;
    font-size: 14px;
}

.how-text p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}


.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    background: #020617;
    padding: 10px 0;
    font-size: 12px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-link {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
}


.modal {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.hidden {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
}

.modal-panel {
    position: relative;
    width: 92%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: radial-gradient(circle at top, #020921, #020617);
    box-shadow: var(--shadow-strong);
    padding: 18px 18px 14px;
}

.modal-wide {
    max-width: 880px;
}

.modal-close {
    position: absolute;
    right: 12px;
    top: 8px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 22px;
    cursor: pointer;
}

.modal h2 {
    margin: 0 0 4px;
}

.modal-subtext {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 10px;
}


.talent-form {
    margin-top: 6px;
}

.form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 18px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}

.form-group textarea {
    resize: vertical;
}

.required {
    color: #f97373;
    margin-left: 3px;
    font-size: 12px;
}

.helper-link {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

.helper-link a {
    font-weight: 600;
}

.form-small {
    font-size: 12px;
    color: var(--text-muted);
}

.modal-actions {
    margin-top: 12px;
    text-align: right;
}

.travel-builder {
    border-radius: var(--radius-md);
    border: 1px dashed rgba(148, 163, 184, 0.7);
    padding: 8px;
    background: rgba(15, 23, 42, 0.85);
}

#travelInput {
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: radial-gradient(circle at top, #020921, #020617);
    color: var(--text-main);
    padding: 7px 9px;
    font-size: 13px;
}

.travel-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}


.travel-chip {
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.9);
    background: transparent;
    color: #e0f2fe;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
}

.travel-chip button {
    border: none;
    background: transparent;
    color: #e0f2fe;
    cursor: pointer;
    font-size: 13px;
    padding: 0;
}


.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 540px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: radial-gradient(circle at top, #020921, #020617);
    box-shadow: var(--shadow-strong);
    padding: 12px 14px 10px;
    font-size: 13px;
    z-index: 60;
}

.cookie-banner-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cookie-banner-link {
    border: none;
    background: transparent;
    color: var(--accent);
    font-size: 12px;
    padding: 0;
    cursor: pointer;
}

.cookie-pref-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.cookie-pref-row:last-of-type {
    border-bottom: none;
}

.cookie-pref-text h3 {
    margin: 0 0 2px;
    font-size: 14px;
}

.cookie-pref-text p {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
}

.cookie-pref-control {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.always-active-label {
    font-size: 11px;
    color: var(--text-muted);
}


.switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    inset: 0;
    background-color: #4b5563;
    border-radius: 999px;
    transition: 0.2s;
}

.slider:before {
    content: "";
    position: absolute;
    height: 14px;
    width: 14px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background-color: #f9fafb;
    transition: 0.2s;
}

.switch input:checked + .slider {
    background-color: #38bdf8;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.8);
}

.switch input:checked + .slider:before {
    transform: translateX(16px);
}


.toast-container {
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 70;
}

.toast {
    min-width: 220px;
    max-width: 320px;
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: radial-gradient(circle at top, #020921, #020617);
    color: var(--text-main);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    border-color: rgba(74, 222, 128, 0.8);
    box-shadow: 0 0 14px rgba(74, 222, 128, 0.6);
}

.toast-error {
    border-color: rgba(248, 113, 113, 0.8);
    box-shadow: 0 0 14px rgba(248, 113, 113, 0.7);
}

.toast-icon {
    font-size: 16px;
}


@media (max-width: 840px) {
    .profile-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: rgba(2, 6, 23, 0.98);
        border-bottom: 1px solid rgba(148, 163, 184, 0.4);
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0 12px;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.14s ease, opacity 0.14s ease;
    }

    .main-nav.open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .page-controls {
        margin-left: 0;
    }

    .hero-title {
        font-size: 22px;
    }

    .form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .toast-container {
        right: 8px;
        bottom: 8px;
    }
}

#arenaCanvas {
    position: fixed;
    inset: 0;
    z-index: -1 !important; /* Was -2 */
}

body::before {
    z-index: -2 !important; /* Was -1 */
}

.bio-counter {
    margin-top: 4px;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: color 0.3s ease;
}

.bio-counter.error {
    color: #ef4444;
}

.bio-counter.good {
    color: #38bdf8;
}
/* FILTER BAR – Unified + Correct */
.filter-bar {
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.96));
    padding: 0.75rem 0;          /* was 1rem – slightly tighter vertically */
    max-height: 175px;           /* NEW: hard cap so it can’t get tall */
    overflow: hidden;            /* NEW: clip any extra vertical growth */
}

.filter-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;                /* was 1rem – less vertical gap */
    min-height: 0;               /* NEW: flex child safety so nothing forces height */
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.75rem;                /* was 1.25rem – this was a big contributor */
    min-height: 0;               /* NEW: prevent flex math from stretching */
}

.filter-block label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.filter-block input,
.filter-block select {
    font-size: 13px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: radial-gradient(circle at top, #020921, #020617);
    color: var(--text-main);
    height: 36px;
}

.filter-block select {
    font-size: 11px !important;      
    color: var(--text-main) !important;
}

.filter-block.search-block {
    flex: 1 1 260px;
}

.filter-block.search-block input {
    width: 100%;
}

/* Per page = fixed width */
.filter-block.per-page-block {
    flex: 0 0 140px;
}

/* Pagination row BELOW grid */
.pagination-row {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
}

.page-btn {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.85);
    color: var(--text-main);
    font-size: 14px;
    cursor: pointer;
}

.page-btn:hover {
    border-color: #38bdf8;
}

.page-info {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* MOBILE */
@media (max-width: 760px) {
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-block.per-page-block {
        width: 100%;
    }
    
    .filter-block.search-block {
        flex: 1 1 50px;
    }
    .pagination-row {
        justify-content: center;
    }
}

.talent-tag {
    font-size: 10px;
    letter-spacing: 0.05em;
    padding: 2px 8px;
}


.talent-tag {
    border-radius: 999px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.category-singles-competitor {
    background: rgba(56, 189, 248, 0.2);
    color: #7dd3fc;
    border-color: #38bdf8;
}

.category-tag-team-competitor {
    background: rgba(168, 85, 247, 0.2);
    color: #e9d5ff;
    border-color: #a855f7;
}

.category-referee {
    background: rgba(239, 68, 68, 0.2);
    color: #fecaca;
    border-color: #ef4444;
}

.category-makers-gear-flyers-merch-etc {
    background: rgba(250, 204, 21, 0.2);
    color: #fef08a;
    border-color: #facc15;
}

.category-photographer {
    background: rgba(34, 197, 94, 0.2);
    color: #bbf7d0;
    border-color: #22c55e;
}

.category-other {
    background: rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
    border-color: #94a3b8;
}

.form-group select, .filter-block select, .form-group input, .form-group textarea, .filter-block input,
.filter-block select  {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 1rem;
    appearance: none;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.form-group select:focus,
.filter-block select:focus,
.form-group input:hover,
.form-group input:focus,
.form-group textarea:hover,
.form-group textarea:focus,
.filter-block input:hover,
.filter-block input:focus {
    border-color: #38bdf8 !important;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.6) !important;
}

.form-group select, .filter-block select  {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23a5b4fc' viewBox='0 0 24 24' width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.form-group select option, .filter-block select option {
    background: #0f172a;
    color: #e2e8f0;
    padding: 10px;
}

.form-group select option:hover, .filter-block select option:hover {
    background: #1e293b !important;
}
.travel-autocomplete-container {
    position: relative;
}

#travelSuggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 6px;
    max-height: 260px;
    overflow-y: auto;
    z-index: 50;
}

#travelSuggestions div {
    padding: 8px 12px;
    cursor: pointer;
    color: #e2e8f0;
}

#travelSuggestions div:hover {
    background: #1e293b;
}
