@import '_content/MineSweeper.UIKit/MineSweeper.UIKit.60vfv4v83b.bundle.scp.css';

/* /Components/Organisms/AchievementPanel.razor.rz.scp.css */
/* Organism: AchievementPanel - Component-scoped styles */

.achievement-card[b-j2brhvf9nh] {
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 300ms;
}

.achievement-locked[b-j2brhvf9nh] {
    background-color: #111827;
    border: 2px solid #374151;
    opacity: 0.75;
}

.achievement-unlocked[b-j2brhvf9nh] {
    background: linear-gradient(to bottom right, #374151, #1f2937);
    border: 2px solid rgba(217, 119, 6, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: achievement-unlock-b-j2brhvf9nh 0.5s ease-out;
}

.achievement-notification[b-j2brhvf9nh] {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: linear-gradient(to right, #eab308, #ca8a04);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 24rem;
    animation: slide-in-b-j2brhvf9nh 0.5s ease-out;
}

@keyframes achievement-unlock-b-j2brhvf9nh {
    0% {
        transform: scale(0.8) rotate(-5deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes slide-in-b-j2brhvf9nh {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* /Components/Organisms/GameBoard.razor.rz.scp.css */
/* Organism: GameBoard - Component-scoped styles */

.game-board[b-fvadir74fp] {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns, 10), minmax(0, 1fr));
    gap: 0.125rem;
    padding: 1.25rem;

    /* Modern glassmorphism background */
    background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(30, 41, 59, 0.9) 50%,
            rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    /* Enhanced shadows for depth */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6),
        0 10px 20px -5px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(59, 130, 246, 0.15),
        inset 0 -2px 4px rgba(6, 182, 212, 0.1),
        0 0 0 1px rgba(59, 130, 246, 0.1);

    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.25);

    /* Smooth transitions */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Subtle inner glow */
    position: relative;
}

.game-board[b-fvadir74fp]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.3) 0%,
            rgba(6, 182, 212, 0.2) 50%,
            rgba(59, 130, 246, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

.game-board:hover[b-fvadir74fp] {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7),
        0 15px 25px -5px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(59, 130, 246, 0.2),
        inset 0 -2px 4px rgba(6, 182, 212, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.35);
}

@media (max-width: 640px) {
    .game-board[b-fvadir74fp] {
        gap: 0.125rem;
        padding: 0.5rem;
    }
}

.game-over-overlay[b-fvadir74fp] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: fade-in-b-fvadir74fp 0.3s ease-out;
}

.game-over-content[b-fvadir74fp] {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    text-align: center;
    animation: bounce-in-b-fvadir74fp 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounce-in-b-fvadir74fp {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fade-in-b-fvadir74fp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* /Components/Organisms/HelpModal.razor.rz.scp.css */
/* Organism: HelpModal - Component-scoped styles */

.modal-overlay[b-2xabfaitcl] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fade-in-b-2xabfaitcl 0.2s ease-out;
}

.modal-content[b-2xabfaitcl] {
    background-color: #1f2937;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 42rem;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(1);
    transition: all 300ms;
}

@keyframes fade-in-b-2xabfaitcl {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* /Pages/Achievements.razor.rz.scp.css */
/* Page: Achievements - Component-scoped styles */

.achievement-card[b-26k7p4ctxg] {
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 300ms;
}

.achievement-locked[b-26k7p4ctxg] {
    background-color: #111827;
    border: 2px solid #374151;
    opacity: 0.75;
}

.achievement-unlocked[b-26k7p4ctxg] {
    background: linear-gradient(to bottom right, #374151, #1f2937);
    border: 2px solid rgba(217, 119, 6, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: achievement-unlock-b-26k7p4ctxg 0.5s ease-out;
}

.achievement-notification[b-26k7p4ctxg] {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: linear-gradient(to right, #eab308, #ca8a04);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 24rem;
    animation: slide-in-b-26k7p4ctxg 0.5s ease-out;
}

@keyframes achievement-unlock-b-26k7p4ctxg {
    0% {
        transform: scale(0.8) rotate(-5deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes slide-in-b-26k7p4ctxg {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
