/* /Components/DifficultyPresets.razor.rz.scp.css */
.presets-container[b-6irgqi4oud] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.presets-container .row[b-6irgqi4oud] {
    justify-content: center;
    width: 100%;
}

.difficulty-preset[b-6irgqi4oud] {
    transition: transform 0.2s ease;
}

.difficulty-preset:hover[b-6irgqi4oud] {
    transform: translateY(-3px);
}

.difficulty-badge[b-6irgqi4oud] {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    
}

.badge-easy[b-6irgqi4oud] {
    background: rgba(40, 167, 69, 0.2);
    color: var(--mine-white);
    border: 1px solid var(--mine-white);
}

.badge-medium[b-6irgqi4oud] {
    background: rgba(255, 193, 7, 0.2);
    color: var(--mine-white);
    border: 1px solid var(--mine-white);
}

.badge-hard[b-6irgqi4oud] {
    background: rgba(220, 53, 69, 0.2);
    color: var(--mine-white);
    border: 1px solid var(--mine-white);
}
/* /Components/GameBoard.razor.rz.scp.css */
.game-board-container[b-oh1bf6q30s] {
    background: var(--mine-board-bg);
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.row[b-oh1bf6q30s] {
    display: flex;
    line-height: 0;
}

.col[b-oh1bf6q30s] {
    padding: 0;
    margin: 0;
    line-height: 0;
    flex: none;
}

.col input[type="image"][b-oh1bf6q30s] {
    display: block;
    margin: 0;
    padding: 0;
}
/* /Components/GameHeader.razor.rz.scp.css */
.game-header[b-jxi2zs7nj8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, var(--mine-secondary) 0%, var(--mine-primary) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* /Components/GameModal.razor.rz.scp.css */
.modal-backdrop-custom[b-ybqwuh6hpo] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1040;
    backdrop-filter: blur(5px);
}

.game-modal[b-ybqwuh6hpo] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: modalSlideIn-b-ybqwuh6hpo 0.3s ease-out;
}

.game-modal.Win[b-ybqwuh6hpo] {
    background: linear-gradient(135deg, var(--mine-success) 0%, var(--mine-success-600) 100%);
    color: white;
}

.game-modal.Lost[b-ybqwuh6hpo] {
    background: linear-gradient(135deg, var(--mine-danger) 0%, var(--mine-danger-600) 100%);
    color: white;
}

.icon-large[b-ybqwuh6hpo] {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out;
}

.icon-large.celebration[b-ybqwuh6hpo] {
    animation: pulse 1s ease-in-out infinite;
}

.game-modal h1[b-ybqwuh6hpo] {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.subtitle[b-ybqwuh6hpo] {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.stats[b-ybqwuh6hpo] {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.stat-item[b-ybqwuh6hpo] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-label[b-ybqwuh6hpo] {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.stat-value[b-ybqwuh6hpo] {
    font-size: 1.8rem;
    font-weight: bold;
}

.modal-actions[b-ybqwuh6hpo] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-actions .btn[b-ybqwuh6hpo] {
    width: 100%;
}

@keyframes modalSlideIn-b-ybqwuh6hpo {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .stats[b-ybqwuh6hpo] {
        gap: 20px;
    }
    
    .game-modal h1[b-ybqwuh6hpo] {
        font-size: 2rem;
    }
}
/* /Components/Logger.razor.rz.scp.css */
.logger-container[b-piu2nt5car] {
    margin-top: 20px;
}

.logger[b-piu2nt5car] {
    font-family: 'Courier New', monospace;
    text-align: left;
    font-size: 11px;
    background-color: var(--mine-primary);
    color: var(--mine-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
}

.logger table[b-piu2nt5car] {
    margin: 0;
    width: 100%;
}

.logger th[b-piu2nt5car] {
    background-color: var(--mine-secondary);
    color: var(--mine-light);
    font-weight: 600;
    padding: 12px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logger td[b-piu2nt5car] {
    padding: 8px 12px;
    border-bottom: 1px solid var(--mine-secondary);
}

.logger tr:hover[b-piu2nt5car] {
    background-color: var(--mine-secondary);
}

.logger p[b-piu2nt5car] {
    margin: 10px;
}
/* /Components/MineCounter.razor.rz.scp.css */
.AmountOfMines[b-tbbi4v589n] {
    padding: 15px 20px;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.AmountOfMines[b-tbbi4v589n]::before {
    content: "💣";
    font-size: 24px;
    margin-right: 10px;
}

.AmountOfMinesNumber[b-tbbi4v589n] {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
/* /Components/Timer.razor.rz.scp.css */
.AmountOfMinesTime[b-xxy6x6dkkf] {
    padding: 15px 20px;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.AmountOfMinesTime[b-xxy6x6dkkf]::before {
    content: "⏱️";
    font-size: 24px;
    margin-right: 10px;
}

.AmountOfMinesNumber[b-xxy6x6dkkf] {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
/* /Pages/AmountOfMines.razor.rz.scp.css */
/* AmountOfMines.razor.css - page-scoped styles */
/* /Pages/HeightAndWidth.razor.rz.scp.css */
/* HeightAndWidth.razor.css - page-scoped styles */
/* /Pages/Index.razor.rz.scp.css */
/* Index.razor.css - page-scoped styles */

.hero[b-k4n3nx9cjo] {
  text-align: center;
}
/* /Pages/MineSweeper.razor.rz.scp.css */
[b-agivk7q2yr] .Playing {
    visibility: hidden;
}

/* Modal Backdrop */
[b-agivk7q2yr] .modal-backdrop-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1040;
    animation: fadeIn 0.3s ease-in;
}

/* Modal Container */
[b-agivk7q2yr] .game-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    min-width: 400px;
    max-width: 500px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1050;
    animation: slideIn 0.4s ease-out;
}

/* Win Modal */
[b-agivk7q2yr] .game-modal.Win {
    background: linear-gradient(135deg, var(--mine-success) 0%, var(--mine-success-600) 100%);
    color: white;
}

/* Lost Modal */
[b-agivk7q2yr] .game-modal.Lost {
    background: linear-gradient(135deg, var(--mine-danger) 0%, var(--mine-danger-600) 100%);
    color: white;
}

[b-agivk7q2yr] .game-over-content,
[b-agivk7q2yr] .game-win-content {
    padding: 40px;
    text-align: center;
}

[b-agivk7q2yr] .icon-large {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out;
}

[b-agivk7q2yr] .celebration {
    animation: bounce 1s ease-in-out infinite;
}

[b-agivk7q2yr] .game-over-content h1,
[b-agivk7q2yr] .game-win-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

[b-agivk7q2yr] .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

[b-agivk7q2yr] .stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

[b-agivk7q2yr] .stat-item {
    text-align: center;
}

[b-agivk7q2yr] .stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

[b-agivk7q2yr] .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

[b-agivk7q2yr] .modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

[b-agivk7q2yr] .modal-actions .btn {
    min-width: 140px;
}

[b-agivk7q2yr] .container.Playing {
    visibility: visible;
}

[b-agivk7q2yr] .container.Lost {
    opacity: 0.2;
}

[b-agivk7q2yr] .container.Win {
    opacity: 0.2;
}

[b-agivk7q2yr] .Revealed {
    width: 50px;
    height: 50px;
    background-color: white;
}

[b-agivk7q2yr] input.Revealed.Empty {
    font-size: 0;
}

[b-agivk7q2yr] input.Revealed.BordersMine {
    width: 50px;
    height: 50px;
    background-color: white;
}

[b-agivk7q2yr] input.Hidden {
    width: 50px;
    height: 50px;
    background-color: lightgray;
    font-size: 0;
}

[b-agivk7q2yr] .Flagged {
    width: 50px;
    height: 50px;
    border: 0px;
    font-size: 0;
}

[b-agivk7q2yr] .Revealed.Mine {
    width: 50px;
    height: 50px;
}

[b-agivk7q2yr] .col.cell {
    width: 50px;
    height: 50px;
}

[b-agivk7q2yr] .col.cell input {
    transition: all 0.2s ease;
    cursor: pointer;
}

[b-agivk7q2yr] .col.cell input.Hidden:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

[b-agivk7q2yr] .col.cell input.Flagged:hover {
    transform: scale(1.1);
}

/* Board wrapper: centers the board when it fits, adds scroll when it overflows */
.board-wrapper[b-agivk7q2yr] {
    justify-content: center;
    width: 100%;
    padding: 1rem;
    box-sizing: border-box;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 250px);
}
/* /Pages/SaveScore.razor.rz.scp.css */
/* SaveScore.razor.css - page-scoped styles */
/* /Pages/Scores.razor.rz.scp.css */
/* Scores.razor.css - page-scoped styles */
.table-container[b-cov0b1733c] { max-width: 720px; margin-inline: auto; }
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-hyr9g7vn2y] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-hyr9g7vn2y] {
    flex: 1;
}

.content[b-hyr9g7vn2y] {
    padding: 1rem;
}
/* /Shared/NavBar.razor.rz.scp.css */
/* NavBar.razor.css - component-scoped styles */

.navbar[b-60ubmwtosn] {
  backdrop-filter: saturate(120%) blur(6px);
}

.navbar .nav-link.active[b-60ubmwtosn] {
  font-weight: 600;
}
