/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.game-container, .admin-panel {
    background: white;
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2.5em;
}

.game-controls {
    margin-bottom: 30px;
}

.puzzle-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.puzzle-selector select {
    flex: 1;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
}

.game-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-success {
    background: #48bb78;
    color: white;
}

.btn-warning {
    background: #ed8936;
    color: white;
}

.btn-secondary {
    background: #718096;
    color: white;
}

.sudoku-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.sudoku-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    border: 2px solid #333;
    background: white;
    width: 100%;
    max-width: 540px;
}

.sudoku-cell {
    aspect-ratio: 1;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sudoku-cell input {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border: none;
    background: transparent;
    font-family: inherit;
}

.sudoku-cell input:focus {
    outline: none;
    background: #72c8f0;
}

.sudoku-cell.fixed {
    background: #f5f5f5;
    color: #333;
}

.sudoku-cell.fixed input {
    font-weight: bold;
    color: #667eea;
}

.sudoku-cell.highlight {
    background: #e6f7ff;
}

/* Границы для блоков 3x3 */
.sudoku-cell[data-row="2"] input,
.sudoku-cell[data-row="5"] input {
    border-bottom: 2px solid #333;
}

.sudoku-cell[data-col="2"] input,
.sudoku-cell[data-col="5"] input {
    border-right: 2px solid #333;
}

.message {
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 20px;
}

.message.success {
    background: #c6f6d5;
    color: #22543d;
}

.message.error {
    background: #fed7d7;
    color: #742a2a;
}

.admin-panel .generate-form {
    margin: 20px 0;
    padding: 20px;
    background: #f7fafc;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
}

.stats {
    margin: 20px 0;
    padding: 20px;
    background: #f7fafc;
    border-radius: 10px;
}

.stats ul {
    list-style: none;
    margin-top: 10px;
}

.stats li {
    padding: 5px 0;
    color: #555;
}

.success-message {
    background: #c6f6d5;
    color: #22543d;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 460px) {
    .container {
        padding: 0px;
    }
    
    .game-container, .admin-panel {
        padding: 5px;
    }
    
    .sudoku-cell input {
        font-size: 14px;
    }
    
    .btn {
        padding: 8px 16px;
        margin-top: 10px;
        font-size: 12px;
    }
    .puzzle-selector {
    display: table;
    gap: 10px;
    margin-bottom: 20px;
}
}
/* Добавьте эти стили к существующим в style.css */

/* Стили для выбранной ячейки */
.sudoku-cell.selected {
    background-color: #b8e1ff;
    box-shadow: inset 0 0 0 2px #4299e1;
}

/* Стили для подсветки одинаковых цифр */
.sudoku-cell.highlight-number {
    background-color: #fef3c7;
    position: relative;
}

.sudoku-cell.highlight-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #f59e0b;
    pointer-events: none;
}

/* Стили для цифровой клавиатуры */
.number-pad-container {
    margin: 20px 0;
    padding: 20px;
    background: #f7fafc;
    border-radius: 15px;
    text-align: center;
}

.number-pad-container h3 {
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 1.2em;
}

.number-pad {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.num-btn {
    padding: 15px;
    font-size: 1.5em;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    color: #2d3748;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.num-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    background: #667eea;
    color: white;
}

.num-btn:active {
    transform: translateY(0);
}

.delete-btn, .undo-btn {
    background: #edf2f7;
    font-size: 1.3em;
}

.delete-btn:hover {
    background: #f56565;
    color: white;
}

.undo-btn:hover {
    background: #48bb78;
    color: white;
}

.keyboard-hint {
    margin-top: 15px;
    padding: 10px;
    background: #e6fffa;
    border-radius: 8px;
    color: #2c7a7b;
    font-size: 0.9em;
}

/* Анимация победы */
@keyframes celebrate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 600px) {
    .number-pad {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
    
    .num-btn {
        padding: 10px;
        font-size: 1.2em;
    }
    
    .keyboard-hint {
        font-size: 0.8em;
    }
    
    .sudoku-cell.highlight-number::after {
        border-width: 1px;
    }
}

/* Стили для фиксированных ячеек при подсветке */
.sudoku-cell.fixed.highlight-number {
    background-color: #fef3c7;
}

/* Стили для подсказки при наведении */
.sudoku-cell:not(.fixed):hover {
    background-color: #e6f7ff;
    cursor: pointer;
}

/* Стили для ошибок ввода (если нужно будет добавить валидацию) */
.sudoku-cell.error {
    background-color: #fed7d7;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Улучшенные стили для подсветки */
.sudoku-cell.highlight-number {
    background-color: #fef3c7 !important;
    position: relative;
    transition: background-color 0.2s ease;
}

.sudoku-cell.highlight-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #f59e0b;
    pointer-events: none;
    animation: pulse 0.3s ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Стили для фиксированных ячеек при подсветке */
.sudoku-cell.fixed.highlight-number {
    background-color: #fef3c7 !important;
}

/* Анимация при вводе цифры */
.sudoku-cell input {
    transition: all 0.1s ease;
}

.sudoku-cell input:focus {
    outline: none;
    background: #1aa0de;
}
/* Индикатор автосохранения */
.auto-save-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #48bb78;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    pointer-events: none;
}

/* Кнопка опасного действия */
.btn-danger {
    background: #f56565;
    color: white;
}

.btn-danger:hover {
    background: #e53e3e;
}

/* Анимация для индикатора */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.auto-save-indicator.show {
    animation: slideIn 0.3s ease-out;
}
/* Секция сохраненных игр */
.saved-games-section {
    margin: 20px 0;
    padding: 15px;
    background: #f7fafc;
    border-radius: 10px;
}

.saved-games-section h3 {
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 1.1em;
}

.saved-games-list {
    max-height: 300px;
    overflow-y: auto;
}

.saved-games-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.saved-game-card {
    background: white;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.saved-game-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.saved-game-info {
    flex: 1;
}

.saved-game-info strong {
    display: block;
    color: #2d3748;
    font-size: 1em;
    margin-bottom: 5px;
}

.saved-game-info .progress {
    display: inline-block;
    font-size: 0.85em;
    color: #48bb78;
    background: #e6fffa;
    padding: 2px 8px;
    border-radius: 12px;
    margin-right: 10px;
}

.saved-game-info .date {
    font-size: 0.8em;
    color: #718096;
}

.saved-game-actions {
    display: flex;
    gap: 8px;
}

.saved-game-actions .btn-small {
    padding: 5px 12px;
    font-size: 0.85em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

.saved-game-actions .btn-small.btn-primary {
    background: #667eea;
    color: white;
}

.saved-game-actions .btn-small.btn-primary:hover {
    background: #5a67d8;
}

.saved-game-actions .btn-small.btn-danger {
    background: #f56565;
    color: white;
}

.saved-game-actions .btn-small.btn-danger:hover {
    background: #e53e3e;
}

.no-saved {
    text-align: center;
    color: #a0aec0;
    padding: 20px;
    font-style: italic;
}

/* Адаптивность для мобильных */
@media (max-width: 600px) {
    .saved-game-card {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .saved-game-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
/* Стили для ошибочных ячеек */
.sudoku-cell.error-cell {
    background-color: #fed7d7 !important;
    position: relative;
    animation: shakeError 0.3s ease-in-out;
}

.sudoku-cell.error-cell::after {
    content: '⚠';
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 12px;
    color: #e53e3e;
    font-weight: bold;
}

.sudoku-cell.error-cell input {
    color: #c53030;
    font-weight: bold;
}

/* Анимация тряски при ошибке */
@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

/* Всплывающая подсказка об ошибке */
.error-hint {
    background: #e53e3e;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стиль для ячейки, которая была исправлена */
.sudoku-cell.corrected {
    animation: pulseGreen 0.5s ease-out;
}

@keyframes pulseGreen {
    0% {
        background-color: #c6f6d5;
    }
    100% {
        background-color: transparent;
    }
}

/* Индикатор количества ошибок */
.error-counter {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e53e3e;
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.2s;
}

.error-counter:hover {
    transform: scale(1.05);
}
/* Стили для окна поздравления */
.congratulations-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.congratulations-overlay.show {
    opacity: 1;
}

.congratulations-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.congrats-icon {
    font-size: 80px;
    animation: bounce 0.5s ease-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.congrats-title {
    font-size: 36px;
    color: white;
    margin: 20px 0 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.congrats-message {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
}

.congrats-stats {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: white;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-weight: normal;
    opacity: 0.9;
}

.stat-value {
    font-weight: bold;
    font-size: 18px;
}

.congrats-time {
    padding: 8px 0;
    color: #ffd700;
    font-size: 16px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

.congrats-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.congrats-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Стили для таблицы рекордов */
.leaderboard-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leaderboard-overlay.show {
    opacity: 1;
}

.leaderboard-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.5s ease-out;
}

.leaderboard-content h2 {
    text-align: center;
    color: #667eea;
    margin-bottom: 20px;
}

.leaderboard-list {
    margin-bottom: 20px;
}

.leaderboard-item {
    display: grid;
    grid-template-columns: 50px 100px 120px 80px 1fr;
    gap: 10px;
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
}

.leaderboard-item:nth-child(even) {
    background: #f7fafc;
}

.leaderboard-item .rank {
    font-weight: bold;
    color: #667eea;
    font-size: 18px;
}

.leaderboard-item .player {
    font-weight: bold;
}

.leaderboard-item .puzzle {
    color: #718096;
}

.leaderboard-item .cells {
    color: #48bb78;
    font-weight: bold;
}

.leaderboard-item .date {
    font-size: 12px;
    color: #a0aec0;
}

/* Кнопка информации */
.btn-info {
    background: #4299e1;
    color: white;
}

.btn-info:hover {
    background: #3182ce;
}

/* Адаптивность для мобильных */
@media (max-width: 600px) {
    .congratulations-content {
        padding: 25px;
    }
    
    .congrats-title {
        font-size: 28px;
    }
    
    .congrats-icon {
        font-size: 60px;
    }
    
    .leaderboard-item {
        grid-template-columns: 40px 80px 90px 60px 1fr;
        gap: 5px;
        font-size: 12px;
    }
    
    .stat-item {
        font-size: 14px;
    }
}
/* Стили для информации об игроке */
.player-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #f7fafc;
    border-radius: 10px;
    margin-bottom: 15px;
}

.player-name {
    font-size: 16px;
    font-weight: bold;
    color: #667eea;
}

.btn-small {
    padding: 5px 12px;
    font-size: 12px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-small:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}
.difficulty-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}
.btn-diff {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    background: #e2e8f0;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-diff.active, .btn-diff:hover {
    background: #273ea3;
    color: white;
}
.player-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f7fafc;
    border-radius: 10px;
    margin-bottom: 15px;
}
.leaderboard-section {
    margin-top: 30px;
    padding: 15px;
    background: #f7fafc;
    border-radius: 10px;
}
.leaderboard-list {
    max-height: 300px;
    overflow-y: auto;
}
.leaderboard-item {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid #e2e8f0;
}
.leaderboard-item .rank {
    font-weight: bold;
    color: #667eea;
    width: 40px;
}
.leaderboard-item .player {
    flex: 1;
}
.leaderboard-item .points {
    font-weight: bold;
    color: #48bb78;
}
.hints-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7fafc;
    padding: 10px 15px;
    border-radius: 10px;
    margin: 15px 0;
}
.hints-info {
    font-size: 18px;
    font-weight: bold;
    color: #2d3748;
}
.hints-buttons {
    /* display: flex;
    gap: 10px; */
    padding-top: 15px;
}
.btn-hint, .btn-ad {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s;
}
.btn-hint {
    background: #4299e1;
    color: white;
}
.btn-hint:hover {
    background: #3182ce;
}
.btn-ad {
    background: #48bb78;
    color: white;
    margin-top: 10px;
}
.btn-ad:hover {
    background: #38a169;
}
/* Подсветка строки, столбца и блока */
.sudoku-cell.highlight-row {
    background-color: rgba(66, 98, 237, 0.08);
}
.sudoku-cell.highlight-col {
    background-color: rgba(102, 126, 234, 0.08);
}
.sudoku-cell.highlight-block {
    background-color: rgba(102, 126, 234, 0.12);
}
/* Выделение самой ячейки – поверх остальных */
.sudoku-cell.selected {
    background-color: #b8e1ff !important;
    box-shadow: inset 0 0 0 2px #4299e1;
    z-index: 1;
}
.timer-container {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
    padding: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
#timer-display {
    font-family: monospace;
    font-size: 24px;
    background: rgba(0,0,0,0.2);
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
}
 .rules-container {
            max-width: 100%;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        .rules-container h1 {
            text-align: center;
            color: #667eea;
            margin-bottom: 30px;
            font-size: 2.5em;
        }
        .rules-container h2 {
            color: #4a5568;
            margin-top: 30px;
            margin-bottom: 15px;
            border-left: 4px solid #667eea;
            padding-left: 15px;
        }
        .rules-container h3 {
            color: #2d3748;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        .rules-container p {
            line-height: 1.6;
            color: #4a5568;
            margin-bottom: 15px;
        }
        .rules-container ul, .rules-container ol {
            margin: 15px 0 15px 25px;
            line-height: 1.6;
            color: #4a5568;
        }
        .rules-container li {
            margin-bottom: 8px;
        }
        .rules-container .example-grid {
            display: inline-block;
            background: #f7fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 10px;
            margin: 15px 0;
            font-family: monospace;
            font-size: 14px;
            text-align: center;
        }
        .rules-container .highlight {
            background: #fef3c7;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: bold;
        }
        .rules-container .tip {
            background: #e6fffa;
            border-left: 4px solid #48bb78;
            padding: 15px;
            margin: 20px 0;
            border-radius: 8px;
        }
        .rules-container .tip strong {
            color: #2c7a7b;
        }
        .btn-back {
            display: inline-block;
            background: #667eea;
            color: white;
            padding: 10px 20px;
            border-radius: 10px;
            text-decoration: none;
            margin-top: 30px;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn-back:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            background: #5a67d8;
        }
        @media (max-width: 600px) {
            .rules-container {
                padding: 20px;
            }
            .rules-container h1 {
                font-size: 1.8em;
            }
            .leaderboard-section {
            margin-top: 5px;
            padding: 5px;
            background: #ffffff;
            border-radius: 0px;
        }
        .rules-container {
            max-width: 100%;
            margin: 0 auto;
            background: white;
            border-radius: 0px;
            padding: 20px;
            /* box-shadow: 0 20px 60px rgba(0,0,0,0.1); */
        }
        }