/* _content/NuitInfo.Rubeus/Composants/ChatWidget.razor.rz.scp.css */
/* Container principal du widget */
.chat-widget[b-49zt3ia9me] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Bulle flottante */
.chat-bubble[b-49zt3ia9me] {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22351a 0%, #98c970 90%);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-bubble:hover[b-49zt3ia9me] {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.chat-bubble:active[b-49zt3ia9me] {
    transform: scale(0.95);
}

.chat-bubble img[b-49zt3ia9me] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Pop-up de chat */
.chat-popup[b-49zt3ia9me] {
    width: 360px;
    height: 480px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.chat-header[b-49zt3ia9me] {
    background: linear-gradient(135deg, #98c970 10%, #22351a 100%);
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

.chat-close[b-49zt3ia9me] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chat-close:hover[b-49zt3ia9me] {
    background: rgba(255, 255, 255, 0.3);
}

/* Zone de messages */
.chat-messages[b-49zt3ia9me] {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Message */
.message[b-49zt3ia9me] {
    display: flex;
    flex-direction: row;
    max-width: 85%;
    gap: 8px;
    animation: slideIn-b-49zt3ia9me 0.2s ease-out;
}

.message-bubble[b-49zt3ia9me] {
    display: flex;
    flex-direction: column;
}

@keyframes slideIn-b-49zt3ia9me {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.user[b-49zt3ia9me] {
    align-self: flex-end;
    align-items: flex-end;
}

.message.assistant[b-49zt3ia9me] {
    align-self: flex-start;
    align-items: flex-start;
}

.profile-pic[b-49zt3ia9me] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.message-content[b-49zt3ia9me] {
    padding: 10px 14px;
    border-radius: 12px;
    word-wrap: break-word;
    line-height: 1.4;
}

.message.user .message-content[b-49zt3ia9me] {
    background: linear-gradient(135deg, #22351a 10%, #98c970 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.message.assistant .message-content[b-49zt3ia9me] {
    background: white;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-time[b-49zt3ia9me] {
    font-size: 11px;
    color: #888;
    margin-top: 4px;
    padding: 0 4px;
}

/* Indicateur de saisie */
.message.typing .message-content[b-49zt3ia9me] {
    padding: 16px 20px;
}

.typing-indicator[b-49zt3ia9me] {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-indicator span[b-49zt3ia9me] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999;
    animation: typing-b-49zt3ia9me 1.4s infinite;
}

.typing-indicator span:nth-child(2)[b-49zt3ia9me] {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3)[b-49zt3ia9me] {
    animation-delay: 0.4s;
}

@keyframes typing-b-49zt3ia9me {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Zone d'input */
.chat-input[b-49zt3ia9me] {
    padding: 16px;
    background: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 8px;
}

.chat-input input[b-49zt3ia9me] {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.2s;
}

.chat-input input:focus[b-49zt3ia9me] {
    border-color: #667eea;
}

.chat-input input:disabled[b-49zt3ia9me] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.chat-input button[b-49zt3ia9me] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #22351a 0%, #98c970 100%);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-input button:hover:not(:disabled)[b-49zt3ia9me] {
    transform: scale(1.05);
}

.chat-input button:active:not(:disabled)[b-49zt3ia9me] {
    transform: scale(0.95);
}

.chat-input button:disabled[b-49zt3ia9me] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Scrollbar personnalisée */
.chat-messages[b-49zt3ia9me]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-49zt3ia9me]::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages[b-49zt3ia9me]::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.chat-messages[b-49zt3ia9me]::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}
/* _content/NuitInfo.Rubeus/Composants/Layout/MainLayout.razor.rz.scp.css */
.page[b-e2kw7hzvgu] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.sidebar[b-e2kw7hzvgu] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-e2kw7hzvgu] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-e2kw7hzvgu]  a, .top-row[b-e2kw7hzvgu]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-e2kw7hzvgu]  a:hover, .top-row[b-e2kw7hzvgu]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-e2kw7hzvgu]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-e2kw7hzvgu] {
        justify-content: space-between;
    }

    .top-row[b-e2kw7hzvgu]  a, .top-row[b-e2kw7hzvgu]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-e2kw7hzvgu] {
        flex-direction: row;
    }

    .sidebar[b-e2kw7hzvgu] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-e2kw7hzvgu] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-e2kw7hzvgu]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-e2kw7hzvgu], article[b-e2kw7hzvgu] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-e2kw7hzvgu] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-e2kw7hzvgu] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/NuitInfo.Rubeus/Composants/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ohgt8cj8uc] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-ohgt8cj8uc] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-ohgt8cj8uc] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ohgt8cj8uc] {
    font-size: 1.1rem;
}

.bi[b-ohgt8cj8uc] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ohgt8cj8uc] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ohgt8cj8uc] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ohgt8cj8uc] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-ohgt8cj8uc] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-ohgt8cj8uc] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-ohgt8cj8uc] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-ohgt8cj8uc] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-ohgt8cj8uc] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-ohgt8cj8uc] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ohgt8cj8uc] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ohgt8cj8uc] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ohgt8cj8uc]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-ohgt8cj8uc]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-ohgt8cj8uc]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-ohgt8cj8uc] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-ohgt8cj8uc] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ohgt8cj8uc] {
        display: none;
    }

    .nav-scrollable[b-ohgt8cj8uc] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/NuitInfo.Rubeus/Composants/Pages/Snake.razor.rz.scp.css */
/* Container principal du jeu */
.snake-container[b-o2t1gwgvjw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* En-tête du jeu */
.snake-header[b-o2t1gwgvjw] {
    text-align: center;
    animation: slideDown-b-o2t1gwgvjw 0.6s ease-out;
}

.snake-header h1[b-o2t1gwgvjw] {
    font-size: 3rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Informations du jeu */
.game-info[b-o2t1gwgvjw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 600px;
}

.info-item[b-o2t1gwgvjw] {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover[b-o2t1gwgvjw] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.info-item .label[b-o2t1gwgvjw] {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item .value[b-o2t1gwgvjw] {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 0.5rem;
    color: #4CAF50;
}

/* Contrôles du jeu */
.game-controls[b-o2t1gwgvjw] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    animation: slideUp-b-o2t1gwgvjw 0.6s ease-out 0.2s both;
}

.btn[b-o2t1gwgvjw] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover:not(:disabled)[b-o2t1gwgvjw] {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn:active:not(:disabled)[b-o2t1gwgvjw] {
    transform: translateY(-1px);
}

.btn:disabled[b-o2t1gwgvjw] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary[b-o2t1gwgvjw] {
    background: linear-gradient(135deg, #00D084 0%, #00C273 100%);
    color: white;
}

.btn-primary:hover:not(:disabled)[b-o2t1gwgvjw] {
    background: linear-gradient(135deg, #00E090 0%, #00D084 100%);
}

.btn-warning[b-o2t1gwgvjw] {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: white;
}

.btn-warning:hover:not(:disabled)[b-o2t1gwgvjw] {
    background: linear-gradient(135deg, #FFB520 0%, #FFA500 100%);
}

.btn-danger[b-o2t1gwgvjw] {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
    color: white;
}

.btn-danger:hover:not(:disabled)[b-o2t1gwgvjw] {
    background: linear-gradient(135deg, #FF7D7D 0%, #FF6B6B 100%);
}

/* Sélecteur de difficulté */
.difficulty-selector[b-o2t1gwgvjw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.difficulty-selector label[b-o2t1gwgvjw] {
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.difficulty-selector .form-control[b-o2t1gwgvjw] {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.difficulty-selector .form-control:hover:not(:disabled)[b-o2t1gwgvjw] {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.difficulty-selector .form-control:disabled[b-o2t1gwgvjw] {
    opacity: 0.5;
    cursor: not-allowed;
}

.difficulty-selector .form-control option[b-o2t1gwgvjw] {
    background: #1e3c72;
    color: white;
}

/* Plateau de jeu */
.game-board-container[b-o2t1gwgvjw] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 700px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    transition: all 0.3s ease;
    animation: scaleIn-b-o2t1gwgvjw 0.5s ease-out 0.3s both;
    position: relative;
    cursor: pointer;
}

.game-board-container:focus[b-o2t1gwgvjw] {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 20px rgba(76, 175, 80, 0.3);
}

/* Wrapper du plateau */
.game-board-wrapper[b-o2t1gwgvjw] {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Overlay de message */
.game-overlay[b-o2t1gwgvjw] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    animation: fadeIn-b-o2t1gwgvjw 0.3s ease-out;
    z-index: 10;
}

.game-message[b-o2t1gwgvjw] {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 2rem 3rem;
    border-radius: 12px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: popIn-b-o2t1gwgvjw 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Canevas du jeu */
.game-canvas[b-o2t1gwgvjw] {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* Éléments du jeu */
.snake-head[b-o2t1gwgvjw] {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
}

.food[b-o2t1gwgvjw] {
    animation: pulse-b-o2t1gwgvjw 0.8s ease-in-out infinite;
    filter: drop-shadow(0 2px 5px rgba(255, 107, 107, 0.5));
}

.special-food[b-o2t1gwgvjw] {
    animation: specialPulse-b-o2t1gwgvjw 0.6s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
}

/* Instructions */
.game-instructions[b-o2t1gwgvjw] {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 600px;
    animation: slideUp-b-o2t1gwgvjw 0.6s ease-out 0.4s both;
}

.game-instructions h3[b-o2t1gwgvjw] {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-instructions ul[b-o2t1gwgvjw] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-instructions li[b-o2t1gwgvjw] {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.game-instructions kbd[b-o2t1gwgvjw] {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Courier New', monospace;
    font-weight: 600;
    margin: 0 0.3rem;
    display: inline-block;
}

/* Événements du jeu */
.game-events[b-o2t1gwgvjw] {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    width: 100%;
    max-width: 600px;
    animation: slideUp-b-o2t1gwgvjw 0.6s ease-out 0.5s both;
}

.game-events h3[b-o2t1gwgvjw] {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-events ul[b-o2t1gwgvjw] {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 150px;
    overflow-y: auto;
}

.game-events li[b-o2t1gwgvjw] {
    padding: 0.5rem;
    margin-bottom: 0.3rem;
    background: rgba(76, 175, 80, 0.1);
    border-left: 3px solid #4CAF50;
    padding-left: 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    animation: slideIn-b-o2t1gwgvjw 0.3s ease-out;
}

/* Animations */
@keyframes slideDown-b-o2t1gwgvjw {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp-b-o2t1gwgvjw {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn-b-o2t1gwgvjw {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn-b-o2t1gwgvjw {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-b-o2t1gwgvjw {
    0%, 100% {
        r: 0.35;
        filter: drop-shadow(0 2px 5px rgba(255, 107, 107, 0.5));
    }
    50% {
        r: 0.45;
        filter: drop-shadow(0 2px 8px rgba(255, 107, 107, 0.8));
    }
}

@keyframes specialPulse-b-o2t1gwgvjw {
    0%, 100% {
        r: 0.35;
        filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
    }
    50% {
        r: 0.5;
        filter: drop-shadow(0 3px 12px rgba(255, 215, 0, 1));
    }
}

@keyframes fadeIn-b-o2t1gwgvjw {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes popIn-b-o2t1gwgvjw {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .snake-container[b-o2t1gwgvjw] {
        padding: 1rem;
        gap: 1rem;
    }

    .snake-header h1[b-o2t1gwgvjw] {
        font-size: 2rem;
    }

    .game-board[b-o2t1gwgvjw] {
        padding: 1rem;
        max-width: 100%;
    }

    .game-controls[b-o2t1gwgvjw] {
        flex-direction: column;
        max-width: 100%;
    }

    .btn[b-o2t1gwgvjw] {
        width: 100%;
    }

    .difficulty-selector[b-o2t1gwgvjw] {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .difficulty-selector .form-control[b-o2t1gwgvjw] {
        width: 100%;
    }

    .game-info[b-o2t1gwgvjw] {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .game-instructions[b-o2t1gwgvjw],
    .game-events[b-o2t1gwgvjw] {
        max-width: 100%;
    }
}

/* Scrollbar personnalisée */
.game-events ul[b-o2t1gwgvjw]::-webkit-scrollbar {
    width: 6px;
}

.game-events ul[b-o2t1gwgvjw]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.game-events ul[b-o2t1gwgvjw]::-webkit-scrollbar-thumb {
    background: rgba(76, 175, 80, 0.5);
    border-radius: 3px;
}

.game-events ul[b-o2t1gwgvjw]::-webkit-scrollbar-thumb:hover {
    background: rgba(76, 175, 80, 0.8);
}
/* _content/NuitInfo.Rubeus/Composants/PcRescue/ScoreboardPhase.razor.rz.scp.css */
@keyframes fadeIn-b-mbsxhz7omp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse-b-mbsxhz7omp {
    0%, 100% {
        box-shadow: 0 0 20px #28a745;
    }
    50% {
        box-shadow: 0 0 40px #28a745;
    }
}

@media (max-width: 768px) {
    .gauges-container[b-mbsxhz7omp] {
        grid-template-columns: 1fr;
    }

    .additional-stats[b-mbsxhz7omp] {
        flex-direction: column;
        gap: 20px;
    }

    .scoreboard-content[b-mbsxhz7omp] {
        padding: 20px;
    }

    .title[b-mbsxhz7omp] {
        font-size: 1.8em;
    }
}
/* _content/NuitInfo.Rubeus/Composants/SnakeGameModal.razor.rz.scp.css */
/* Modal Overlay */
.snake-modal-overlay[b-bh2b84odyq] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    animation: fadeIn-b-bh2b84odyq 0.3s ease-out;
}

/* Modal Container */
.snake-modal[b-bh2b84odyq] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: popIn-b-bh2b84odyq 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Modal Header */
.snake-modal-header[b-bh2b84odyq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.snake-modal-header h2[b-bh2b84odyq] {
    margin: 0;
    font-size: 1.8rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.snake-modal-close[b-bh2b84odyq] {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.snake-modal-close:hover[b-bh2b84odyq] {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Modal Content */
.snake-modal-content[b-bh2b84odyq] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Game Stats */
.snake-game-stats[b-bh2b84odyq] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat[b-bh2b84odyq] {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-label[b-bh2b84odyq] {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.stat-value[b-bh2b84odyq] {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
}

/* Game Board Wrapper */
.game-board-wrapper[b-bh2b84odyq] {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

/* Game Canvas Modal */
.game-canvas-modal[b-bh2b84odyq] {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* Game Overlay */
.game-overlay[b-bh2b84odyq] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    animation: fadeIn-b-bh2b84odyq 0.3s ease-out;
    z-index: 10;
}

.game-message[b-bh2b84odyq] {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: popIn-b-bh2b84odyq 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Modal Controls */
.snake-modal-controls[b-bh2b84odyq] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn[b-bh2b84odyq] {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover[b-bh2b84odyq] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn:active[b-bh2b84odyq] {
    transform: translateY(0);
}

.btn-play[b-bh2b84odyq] {
    background: linear-gradient(135deg, #00D084 0%, #00C273 100%);
    color: white;
}

.btn-play:hover[b-bh2b84odyq] {
    background: linear-gradient(135deg, #00E090 0%, #00D084 100%);
}

.btn-pause[b-bh2b84odyq] {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: white;
}

.btn-pause:hover[b-bh2b84odyq] {
    background: linear-gradient(135deg, #FFB520 0%, #FFA500 100%);
}

.btn-restart[b-bh2b84odyq] {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
    color: white;
}

.btn-restart:hover[b-bh2b84odyq] {
    background: linear-gradient(135deg, #FF7D7D 0%, #FF6B6B 100%);
}

.btn-close-modal[b-bh2b84odyq] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-close-modal:hover[b-bh2b84odyq] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Instructions */
.snake-instructions-modal[b-bh2b84odyq] {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.5;
}

.snake-instructions-modal p[b-bh2b84odyq] {
    margin: 0;
}

.snake-instructions-modal strong[b-bh2b84odyq] {
    color: #4CAF50;
}

/* Animations */
@keyframes fadeIn-b-bh2b84odyq {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes popIn-b-bh2b84odyq {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .snake-modal[b-bh2b84odyq] {
        max-width: 95%;
        width: 95%;
    }

    .snake-game-stats[b-bh2b84odyq] {
        grid-template-columns: 1fr;
    }

    .snake-modal-controls[b-bh2b84odyq] {
        gap: 0.5rem;
    }

    .btn[b-bh2b84odyq] {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Food animations */
.food[b-bh2b84odyq] {
    animation: pulse-b-bh2b84odyq 0.8s ease-in-out infinite;
    filter: drop-shadow(0 2px 5px rgba(255, 107, 107, 0.5));
}

.special-food[b-bh2b84odyq] {
    animation: specialPulse-b-bh2b84odyq 0.6s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
}

@keyframes pulse-b-bh2b84odyq {
    0%, 100% {
        r: 0.35;
        filter: drop-shadow(0 2px 5px rgba(255, 107, 107, 0.5));
    }
    50% {
        r: 0.45;
        filter: drop-shadow(0 2px 8px rgba(255, 107, 107, 0.8));
    }
}

@keyframes specialPulse-b-bh2b84odyq {
    0%, 100% {
        r: 0.35;
        filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
    }
    50% {
        r: 0.5;
        filter: drop-shadow(0 3px 12px rgba(255, 215, 0, 1));
    }
}
/* _content/NuitInfo.Rubeus/RadioOccitania/Composants/PageRadio/PageRadio.razor.rz.scp.css */
.test[b-o642m8cmax]  {
    border : 3px solid red;
}
