* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Chakra Petch', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #18181b;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

html.application-page,
body.application-page {
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
}

.application-page {
    height: auto;
    min-height: 100vh;
    overflow: visible;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100vh;
    width: 100vw;
    gap: 0;
}

.grid-cell {
    border: 1px solid #27272a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.grid-cell:hover {
    background-color: rgba(255, 255, 255, 0.02);
    transform: scale(1.02);
}

.content {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.content.animate {
    opacity: 1;
    transform: translateY(0);
}

#team-name .content {
    animation-delay: 0.1s;
}

.logo-container {
    margin-bottom: 1rem;
}

.team-logo {
    width: 120px;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
}

.team-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

.team-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 0.1em;
}

#team-info .content {
    animation-delay: 0.2s;
}

.team-description {
    margin-bottom: 1rem;
}

.team-description p {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.click-hint {
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.click-hint:hover {
    opacity: 0.9;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-content::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: transparent;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #27272a;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.modal-overlay.show-instructions .modal-close {
    display: none;
}

.modal-body {
    padding: 1.5rem;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.modal-section p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.modal-section li {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.modal-section li::before {
    content: '•';
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    left: 0;
}

.modal-section strong {
    color: #ffffff;
    font-weight: 500;
}

#players .content {
    animation-delay: 0.3s;
}

.players-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-height: 100%;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.player-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.player-card:hover::before {
    left: 100%;
}

.player-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #e5e5e5);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.player-name {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

.player-role {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.player-stats {
    display: flex;
    align-items: center;
}

.stat {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    color: #ffffff;
}

#about .content {
    animation-delay: 0.4s;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-text p {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.join-link {
    margin-top: 1.5rem;
    text-align: center;
}

.join-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff, #e5e5e5);
    color: #000000;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Chakra Petch', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
}

@keyframes blurIn {
    0% {
        filter: blur(10px);
        opacity: 0;
    }
    100% {
        filter: blur(0);
        opacity: 1;
    }
}

.grid-cell {
    animation: blurIn 1s ease forwards;
}

#team-name {
    animation-delay: 0.1s;
}

#team-info {
    animation-delay: 0.2s;
}

#players {
    animation-delay: 0.3s;
}

#about {
    animation-delay: 0.4s;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
    
    .team-logo {
        width: 80px;
        max-height: 80px;
    }
    
    .info-text {
        font-size: 1rem;
    }
    
    .player-card {
        padding: 0.6rem;
        gap: 0.8rem;
    }
    
    .player-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .player-name {
        font-size: 0.9rem;
    }
    
    .player-role {
        font-size: 0.7rem;
    }
    
    .stat {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
    
    .content {
        padding: 1rem;
    }
    
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-section h3 {
        font-size: 1.1rem;
    }
    
    .modal-section p {
        font-size: 0.9rem;
    }
}

.application-page {
    min-height: 100vh;
    background-color: #18181b;
    color: #ffffff;
    font-family: 'Chakra Petch', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 2rem 0;
    overflow: visible;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
}

.page-header .logo-container {
    margin-bottom: 1rem;
}

.page-header .team-logo {
    width: 80px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.application-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section:last-of-type {
    margin-bottom: 2rem;
}

.form-section .section-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #27272a;
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Chakra Petch', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-select option {
    background: #18181b;
    color: #ffffff;
    padding: 0.5rem;
}

.form-select:focus option {
    background: #27272a;
    color: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    color: #ffffff;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    accent-color: #ffffff;
    cursor: pointer;
}

.checkbox-text {
    user-select: none;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #27272a;
}

.submit-btn {
    background: linear-gradient(135deg, #ffffff, #e5e5e5);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Chakra Petch', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #f0f0f0, #d0d0d0);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .application-page {
        padding: 1rem 0;
    }
    
    .page-header {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 0 1rem;
    }
    
    .application-form {
        padding: 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
    }
    
    .form-section .section-title {
        font-size: 1.3rem;
    }
    
    .checkbox-group {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.6rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

.grid-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-cell:hover::before {
    opacity: 1;
}

.captcha-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.captcha-box {
    background: white;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    width: 100%;
    max-width: 400px;
}

.captcha-error {
    position: absolute;
    top: -8px;
    left: 20px;
    background: #ed4245;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    display: none;
}

.captcha-box.error .captcha-error { 
    display: block; 
    animation: errorSlide 0.4s ease; 
}

@keyframes errorSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.captcha-box.error { 
    border: 2px solid #ed4245; 
}

.checkbox {
    width: 28px;
    height: 28px;
    border: 2px solid #c3c7cc;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox:hover { 
    border-color: #5865F2; 
    transform: scale(1.05); 
}

.checkbox.checking { 
    border-color: #00ABBF; 
    pointer-events: none; 
}

.checkbox.checking::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #00ABBF;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

.checkbox.error {
    border-color: #ed4245;
    animation: shake 0.5s ease;
    background: rgba(237, 66, 69, 0.1);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.checkbox.error::after { 
    content: '✕'; 
    color: #ed4245; 
    font-size: 16px; 
    font-weight: bold; 
}

.captcha-text { 
    color: #333; 
    font-size: 16px; 
    font-weight: 500; 
    flex-grow: 1; 
}

.captcha-logo { 
    width: 50px; 
    height: 50px; 
    flex-shrink: 0; 
}

.captcha-links {
    display: none;
}

.captcha-instructions {
    text-align: left;
    color: #5f6368;
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: 100%;
}

.captcha-instructions p {
    margin: 0.25rem 0;
}

.captcha-instructions .captcha-error {
    color: #ea4335;
    font-weight: 500;
    margin-top: 0.5rem;
}

.verification-instructions {
    margin-top: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    width: 100%;
    max-width: 100%;
}

.instructions-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: left;
    font-family: 'Chakra Petch', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.05em;
}

.instructions-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.5;
    font-family: 'Chakra Petch', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.instruction-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.instruction-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.instruction-item:not(.no-line)::after {
    display: none;
}

.step-number {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
    margin-right: 16px;
    flex-shrink: 0;
    font-family: 'Chakra Petch', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-content {
    flex: 1;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Chakra Petch', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.keyboard-key {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Inter', monospace;
    font-size: 12px;
    font-weight: 500;
    margin: 0 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.keyboard-key svg {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 4px;
    vertical-align: middle;
    fill: #ffffff;
}

.step-icon {
    display: none;
}

.verification-agreement {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.agreement-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
    user-select: none;
    text-align: center;
    font-weight: 500;
    font-family: 'Chakra Petch', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.agreement-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.agreement-check-icon {
    flex-shrink: 0;
}

.agreement-check-icon path {
    fill: rgba(255, 255, 255, 0.9);
}

.agreement-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-family: 'Courier New', monospace;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes checkmarkDraw {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0);
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.modal-overlay#captchaModal.show-instructions .modal-content {
    max-width: 600px;
}

.modal-overlay#captchaModal.show-instructions .captcha-instructions {
    display: block;
}

