/* /Components/Account/Pages/Login.razor.rz.scp.css */
/* WRAPPER — só centra, não mexe no fundo global */
.bla-login-wrapper[b-7r0y8uo0po] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: transparent;
}

/* CARTÃO — mais escuro no tema escuro, ligeiramente acima visualmente */
.bla-login-card[b-7r0y8uo0po] {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px) brightness(1.1);
    border-radius: 20px;
    padding: 55px 35px 40px;
    width: 360px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 204, 0, 0.15);
    animation: cardPop-b-7r0y8uo0po 0.35s ease-out;
    /* ligeiro lift visual */
    transform: translateY(-10px);
}

@keyframes cardPop-b-7r0y8uo0po {
    0% {
        transform: scale(0.94) translateY(10px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(-10px);
        opacity: 1;
    }
}

/* MASCOTE */
.bla-login-mascot[b-7r0y8uo0po] {
    width: 95px;
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    filter: drop-shadow(0 0 6px rgba(255, 204, 0, 0.45));
    animation: blazinhoFloat-b-7r0y8uo0po 3s ease-in-out infinite;
}

@keyframes blazinhoFloat-b-7r0y8uo0po {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-7px);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}

/* TÍTULOS */
.bla-login-title[b-7r0y8uo0po] {
    margin-top: 40px;
    color: #ffcc00;
    font-size: 1.9rem;
    font-weight: 800;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.4);
}

.bla-login-subtitle[b-7r0y8uo0po] {
    color: #ddd;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* INPUTS */
.bla-input-group[b-7r0y8uo0po] {
    text-align: left;
    margin-bottom: 18px;
}

    .bla-input-group label[b-7r0y8uo0po] {
        color: #ffcc00;
        font-size: 0.9rem;
        font-weight: 600;
    }

.bla-input[b-7r0y8uo0po] {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: 0.25s ease;
}

    .bla-input:focus[b-7r0y8uo0po] {
        border-color: #ffcc00;
        box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        background: rgba(255, 255, 255, 0.15);
        outline: none;
    }

/* BOTÃO */
.bla-btn[b-7r0y8uo0po] {
    width: 100%;
    padding: 13px;
    background: linear-gradient(90deg, #ffcc00, #ff9d00);
    border: none;
    border-radius: 10px;
    font-weight: 800;
    color: #000;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.4);
}

    .bla-btn:hover[b-7r0y8uo0po] {
        transform: translateY(-2px);
        box-shadow: 0 0 18px rgba(255, 204, 0, 0.7);
    }

    .bla-btn:active[b-7r0y8uo0po] {
        transform: translateY(1px);
    }

    .bla-btn:disabled[b-7r0y8uo0po] {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* ERRO */
.bla-error[b-7r0y8uo0po] {
    background: rgba(255, 0, 0, 0.15);
    color: #ff6666;
    padding: 10px;
    border-radius: 10px;
    margin-top: 12px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 0, 0, 0.25);
}

/* FOOTER */
.bla-login-footer[b-7r0y8uo0po] {
    margin-top: 22px;
    color: #ccc;
    font-size: 0.9rem;
}

    .bla-login-footer a[b-7r0y8uo0po] {
        color: #ffcc00;
        text-decoration: none;
        font-weight: 700;
    }

        .bla-login-footer a:hover[b-7r0y8uo0po] {
            text-decoration: underline;
        }

/* TEMA CLARO — contraste corrigido */
html[data-theme="light"] .bla-login-card[b-7r0y8uo0po] {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px) brightness(1.02);
    color: #222;
}

html[data-theme="light"] .bla-login-title[b-7r0y8uo0po] {
    color: #cc8800;
    text-shadow: none;
}

html[data-theme="light"] .bla-login-subtitle[b-7r0y8uo0po] {
    color: #555;
}

html[data-theme="light"] .bla-input[b-7r0y8uo0po] {
    background: rgba(255, 255, 255, 0.9);
    color: #222;
    border-color: rgba(0,0,0,0.15);
}

html[data-theme="light"] .bla-login-footer[b-7r0y8uo0po],
html[data-theme="light"] .bla-login-footer a[b-7r0y8uo0po] {
    color: #444;
}
/* /Components/Account/Pages/Register.razor.rz.scp.css */
/* ================================
   WRAPPER — transparente e centrado
================================ */
.bla-register-wrapper[b-3ek1n6n24b] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: transparent;
}

/* ================================
   CARTÃO — vidro premium
================================ */
.bla-register-card[b-3ek1n6n24b] {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px) brightness(1.1);
    border-radius: 20px;
    padding: 55px 35px 45px;
    width: 360px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 204, 0, 0.15);
    animation: registerPop-b-3ek1n6n24b 0.35s ease-out;
    transform: translateY(-10px);
}

@keyframes registerPop-b-3ek1n6n24b {
    0% {
        transform: scale(0.94) translateY(10px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(-10px);
        opacity: 1;
    }
}

/* ================================
   MASCOTE
================================ */
.bla-register-mascot[b-3ek1n6n24b] {
    width: 95px;
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    filter: drop-shadow(0 0 6px rgba(255, 204, 0, 0.45));
    animation: blazinhoFloat-b-3ek1n6n24b 3s ease-in-out infinite;
}

@keyframes blazinhoFloat-b-3ek1n6n24b {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-7px);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}

/* ================================
   TÍTULOS
================================ */
.bla-register-title[b-3ek1n6n24b] {
    margin-top: 40px;
    color: #ffcc00;
    font-size: 1.9rem;
    font-weight: 800;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.4);
}

.bla-register-subtitle[b-3ek1n6n24b] {
    color: #ddd;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* ================================
   INPUTS (herdam do login)
================================ */
.bla-input-group[b-3ek1n6n24b] {
    text-align: left;
    margin-bottom: 18px;
}

    .bla-input-group label[b-3ek1n6n24b] {
        color: #ffcc00;
        font-size: 0.9rem;
        font-weight: 600;
    }

.bla-input[b-3ek1n6n24b] {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: 0.25s ease;
}

    .bla-input:focus[b-3ek1n6n24b] {
        border-color: #ffcc00;
        box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        background: rgba(255, 255, 255, 0.15);
        outline: none;
    }

/* ================================
   BOTÃO (igual ao login)
================================ */
.bla-btn[b-3ek1n6n24b] {
    width: 100%;
    padding: 13px;
    background: linear-gradient(90deg, #ffcc00, #ff9d00);
    border: none;
    border-radius: 10px;
    font-weight: 800;
    color: #000;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.4);
}

    .bla-btn:hover[b-3ek1n6n24b] {
        transform: translateY(-2px);
        box-shadow: 0 0 18px rgba(255, 204, 0, 0.7);
    }

    .bla-btn:active[b-3ek1n6n24b] {
        transform: translateY(1px);
    }

    .bla-btn:disabled[b-3ek1n6n24b] {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* ================================
   ERRO
================================ */
.bla-error[b-3ek1n6n24b] {
    background: rgba(255, 0, 0, 0.15);
    color: #ff6666;
    padding: 10px;
    border-radius: 10px;
    margin-top: 12px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 0, 0, 0.25);
}

/* ================================
   FOOTER
================================ */
.bla-register-footer[b-3ek1n6n24b] {
    margin-top: 22px;
    color: #ccc;
    font-size: 0.9rem;
}

    .bla-register-footer a[b-3ek1n6n24b] {
        color: #ffcc00;
        text-decoration: none;
        font-weight: 700;
    }

        .bla-register-footer a:hover[b-3ek1n6n24b] {
            text-decoration: underline;
        }

/* ================================
   TEMA CLARO — contraste perfeito
================================ */
html[data-theme="light"] .bla-register-card[b-3ek1n6n24b] {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px) brightness(1.02);
    color: #222;
}

html[data-theme="light"] .bla-register-title[b-3ek1n6n24b] {
    color: #cc8800;
    text-shadow: none;
}

html[data-theme="light"] .bla-register-subtitle[b-3ek1n6n24b] {
    color: #555;
}

html[data-theme="light"] .bla-input[b-3ek1n6n24b] {
    background: rgba(255, 255, 255, 0.9);
    color: #222;
    border-color: rgba(0,0,0,0.15);
}

html[data-theme="light"] .bla-register-footer[b-3ek1n6n24b],
html[data-theme="light"] .bla-register-footer a[b-3ek1n6n24b] {
    color: #444;
}
/* /Components/ChatNovo/Chat.razor.rz.scp.css */
/* ============================================================
   FUNDO GLOBAL DO CHAT — TEMA ESCURO E CLARO
   ============================================================ */

/* Tema escuro — fundo profundo, suave, premium */
html[data-theme="dark"][b-a3rwlac7fz],
html[data-theme="dark"] body[b-a3rwlac7fz] {
    background: #0a0a0c !important;
}

/* Tema claro — fundo iOS premium */
html[data-theme="light"][b-a3rwlac7fz],
html[data-theme="light"] body[b-a3rwlac7fz] {
    background: #f2f2f7 !important;
}

/* ============================================================
   CHATBASE-CONTAINER — FUNDO DO CHAT
   ============================================================ */

.chatbase-container[b-a3rwlac7fz] {
    display: flex;
    height: calc(100vh - 20px);
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
}

/* Tema escuro — fundo suave, sem branco */
html[data-theme="dark"] .chatbase-container[b-a3rwlac7fz] {
    background: linear-gradient(180deg, #0b0b0d 0%, #0f0f14 100%);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.45);
}

/* Tema claro — fundo elegante */
html[data-theme="light"] .chatbase-container[b-a3rwlac7fz] {
    background: #ffffff;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.08);
}

/* ============================================================
   ÁREA PRINCIPAL DO CHAT (ARENA + COMMANDBAR + INPUT)
   ============================================================ */

.main[b-a3rwlac7fz] {
    flex: 1;
    min-height: 0; /* ESSENCIAL */
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
}

/* Tema escuro */
html[data-theme="dark"] .main[b-a3rwlac7fz] {
    background: rgba(20, 20, 28, 0.55);
    backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Tema claro */
html[data-theme="light"] .main[b-a3rwlac7fz] {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px) saturate(160%);
    border: 1px solid rgba(0,0,0,0.08);
}

/* ============================================================
   MESSAGES CONTAINER (wrapper do MessagesBox)
   ============================================================ */

.messages-container[b-a3rwlac7fz] {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

/* ============================================================
   INPUT CONTAINER
   ============================================================ */

.input-container[b-a3rwlac7fz] {
    padding: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Tema claro */
html[data-theme="light"] .input-container[b-a3rwlac7fz] {
    border-top: 1px solid rgba(0,0,0,0.12);
}




.miniapp-overlay[b-a3rwlac7fz] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.45);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.miniapp-container[b-a3rwlac7fz] {
    background: rgba(30, 30, 40, 0.85);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
}


.miniapp-close[b-a3rwlac7fz] {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    /* fundo dourado premium */
    background: radial-gradient(circle, #ffd86b 0%, #d4a63f 60%, #8a6b1f 100%);
    color: #2b1b00;
    font-size: 22px;
    font-weight: bold;
    /* glow dourado */
    box-shadow: 0 0 12px rgba(255, 215, 100, 0.9), 0 0 24px rgba(255, 215, 100, 0.6), 0 0 36px rgba(255, 215, 100, 0.4);
    /* animação pulsante */
    animation: goldenPulse-b-a3rwlac7fz 1.6s infinite ease-in-out;
    z-index: 10000;
}

@keyframes goldenPulse-b-a3rwlac7fz {
    0% {
        transform: scale(1);
        box-shadow: 0 0 12px rgba(255, 215, 100, 0.9), 0 0 24px rgba(255, 215, 100, 0.6), 0 0 36px rgba(255, 215, 100, 0.4);
    }

    50% {
        transform: scale(1.12);
        box-shadow: 0 0 20px rgba(255, 215, 100, 1), 0 0 32px rgba(255, 215, 100, 0.8), 0 0 48px rgba(255, 215, 100, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 12px rgba(255, 215, 100, 0.9), 0 0 24px rgba(255, 215, 100, 0.6), 0 0 36px rgba(255, 215, 100, 0.4);
    }
}

.toast-container[b-a3rwlac7fz] {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.toast-message[b-a3rwlac7fz] {
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: fadein-b-a3rwlac7fz 0.3s ease-out;
}

@keyframes fadein-b-a3rwlac7fz {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
/* /Components/ChatNovo/ChatMessageList.razor.rz.scp.css */
/* ============================
   CONTAINER
============================ */
.chat-messages[b-h5gqyxqz8v] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

/* ============================
   BASE DA MENSAGEM
============================ */
.msg[b-h5gqyxqz8v] {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    max-width: 70%;
    padding: 8px 12px;
    border-radius: 6px;
    margin-left: 0; /* tudo à esquerda */
    margin-right: auto;
}

    /* Nickname */
    .msg .nick[b-h5gqyxqz8v] {
        font-weight: 600;
        color: #333;
    }

    /* Texto */
    .msg .text[b-h5gqyxqz8v] {
        white-space: pre-wrap;
    }

    /* ============================
   TIPOS DE MENSAGEM
============================ */

    /* Self */
    .msg.self[b-h5gqyxqz8v] {
        background: #ffffff;
        color: #000000;
    }

        .msg.self .nick[b-h5gqyxqz8v] {
            color: #000;
        }

    /* Others */
    .msg.other[b-h5gqyxqz8v] {
        background: #f1c40f;
        color: #000000;
    }

        .msg.other .nick[b-h5gqyxqz8v] {
            color: #8a6d00; /* combina com o amarelo */
        }

    /* Group */
    .msg.group[b-h5gqyxqz8v] {
        background: #555;
        color: #ddd;
        opacity: 0.7;
    }

    .msg.group-red[b-h5gqyxqz8v] {
        background: #ff6b6b;
        color: #fff;
        opacity: 1;
    }

    .msg.group-gray[b-h5gqyxqz8v] {
        background: #999;
        color: #eee;
        opacity: 0.22;
        filter: blur(0.6px);
        letter-spacing: 0.4px;
    }


    /* System */
    .msg.system[b-h5gqyxqz8v] {
        margin-left: auto;
        margin-right: auto;
        background: transparent;
        color: #aaa;
        font-style: italic;
        text-align: center;
    }
/* /Components/ChatNovo/ChatUserList.razor.rz.scp.css */
.chat-userlist[b-a45ysbg4wa] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

/* CARD DO USER */
.user-card[b-a45ysbg4wa] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    background: #f7f7f7;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
    border: 1px solid #e5e5e5;
}

    .user-card:hover[b-a45ysbg4wa] {
        background: #ececec;
        transform: translateX(2px);
    }

    /* AVATAR */
    .user-card .avatar[b-a45ysbg4wa] {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        object-fit: cover;
    }

    /* NOME */
    .user-card .info .name[b-a45ysbg4wa] {
        font-weight: 600;
        color: #333;
        font-size: 0.95rem;
    }
/* /Components/Chat/AlertBox.razor.rz.scp.css */
/* ============================================================
   ALERT BOX — PREMIUM LEVE E ELEGANTE
   ============================================================ */

.alert-box[b-ye02ngioil] {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
    backdrop-filter: blur(8px) saturate(140%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    color: var(--bla-text);
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transform: translateY(-4px);
    animation: alertFadeIn-b-ye02ngioil 0.18s ease-out forwards;
}

@keyframes alertFadeIn-b-ye02ngioil {
    0% {
        opacity: 0;
        transform: translateY(-6px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Chat/ChatInput.razor.rz.scp.css */
/* ============================================================
   CHAT INPUT — PREMIUM LEVE E CONSISTENTE
   ============================================================ */

.chatinput-container[b-7mliqp2q0m] {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px) saturate(140%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

    .chatinput-container.writing[b-7mliqp2q0m] {
        border-color: rgba(0, 200, 255, 0.35);
        box-shadow: 0 0 12px rgba(0, 200, 255, 0.25);
    }

/* ============================================================
   TEXTAREA
   ============================================================ */

.chatinput-textarea[b-7mliqp2q0m] {
    flex: 1;
    resize: none;
    min-height: 42px;
    max-height: 160px;
    padding: 10px 12px;
    font-size: 15px;
    line-height: 1.35;
    color: var(--bla-text);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.18s ease, background 0.18s ease;
}

    .chatinput-textarea:focus[b-7mliqp2q0m] {
        border-color: rgba(0, 200, 255, 0.35);
        background: rgba(255, 255, 255, 0.10);
    }

    /* Placeholder */
    .chatinput-textarea[b-7mliqp2q0m]::placeholder {
        color: rgba(255, 255, 255, 0.35);
        transition: opacity 0.18s ease;
    }

.chatinput-container.writing .chatinput-textarea[b-7mliqp2q0m]::placeholder {
    opacity: 0;
}

/* ============================================================
   BOTÃO ENVIAR
   ============================================================ */

.chatinput-send[b-7mliqp2q0m] {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: var(--bla-text);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

    .chatinput-send:hover:not(:disabled)[b-7mliqp2q0m] {
        background: rgba(0, 200, 255, 0.16);
        border-color: rgba(0, 200, 255, 0.35);
        box-shadow: 0 0 8px rgba(0, 200, 255, 0.35);
        transform: translateY(-1px);
    }

    .chatinput-send:active:not(:disabled)[b-7mliqp2q0m] {
        transform: translateY(0);
        box-shadow: 0 0 4px rgba(0, 200, 255, 0.25);
    }

    /* Disabled */
    .chatinput-send:disabled[b-7mliqp2q0m] {
        opacity: 0.35;
        cursor: not-allowed;
        filter: grayscale(100%);
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.12);
        box-shadow: none;
    }

/* ============================================================
   LIGHT MODE — PREMIUM
   ============================================================ */

html[data-theme="light"] .chatinput-container[b-7mliqp2q0m] {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

html[data-theme="light"] .chatinput-textarea[b-7mliqp2q0m] {
    background: rgba(255,255,255,1);
    color: #222;
    border: 1px solid rgba(0,0,0,0.15);
}

html[data-theme="light"] .chatinput-send[b-7mliqp2q0m] {
    background: rgba(255,255,255,1);
    color: #222;
    border: 1px solid rgba(0,0,0,0.15);
}



/* ============================================================
   CHAT INPUT — LIGHT MODE PREMIUM
   ============================================================ */

html[data-theme="light"] .chatinput-container[b-7mliqp2q0m] {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0,0,0,0.12);
    backdrop-filter: blur(10px) saturate(160%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

    html[data-theme="light"] .chatinput-container.writing[b-7mliqp2q0m] {
        border-color: rgba(0, 120, 200, 0.35);
        box-shadow: 0 0 10px rgba(0, 120, 200, 0.25);
    }

/* TEXTAREA */
html[data-theme="light"] .chatinput-textarea[b-7mliqp2q0m] {
    background: rgba(255,255,255,0.85);
    color: #222;
    border: 1px solid rgba(0,0,0,0.15);
}

    html[data-theme="light"] .chatinput-textarea:focus[b-7mliqp2q0m] {
        border-color: rgba(0, 120, 200, 0.35);
        background: rgba(255,255,255,1);
    }

    /* Placeholder */
    html[data-theme="light"] .chatinput-textarea[b-7mliqp2q0m]::placeholder {
        color: rgba(0,0,0,0.35);
    }

/* BOTÃO ENVIAR */
html[data-theme="light"] .chatinput-send[b-7mliqp2q0m] {
    background: rgba(255,255,255,0.85);
    color: #222;
    border: 1px solid rgba(0,0,0,0.15);
}

    html[data-theme="light"] .chatinput-send:hover:not(:disabled)[b-7mliqp2q0m] {
        background: rgba(0, 120, 200, 0.15);
        border-color: rgba(0, 120, 200, 0.35);
        box-shadow: 0 0 8px rgba(0, 120, 200, 0.35);
    }

    html[data-theme="light"] .chatinput-send:disabled[b-7mliqp2q0m] {
        background: rgba(255,255,255,0.65);
        border-color: rgba(0,0,0,0.10);
        opacity: 0.45;
    }
/* /Components/Chat/CommandBar.razor.rz.scp.css */
/* ============================================
   COMMAND BAR — Painel HUD Premium
   ============================================ */

.chat-command-bar[b-yfo9d0bj9i] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
    background: rgba(20, 22, 40, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    backdrop-filter: blur(14px) saturate(140%);
    box-shadow: 0 0 14px rgba(0, 200, 255, 0.08);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

    .chat-command-bar:hover[b-yfo9d0bj9i] {
        border-color: rgba(0, 200, 255, 0.35);
        box-shadow: 0 0 18px rgba(0, 200, 255, 0.18);
    }

    /* Separadores “|” */
    .chat-command-bar[b-yfo9d0bj9i]::before,
    .chat-command-bar[b-yfo9d0bj9i]::after {
        content: "";
    }

    .chat-command-bar span.separator[b-yfo9d0bj9i] {
        color: rgba(255, 255, 255, 0.35);
        margin: 0 4px;
        font-weight: 300;
    }

/* Botões */
.cmd-btn[b-yfo9d0bj9i] {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    font-size: 16px;
    color: white;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

    .cmd-btn:hover[b-yfo9d0bj9i] {
        background: rgba(0, 200, 255, 0.18);
        box-shadow: 0 0 8px rgba(0, 200, 255, 0.35);
        transform: translateY(-1px);
        border-color: rgba(0, 200, 255, 0.35);
    }

    .cmd-btn:active[b-yfo9d0bj9i] {
        transform: translateY(0);
    }

.separator[b-yfo9d0bj9i] {
    color: rgba(0, 200, 255, 0.45);
    text-shadow: 0 0 6px rgba(0, 200, 255, 0.45);
}

/* ============================================
   LIGHT MODE — FIX
   ============================================ */

html[data-theme="light"] .chat-command-bar[b-yfo9d0bj9i] {
    background: rgba(255, 255, 255, 0.92) !important;
    border: 1px solid rgba(0,0,0,0.12) !important;
    box-shadow: 0 0 12px rgba(0,0,0,0.10) !important;
    color: #222 !important;
}

html[data-theme="light"] .cmd-btn[b-yfo9d0bj9i] {
    background: rgba(255,255,255,0.95) !important;
    color: #222 !important;
    border: 1px solid rgba(0,0,0,0.15) !important;
    box-shadow: 0 0 6px rgba(0,0,0,0.08) !important;
}

/* ============================================================
   COMMAND BAR — LIGHT MODE PREMIUM
   ============================================================ */

html[data-theme="light"] .chat-command-bar[b-yfo9d0bj9i] {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(0,0,0,0.14) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10), inset 0 0 6px rgba(255,255,255,0.45) !important;
    color: #222 !important;
}

/* Separadores */
html[data-theme="light"] .separator[b-yfo9d0bj9i] {
    color: rgba(0, 120, 200, 0.65);
    text-shadow: 0 0 4px rgba(0, 120, 200, 0.35);
    font-weight: 500;
}

/* Botões */
html[data-theme="light"] .cmd-btn[b-yfo9d0bj9i] {
    background: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(0,0,0,0.20) !important;
    color: #222 !important;
    box-shadow: 0 0 6px rgba(0,0,0,0.08) !important;
}

    html[data-theme="light"] .cmd-btn:hover[b-yfo9d0bj9i] {
        background: rgba(0, 120, 200, 0.15) !important;
        border-color: rgba(0, 120, 200, 0.35) !important;
        box-shadow: 0 0 8px rgba(0, 120, 200, 0.35) !important;
    }





/* ============================================================
   BOTÃO SINTONIA — PREMIUM HUD
   ============================================================ */

.sintonia-btn[b-yfo9d0bj9i] {
    position: relative;
    overflow: hidden;
    border-color: rgba(255, 0, 255, 0.25);
    transition: 0.25s ease;
}

    /* Hover normal */
    .sintonia-btn:hover[b-yfo9d0bj9i] {
        background: rgba(255, 0, 255, 0.15) !important;
        border-color: rgba(255, 0, 255, 0.45) !important;
        box-shadow: 0 0 10px rgba(255, 0, 255, 0.35) !important;
    }

    /* Quando ativo → modo premium */
    .sintonia-btn.cmd-btn-active[b-yfo9d0bj9i] {
        background: linear-gradient(135deg, #ff66ff, #7f00ff) !important;
        border-color: rgba(255, 0, 255, 0.65) !important;
        color: white !important;
        box-shadow: 0 0 14px rgba(255, 0, 255, 0.75), 0 0 22px rgba(127, 0, 255, 0.55);
        transform: scale(1.06);
    }

    /* Onda neon */
    .sintonia-btn .onda[b-yfo9d0bj9i] {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle, rgba(255, 0, 255, 0.25), transparent 70%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    /* Onda ativa */
    .sintonia-btn.cmd-btn-active .onda[b-yfo9d0bj9i] {
        opacity: 1;
        animation: sintoniaPulse-b-yfo9d0bj9i 2.4s infinite ease-in-out;
    }

@keyframes sintoniaPulse-b-yfo9d0bj9i {
    0% {
        transform: scale(1);
        opacity: 0.45;
    }

    50% {
        transform: scale(1.25);
        opacity: 0.75;
    }

    100% {
        transform: scale(1);
        opacity: 0.45;
    }
}

/* ============================================================
   LIGHT MODE — SINTONIA
   ============================================================ */

html[data-theme="light"] .sintonia-btn[b-yfo9d0bj9i] {
    border-color: rgba(200, 0, 200, 0.25) !important;
}

    html[data-theme="light"] .sintonia-btn:hover[b-yfo9d0bj9i] {
        background: rgba(200, 0, 200, 0.12) !important;
        border-color: rgba(200, 0, 200, 0.45) !important;
        box-shadow: 0 0 10px rgba(200, 0, 200, 0.35) !important;
    }

    html[data-theme="light"] .sintonia-btn.cmd-btn-active[b-yfo9d0bj9i] {
        background: linear-gradient(135deg, #ff88ff, #b300ff) !important;
        border-color: rgba(200, 0, 200, 0.65) !important;
        color: white !important;
        box-shadow: 0 0 14px rgba(200, 0, 200, 0.55), 0 0 22px rgba(150, 0, 200, 0.45) !important;
    }

        html[data-theme="light"] .sintonia-btn.cmd-btn-active .onda[b-yfo9d0bj9i] {
            background: radial-gradient(circle, rgba(255, 150, 255, 0.35), transparent 70%);
        }



.blazinho-icon[b-yfo9d0bj9i] {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    object-fit: contain;
    pointer-events: none;
    display: block;
}
/* /Components/Chat/GroupActions.razor.rz.scp.css */
/* ============================================================
   GROUP ACTIONS — BOTÃO PREMIUM DELETAR GRUPO
   ============================================================ */

button.danger[b-9jv5480nmy] {
    width: 100%;
    padding: 8px 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 80, 80, 0.35);
    background: rgba(255, 80, 80, 0.12);
    color: var(--bla-text);
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

    button.danger:hover[b-9jv5480nmy] {
        background: rgba(255, 80, 80, 0.22);
        border-color: rgba(255, 80, 80, 0.55);
        box-shadow: 0 0 10px rgba(255, 80, 80, 0.35);
        transform: translateY(-1px);
    }

    button.danger:active[b-9jv5480nmy] {
        transform: translateY(0);
    }
/* /Components/Chat/GroupInfo.razor.rz.scp.css */
/* ============================================================
   GROUP INFO — PREMIUM LEVE E CONSISTENTE
   ============================================================ */

.group-info[b-audceeb06t] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
    backdrop-filter: blur(8px) saturate(140%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-size: 13px;
}

    .group-info:hover[b-audceeb06t] {
        border-color: rgba(0, 200, 255, 0.25);
        box-shadow: 0 4px 12px rgba(0, 200, 255, 0.18);
    }

    /* Título */
    .group-info h4[b-audceeb06t] {
        margin: 0 0 8px 0;
        font-size: 16px;
        color: var(--bla-text);
        letter-spacing: 0.4px;
    }

    /* Lista */
    .group-info ul[b-audceeb06t] {
        list-style: none;
        padding: 0;
        margin: 0 0 10px 0;
    }

    .group-info li[b-audceeb06t] {
        padding: 3px 0;
        color: rgba(255, 255, 255, 0.85);
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: color 0.15s ease;
    }

        .group-info li:hover[b-audceeb06t] {
            color: white;
        }

    /* Botão sair */
    .group-info .leave[b-audceeb06t] {
        width: 100%;
        padding: 7px 0;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.06);
        color: var(--bla-text);
        cursor: pointer;
        transition: background 0.15s ease, transform 0.12s ease;
    }

        .group-info .leave:hover[b-audceeb06t] {
            background: rgba(255, 80, 80, 0.22);
            transform: translateY(-1px);
        }

        .group-info .leave:active[b-audceeb06t] {
            transform: translateY(0);
        }
/* /Components/Chat/HeaderOnline.razor.rz.scp.css */
/* ============================================================
   HEADER ONLINE — BLÁ PREMIUM
   ============================================================ */

.header-online[b-yatcdlmvcd] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 4px 10px 4px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--bla-text);
    /* Vidro leve */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px) saturate(160%);
    border-radius: 10px;
    /* Glow suave */
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 8px rgba(0, 200, 255, 0.08);
}

/* ============================================================
   BOTÕES PREMIUM
   ============================================================ */

.mute-groups-btn[b-yatcdlmvcd] {
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    cursor: pointer;
    font-size: 16px;
    transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

    .mute-groups-btn:hover[b-yatcdlmvcd] {
        background: rgba(0, 200, 255, 0.18);
        border-color: rgba(0, 200, 255, 0.35);
        box-shadow: 0 0 8px rgba(0, 200, 255, 0.35);
        transform: translateY(-1px);
    }

    .mute-groups-btn:active[b-yatcdlmvcd] {
        transform: translateY(0);
    }

/* ============================================================
   LIGHT MODE — PREMIUM
   ============================================================ */

html[data-theme="light"] .header-online[b-yatcdlmvcd] {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
    color: #222;
}

html[data-theme="light"] .mute-groups-btn[b-yatcdlmvcd] {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
}

    html[data-theme="light"] .mute-groups-btn:hover[b-yatcdlmvcd] {
        background: rgba(0, 200, 255, 0.20);
        border-color: rgba(0, 200, 255, 0.35);
        box-shadow: 0 0 8px rgba(0, 200, 255, 0.25);
    }
/* /Components/Chat/InviteCenter.razor.rz.scp.css */
/* ============================================================
   INVITE CENTER — PREMIUM (DARK MODE)
   ============================================================ */

.invite-center[b-f61mafqttv] {
    position: fixed;
    width: 260px;
    max-height: 320px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(12, 14, 28, 0.65);
    border: 1px solid rgba(255, 215, 0, 0.25);
    backdrop-filter: blur(12px) saturate(140%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
    cursor: grab;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    animation: inviteEnter-b-f61mafqttv 0.22s ease-out forwards;
}

    .invite-center.dragging[b-f61mafqttv] {
        cursor: grabbing;
        opacity: 0.85;
    }

/* Card */
.invite-card[b-f61mafqttv] {
    background: rgba(255, 215, 0, 0.10);
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateX(6px);
    animation: inviteSlide-b-f61mafqttv 0.22s ease-out forwards;
}

.invite-text[b-f61mafqttv] {
    font-size: 14px;
    color: var(--bla-text);
    line-height: 1.35;
}

/* Botões */
.invite-actions[b-f61mafqttv] {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 8px;
}

    .invite-actions button[b-f61mafqttv] {
        padding: 4px 8px;
        font-size: 12px;
        border-radius: 6px;
        border: 1px solid rgba(255, 215, 0, 0.25);
        background: rgba(255, 255, 255, 0.06);
        color: var(--bla-text);
        cursor: pointer;
        transition: background 0.15s ease, transform 0.12s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    }

        .invite-actions button:hover[b-f61mafqttv] {
            background: rgba(255, 215, 0, 0.20);
            border-color: rgba(255, 215, 0, 0.45);
            box-shadow: 0 0 8px rgba(255, 215, 0, 0.35);
            transform: translateY(-1px);
        }

        .invite-actions button:active[b-f61mafqttv] {
            transform: translateY(0);
        }

/* Empty */
.invite-empty[b-f61mafqttv] {
    text-align: center;
    color: var(--bla-text-muted);
    padding: 20px 0;
    font-size: 14px;
}

/* Animações */
@keyframes inviteEnter-b-f61mafqttv {
    0% {
        opacity: 0;
        transform: translateY(-6px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes inviteSlide-b-f61mafqttv {
    0% {
        opacity: 0;
        transform: translateX(6px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ============================================================
   INVITE CENTER — LIGHT MODE
   ============================================================ */

html[data-theme="light"] .invite-center[b-f61mafqttv] {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px) saturate(160%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] .invite-card[b-f61mafqttv] {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

html[data-theme="light"] .invite-text[b-f61mafqttv] {
    color: #222;
}

html[data-theme="light"] .invite-actions button[b-f61mafqttv] {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
    color: #222;
}

    html[data-theme="light"] .invite-actions button:hover[b-f61mafqttv] {
        background: rgba(255, 215, 0, 0.25);
        border-color: rgba(255, 215, 0, 0.45);
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.35);
    }

html[data-theme="light"] .invite-empty[b-f61mafqttv] {
    color: #666;
}



.invite-bulk-btn[b-f61mafqttv] {
    width: 100%;
    padding: 6px 10px;
    margin-bottom: 10px;
    font-size: 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: var(--bla-text);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

    .invite-bulk-btn:hover[b-f61mafqttv] {
        background: rgba(255, 215, 0, 0.20);
        border-color: rgba(255, 215, 0, 0.45);
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.35);
    }
/* /Components/Chat/MessageRow.razor.rz.scp.css */
/* ============================================================
   MESSAGE ROW — SEM CAIXAS, SÓ TEXTO PREMIUM
   ============================================================ */

.message[b-fo1wnhr65g] {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
    padding: 0;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    white-space: normal;
    color: var(--bla-text);
    text-shadow: 0 2px 3px rgba(0,0,0,0.45), 0 4px 6px rgba(0,0,0,0.35), 0 6px 12px rgba(0,0,0,0.25);
}

/* ============================================================
   NICK + ESTRELAS + SEPARADOR
   ============================================================ */

.msg-nick[b-fo1wnhr65g] {
    font-weight: 600;
    opacity: 0.95;
    color: inherit !important;
}

.msg-stars[b-fo1wnhr65g],
.msg-stars *[b-fo1wnhr65g] {
    color: #ffd966 !important; /* força dourado */
    text-shadow: 0 0 2px rgba(255, 215, 0, 0.55), 0 0 4px rgba(255, 215, 0, 0.45), 0 0 6px rgba(255, 215, 0, 0.35), 0 0 10px rgba(255, 215, 0, 0.25) !important;
}


.msg-nick-sep[b-fo1wnhr65g] {
    opacity: 0.85;
    margin-right: 2px;
}

/* ============================================================
   ESTRELAS — SUPERSCRIPT PREMIUM
   ============================================================ */

.star-static[b-fo1wnhr65g] {
    font-size: 0.10rem; /* ligeiramente mais pequenas */
    vertical-align: super;
    opacity: 0.95;
    letter-spacing: 1px;
    display: inline-block;
    transform: translateY(-2px);
}


/* ============================================================
   TEXTO DA MENSAGEM
   ============================================================ */

.msg-text[b-fo1wnhr65g] {
    white-space: normal;
    word-break: break-word;
    line-height: 1.35;
    color: inherit !important;
}

/* ============================================================
   ESTRELAS — CLASSES STAR-X
   ============================================================ */

.star-0[b-fo1wnhr65g] {
    opacity: 0.85;
}

.star-1[b-fo1wnhr65g] {
    color: #cccccc;
}

.star-2[b-fo1wnhr65g] {
    color: #e0e0ff;
}

.star-3[b-fo1wnhr65g] {
    color: #d0e8ff;
    font-weight: 500;
}

.star-4[b-fo1wnhr65g] {
    color: #a0d0ff;
    font-weight: 600;
}

.star-5[b-fo1wnhr65g] {
    color: #66b8ff;
    text-shadow: 0 0 6px rgba(80,160,255,0.6);
    font-weight: 700;
}

/* ============================================================
   ESTADOS SOCIAIS — BOOST / TUNE / MUTE / SELF / GRUPOS
   ============================================================ */

.msg-boosted[b-fo1wnhr65g] {
    color: #00eaff !important;
    text-shadow: 0 0 6px rgba(0, 200, 255, 0.75), 0 0 12px rgba(0, 200, 255, 0.55), 0 0 18px rgba(0, 200, 255, 0.35);
}

.msg-tuned[b-fo1wnhr65g] {
    color: #b28bff !important;
    text-shadow: 0 0 6px rgba(150, 120, 255, 0.75), 0 0 12px rgba(150, 120, 255, 0.55), 0 0 18px rgba(150, 120, 255, 0.35);
}

.msg-muted[b-fo1wnhr65g] {
    opacity: 0.15 !important;
    filter: blur(1px) !important;
    pointer-events: none !important;
    text-shadow: none !important;
}

.msg-self[b-fo1wnhr65g] {
    color: #7bb3ff !important;
    text-shadow: 0 0 6px rgba(180, 200, 255, 0.75), 0 0 12px rgba(180, 200, 255, 0.55), 0 0 18px rgba(180, 200, 255, 0.35);
}

.group-msg-red[b-fo1wnhr65g] {
    color: #ff6b6b !important;
    text-shadow: none !important;
}

.group-msg-self-magenta[b-fo1wnhr65g] {
    color: #ff00ff !important;
    font-weight: 800 !important;
    text-shadow: 0 0 6px rgba(255, 0, 255, 0.85), 0 0 12px rgba(255, 0, 255, 0.65), 0 0 18px rgba(255, 0, 255, 0.45), 0 0 26px rgba(255, 0, 255, 0.35);
    letter-spacing: 0.3px;
    filter: saturate(180%);
    transition: all 0.25s ease;
}

.group-msg-gray[b-fo1wnhr65g] {
    color: #999 !important;
    opacity: 0.22 !important;
    filter: blur(0.6px) !important;
    letter-spacing: 0.4px !important;
    font-weight: 200 !important;
    text-shadow: none !important;
    transition: opacity 0.25s ease, filter 0.25s ease;
}
/* /Components/Chat/MessagesBox.razor.rz.scp.css */
/* ============================================================
   MESSAGES BOX — CRT HÍBRIDO PREMIUM
   ============================================================ */

.messages-box[b-cvrabi0rnv] {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
    background: rgba(20, 22, 40, 0.35);
    backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(0, 200, 255, 0.18);
    box-shadow: 0 0 12px rgba(0, 200, 255, 0.10), inset 0 0 18px rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    scroll-behavior: smooth;
}

.messages-inner[b-cvrabi0rnv] {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
    position: relative;
}

/* CRT scanlines + vinheta */
.messages-box[b-cvrabi0rnv]::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle, transparent 60%, rgba(0,0,0,0.25));
    z-index: 2;
}

.messages-box[b-cvrabi0rnv]::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient( to bottom, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 2px, transparent 4px );
    mix-blend-mode: overlay;
    z-index: 3;
}

/* ============================================================
   LIGHT MODE
   ============================================================ */

html[data-theme="light"] .messages-box[b-cvrabi0rnv] {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.10), inset 0 0 12px rgba(255, 255, 255, 0.25);
}

    html[data-theme="light"] .messages-box[b-cvrabi0rnv]::before {
        background: radial-gradient(circle, transparent 60%, rgba(0,0,0,0.15));
    }

    html[data-theme="light"] .messages-box[b-cvrabi0rnv]::after {
        background: repeating-linear-gradient( to bottom, rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 1px, transparent 2px, transparent 4px );
    }

/* ============================================================
   SYSTEM MESSAGE — RELIC GOLD RED GLOW
   ============================================================ */

.system-message-relic[b-cvrabi0rnv] {
    display: table;
    margin: 12px auto;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    letter-spacing: 0.5px;
    background: radial-gradient(circle, rgba(80,0,0,0.55), rgba(40,0,0,0.65));
    border-radius: 14px;
    border: 1px solid rgba(255, 180, 80, 0.55);
    box-shadow: 0 0 12px rgba(255, 80, 0, 0.45), 0 0 22px rgba(255, 150, 50, 0.35), inset 0 0 12px rgba(255, 120, 40, 0.25);
    animation: relicPulse-b-cvrabi0rnv 2.4s infinite ease-in-out;
}

@keyframes relicPulse-b-cvrabi0rnv {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.85;
    }
}
/* /Components/Chat/MyTuningPanel.razor.rz.scp.css */
/* ============================================================
   MY TUNING PANEL — NEON CYAN PREMIUM (DARK MODE)
   ============================================================ */

.mytuning-panel[b-v1oevs893t] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 24px;
    border-radius: 16px;
    background: rgba(10, 14, 28, 0.55);
    border: 1px solid rgba(0, 200, 255, 0.20);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 12px rgba(0, 200, 255, 0.18);
    color: var(--bla-text);
    z-index: 9999;
    animation: panelIn-b-v1oevs893t 0.25s ease-out;
}

    .mytuning-panel h3[b-v1oevs893t] {
        margin-top: 0;
        margin-bottom: 18px;
        font-size: 1.35rem;
        color: var(--bla-accent);
        text-shadow: 0 0 6px rgba(0, 200, 255, 0.35);
    }



.tuning-offline[b-v1oevs893t] {
    opacity: 0.55;
}

.tuning-avatar-offline[b-v1oevs893t] {
    filter: grayscale(100%);
    opacity: 0.75;
}

.tuning-badge-offline[b-v1oevs893t] {
    background: var(--bla-text-muted);
    color: var(--bla-bg);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}






/* Secções */
.tuning-section[b-v1oevs893t] {
    margin-bottom: 22px;
}

.tuning-section-header h4[b-v1oevs893t] {
    margin: 0;
    font-size: 1rem;
    color: var(--bla-text-muted);
}

.tuning-count[b-v1oevs893t] {
    font-size: 0.85rem;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(0, 200, 255, 0.12);
    color: var(--bla-text-muted);
}

/* LISTA COM SCROLL (máx. 2 users) */
.tuning-list[b-v1oevs893t] {
    max-height: 120px;
    overflow-y: auto;
    padding-right: 4px;
    margin-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 200, 255, 0.35) transparent;
}

    .tuning-list[b-v1oevs893t]::-webkit-scrollbar {
        width: 6px;
    }

    .tuning-list[b-v1oevs893t]::-webkit-scrollbar-thumb {
        background: rgba(0, 200, 255, 0.35);
        border-radius: 6px;
    }

        .tuning-list[b-v1oevs893t]::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 200, 255, 0.55);
        }

/* Linhas */
.tuning-row[b-v1oevs893t] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 0 6px rgba(0, 200, 255, 0.12), inset 0 0 6px rgba(0, 200, 255, 0.08);
    transition: 0.2s ease;
}

    .tuning-row:hover[b-v1oevs893t] {
        background: rgba(0, 200, 255, 0.12);
        transform: translateY(-2px);
    }

/* Barras laterais */
.tuning-row-boost[b-v1oevs893t] {
    border-left: 3px solid rgba(0, 200, 255, 0.55);
}

.tuning-row-tune[b-v1oevs893t] {
    border-left: 3px solid rgba(0, 200, 255, 0.35);
}

.tuning-row-mute[b-v1oevs893t] {
    border-left: 3px solid rgba(255, 255, 255, 0.25);
}

/* Avatar */
.tuning-avatar[b-v1oevs893t] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 6px rgba(0, 200, 255, 0.25);
}

/* Nome */
.tuning-name[b-v1oevs893t] {
    font-size: 0.95rem;
}

/* Offline */
.tuning-offline[b-v1oevs893t] {
    opacity: 0.55;
    filter: grayscale(100%);
}

/* Badges */
.tuning-badge[b-v1oevs893t] {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: black;
}

.tuning-badge-boost[b-v1oevs893t] {
    background: rgba(0, 200, 255, 0.55);
}

.tuning-badge-tune[b-v1oevs893t] {
    background: rgba(0, 200, 255, 0.35);
}

.tuning-badge-mute[b-v1oevs893t] {
    background: rgba(255, 255, 255, 0.35);
}

/* Botão remover */
.remove-btn[b-v1oevs893t] {
    margin-left: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--bla-text-muted);
    transition: 0.2s ease;
}

    .remove-btn:hover[b-v1oevs893t] {
        color: var(--bla-accent);
        transform: scale(1.2);
    }

/* Vazio */
.empty[b-v1oevs893t] {
    opacity: 0.7;
    font-size: 0.9rem;
    padding-left: 4px;
}

/* Animação */
@keyframes panelIn-b-v1oevs893t {
    from {
        opacity: 0;
        transform: translate(-50%, -46%) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* BOTÃO FECHAR */
.close-panel-btn[b-v1oevs893t] {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(0, 200, 255, 0.12);
    border: 1px solid rgba(0, 200, 255, 0.35);
    color: var(--bla-accent);
    font-size: 16px;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
    text-shadow: 0 0 6px rgba(0, 200, 255, 0.45);
}

    .close-panel-btn:hover[b-v1oevs893t] {
        background: rgba(0, 200, 255, 0.25);
        transform: scale(1.1);
    }

/* BOTÃO VER TODOS */
.toggle-btn[b-v1oevs893t] {
    margin-top: 6px;
    background: rgba(0, 200, 255, 0.12);
    border: 1px solid rgba(0, 200, 255, 0.35);
    color: var(--bla-accent);
    padding: 4px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: 0.2s ease;
}

    .toggle-btn:hover[b-v1oevs893t] {
        background: rgba(0, 200, 255, 0.25);
        transform: translateY(-2px);
    }

/* EXPANDIR LISTA */
.tuning-list.expanded[b-v1oevs893t] {
    max-height: none;
}


/* ============================================================
   LIGHT MODE — NEON CYAN
   ============================================================ */

html[data-theme="light"] .mytuning-panel[b-v1oevs893t] {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 150, 200, 0.35);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 10px rgba(0, 200, 255, 0.25);
    color: #0a0a0a;
}

html[data-theme="light"] .tuning-row[b-v1oevs893t] {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 0 6px rgba(0, 200, 255, 0.18), inset 0 0 6px rgba(0, 200, 255, 0.12);
}

    html[data-theme="light"] .tuning-row:hover[b-v1oevs893t] {
        background: rgba(0, 200, 255, 0.18);
    }

html[data-theme="light"] .tuning-row-mute[b-v1oevs893t] {
    border-left: 3px solid rgba(0, 0, 0, 0.25);
}

html[data-theme="light"] .tuning-badge-mute[b-v1oevs893t] {
    background: rgba(0, 0, 0, 0.25);
    color: white;
}

html[data-theme="light"] .remove-btn[b-v1oevs893t] {
    color: #555;
}

    html[data-theme="light"] .remove-btn:hover[b-v1oevs893t] {
        color: rgba(0, 200, 255, 1);
    }
/* /Components/Chat/PrivateChatWindow.razor.rz.scp.css */
/* ============================================================
   PRIVATE CHAT WINDOW — NEON CYAN PREMIUM
   ============================================================ */

.pm-window[b-nsti7uj56w] {
    position: fixed;
    width: 320px;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    /* Glassmorphism refinado */
    background: rgba(10, 14, 28, 0.55);
    border: 1px solid rgba(0, 200, 255, 0.18);
    border-radius: 14px;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    /* Sombra premium */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 12px rgba(0, 200, 255, 0.15);
    overflow: hidden;
    z-index: 9998;
    animation: pmFadeIn-b-nsti7uj56w 0.18s ease-out;
}

@keyframes pmFadeIn-b-nsti7uj56w {
    0% {
        opacity: 0;
        transform: translateY(6px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================================
   HEADER
   ============================================================ */

.pm-header[b-nsti7uj56w] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 200, 255, 0.18);
    cursor: grab;
    user-select: none;
}

    .pm-header span[b-nsti7uj56w] {
        font-weight: 600;
        color: var(--bla-text);
        text-shadow: 0 0 6px rgba(0, 200, 255, 0.35);
    }

.pm-controls[b-nsti7uj56w] {
    display: flex;
    gap: 6px;
}

    .pm-controls button[b-nsti7uj56w] {
        width: 26px;
        height: 26px;
        border-radius: 6px;
        border: 1px solid rgba(0, 200, 255, 0.25);
        background: rgba(0, 200, 255, 0.10);
        color: var(--bla-text);
        cursor: pointer;
        transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
    }

        .pm-controls button:hover[b-nsti7uj56w] {
            background: rgba(0, 200, 255, 0.22);
            transform: translateY(-1px);
            box-shadow: 0 0 8px rgba(0, 200, 255, 0.35);
        }

        .pm-controls button:active[b-nsti7uj56w] {
            transform: translateY(0);
        }

.pm-header-avatar[b-nsti7uj56w] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
}





/* ============================================================
   MESSAGES AREA
   ============================================================ */

.pm-messages[b-nsti7uj56w] {
    flex: 1;
    overflow-y: auto;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 200, 255, 0.35) transparent;
}

    .pm-messages[b-nsti7uj56w]::-webkit-scrollbar {
        width: 6px;
    }

    .pm-messages[b-nsti7uj56w]::-webkit-scrollbar-thumb {
        background: rgba(0, 200, 255, 0.35);
        border-radius: 6px;
    }

        .pm-messages[b-nsti7uj56w]::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 200, 255, 0.55);
        }

/* Mensagem base */
.pm-msg[b-nsti7uj56w] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 85%;
    line-height: 1.35;
    color: var(--bla-text);
    transition: background 0.15s ease, border-color 0.15s ease;
}

/* Avatar */
.pm-avatar[b-nsti7uj56w] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

/* Self message */
.pm-self[b-nsti7uj56w] {
    align-self: flex-end;
    background: rgba(0, 200, 255, 0.18);
    border-color: rgba(0, 200, 255, 0.35);
    box-shadow: 0 0 6px rgba(0, 200, 255, 0.25), inset 0 0 6px rgba(0, 200, 255, 0.20);
}

/* Other message */
.pm-other[b-nsti7uj56w] {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

/* ============================================================
   INPUT AREA
   ============================================================ */

.pm-input[b-nsti7uj56w] {
    display: flex;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid rgba(0, 200, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

    .pm-input input[b-nsti7uj56w] {
        flex: 1;
        padding: 8px 10px;
        border-radius: 8px;
        border: 1px solid rgba(0, 200, 255, 0.22);
        background: rgba(255, 255, 255, 0.08);
        color: var(--bla-text);
        outline: none;
        transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    }

        .pm-input input:focus[b-nsti7uj56w] {
            border-color: rgba(0, 200, 255, 0.45);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 8px rgba(0, 200, 255, 0.35);
        }

    .pm-input button[b-nsti7uj56w] {
        padding: 8px 14px;
        border-radius: 8px;
        border: 1px solid rgba(0, 200, 255, 0.25);
        background: rgba(0, 200, 255, 0.12);
        color: var(--bla-text);
        cursor: pointer;
        transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
    }

        .pm-input button:hover[b-nsti7uj56w] {
            background: rgba(0, 200, 255, 0.22);
            transform: translateY(-1px);
            box-shadow: 0 0 8px rgba(0, 200, 255, 0.35);
        }

        .pm-input button:active[b-nsti7uj56w] {
            transform: translateY(0);
        }
/* ============================================================
   LIGHT MODE — PRIVATE CHAT WINDOW (NEON CYAN)
   ============================================================ */

html[data-theme="light"] .pm-window[b-nsti7uj56w] {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 150, 200, 0.35);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15), 0 0 10px rgba(0, 200, 255, 0.25);
}

/* HEADER */
html[data-theme="light"] .pm-header[b-nsti7uj56w] {
    background: rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(0, 150, 200, 0.30);
}

    html[data-theme="light"] .pm-header span[b-nsti7uj56w] {
        color: #0a0a0a;
        text-shadow: 0 0 4px rgba(0, 200, 255, 0.35);
    }

html[data-theme="light"] .pm-controls button[b-nsti7uj56w] {
    border: 1px solid rgba(0, 150, 200, 0.35);
    background: rgba(0, 150, 200, 0.12);
    color: #0a0a0a;
}

    html[data-theme="light"] .pm-controls button:hover[b-nsti7uj56w] {
        background: rgba(0, 200, 255, 0.22);
        box-shadow: 0 0 8px rgba(0, 200, 255, 0.35);
    }

/* MESSAGES AREA */
html[data-theme="light"] .pm-messages[b-nsti7uj56w] {
    scrollbar-color: rgba(0, 150, 200, 0.45) transparent;
}

    html[data-theme="light"] .pm-messages[b-nsti7uj56w]::-webkit-scrollbar-thumb {
        background: rgba(0, 150, 200, 0.45);
    }

        html[data-theme="light"] .pm-messages[b-nsti7uj56w]::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 200, 255, 0.65);
        }

/* BASE MESSAGE */
html[data-theme="light"] .pm-msg[b-nsti7uj56w] {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.10);
    color: #0a0a0a;
}

/* SELF MESSAGE */
html[data-theme="light"] .pm-self[b-nsti7uj56w] {
    background: rgba(0, 200, 255, 0.22);
    border-color: rgba(0, 200, 255, 0.45);
    box-shadow: 0 0 6px rgba(0, 200, 255, 0.35), inset 0 0 6px rgba(0, 200, 255, 0.25);
}

/* OTHER MESSAGE */
html[data-theme="light"] .pm-other[b-nsti7uj56w] {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(0, 0, 0, 0.12);
}

/* INPUT AREA */
html[data-theme="light"] .pm-input[b-nsti7uj56w] {
    background: rgba(255, 255, 255, 0.55);
    border-top: 1px solid rgba(0, 150, 200, 0.30);
}

    html[data-theme="light"] .pm-input input[b-nsti7uj56w] {
        background: rgba(255, 255, 255, 0.75);
        border: 1px solid rgba(0, 150, 200, 0.35);
        color: #0a0a0a;
    }

        html[data-theme="light"] .pm-input input:focus[b-nsti7uj56w] {
            border-color: rgba(0, 200, 255, 0.55);
            background: rgba(255, 255, 255, 0.90);
            box-shadow: 0 0 8px rgba(0, 200, 255, 0.35);
        }

    html[data-theme="light"] .pm-input button[b-nsti7uj56w] {
        background: rgba(0, 150, 200, 0.12);
        border: 1px solid rgba(0, 150, 200, 0.35);
        color: #0a0a0a;
    }

        html[data-theme="light"] .pm-input button:hover[b-nsti7uj56w] {
            background: rgba(0, 200, 255, 0.22);
            box-shadow: 0 0 8px rgba(0, 200, 255, 0.35);
        }
/* /Components/Chat/UserRow.razor.rz.scp.css */
/* ============================================================
   USER ROW — CSS ISOLADO E PREMIUM
   ============================================================ */

.user-row[b-huj3cs59hl] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 6px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
    animation: userRowFadeIn-b-huj3cs59hl 0.18s ease-out;
}

@keyframes userRowFadeIn-b-huj3cs59hl {
    0% {
        opacity: 0;
        transform: translateY(2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-row:hover[b-huj3cs59hl] {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
}

/* Avatar */
.user-row-avatar[b-huj3cs59hl] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

/* Nickname */
.user-row-nick[b-huj3cs59hl] {
    font-size: 14px;
    color: var(--bla-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Badges container */
.user-row-badges[b-huj3cs59hl] {
    margin-left: auto;
    display: flex;
    gap: 4px;
    font-size: 14px;
}

/* Badges individuais */
.badge-boost[b-huj3cs59hl] {
    color: #00eaff;
}

.badge-tune[b-huj3cs59hl] {
    color: #9d7dff;
}

.badge-mute[b-huj3cs59hl] {
    color: #ff6b6b;
}

.badge-pm[b-huj3cs59hl] {
    color: #00aaff;
    font-size: 10px;
    margin-right: 2px;
}

/* ============================================================
   ESTADOS VISUAIS
   ============================================================ */

/* Boosted */
.user-row.boosted[b-huj3cs59hl] {
    background: rgba(0, 200, 255, 0.12);
}

/* Tuned */
.user-row.tuned[b-huj3cs59hl] {
    background: rgba(150, 120, 255, 0.12);
}

/* Muted */
.user-row.muted[b-huj3cs59hl] {
    opacity: 0.45;
}

/* Em PM contigo */
.user-row.in-pm[b-huj3cs59hl] {
    box-shadow: 0 0 10px rgba(0, 160, 255, 0.35);
    background: rgba(0, 160, 255, 0.10);
}

/* No teu grupo */
.user-row.in-group[b-huj3cs59hl] {
    border: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
}
/* /Components/Chat/UsersColumn.razor.rz.scp.css */
/* ============================================================
   USERS COLUMN — CSS ISOLADO
   ============================================================ */

.chat-users[b-gteipkgupr] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    backdrop-filter: blur(8px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.08);
}

    /* Cada secção interna */
    .chat-users > *[b-gteipkgupr] {
        flex-shrink: 0;
    }

    /* GroupInfo, HeaderOnline, GroupActions */
    .chat-users > div[b-gteipkgupr] {
        padding: 6px 0;
    }

    /* UsersList deve ocupar o espaço restante */
    .chat-users > UsersList[b-gteipkgupr] {
        flex: 1;
        overflow-y: auto;
    }

/* HoverCard — posicionamento absoluto */
userhovercard[b-gteipkgupr] {
    position: absolute;
    z-index: 999;
}
/* /Components/Chat/UsersList.razor.rz.scp.css */
/* ============================================================
   USERS LIST — CSS ISOLADO (VERSÃO CORRETA)
   ============================================================ */

.users-list[b-h4bnnpj4rp] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* UsersList deve ser transparente.
       O cartão premium é o UsersColumn.
    */
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
}
/* /Components/Dedic/EnviarDedicModal.razor.rz.scp.css */
/* BACKDROP */
.dedic-backdrop[b-vco5l2tku6] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn-b-vco5l2tku6 0.25s ease-out;
}

@keyframes fadeIn-b-vco5l2tku6 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* MODAL */
.dedic-modal[b-vco5l2tku6] {
    width: 420px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(14px) saturate(160%);
    animation: popupZoom-b-vco5l2tku6 0.25s ease-out;
}

@keyframes popupZoom-b-vco5l2tku6 {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* HEADER */
.dedic-header[b-vco5l2tku6] {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

    .dedic-header h2[b-vco5l2tku6] {
        margin: 0;
        font-size: 1.4rem;
        color: #ffd700;
        text-shadow: 0 0 8px rgba(255,215,0,0.45);
    }

.dedic-to[b-vco5l2tku6] {
    font-size: 1rem;
    opacity: 0.8;
}

/* TEMPLATES */
.dedic-templates[b-vco5l2tku6] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.template-btn[b-vco5l2tku6] {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    padding: 6px 10px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    gap: 6px;
    align-items: center;
    transition: 0.2s ease;
}

    .template-btn:hover[b-vco5l2tku6] {
        background: rgba(255,255,255,0.20);
        transform: scale(1.05);
    }

/* TEXTAREA */
.dedic-textarea[b-vco5l2tku6] {
    width: 100%;
    min-height: 80px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 10px;
    padding: 10px;
    color: #fff;
    resize: none;
    margin-bottom: 12px;
}

/* OFERTA */
.dedic-oferta[b-vco5l2tku6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.dedic-input[b-vco5l2tku6] {
    width: 80px;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.10);
    color: #fff;
}

/* ACTIONS */
.dedic-actions[b-vco5l2tku6] {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.btn-enviar[b-vco5l2tku6] {
    background: #ffd700;
    color: #000;
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s ease;
}

    .btn-enviar:hover[b-vco5l2tku6] {
        background: #ffea6a;
        transform: scale(1.05);
    }

.btn-cancelar[b-vco5l2tku6] {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    transition: 0.2s ease;
}

    .btn-cancelar:hover[b-vco5l2tku6] {
        background: rgba(255,255,255,0.20);
    }

.dedic-custo[b-vco5l2tku6] {
    margin-top: -6px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    opacity: 0.85;
}

/* 🌙 DARK MODE — CONTRASTE CORRIGIDO */

:root[data-theme="dark"] .dedic-modal[b-vco5l2tku6] {
    background: rgba(28, 28, 36, 0.78); /* ligeiramente mais claro */
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 0 25px rgba(255,215,0,0.25);
    color: #f8f8f8; /* texto principal MUITO mais vivo */
}

:root[data-theme="dark"] .dedic-item[b-vco5l2tku6] {
    background: rgba(38, 38, 48, 0.75); /* mais claro e mais sólido */
    border-color: rgba(255,255,255,0.15);
    color: #f2f2f2; /* texto interno mais claro */
}

:root[data-theme="dark"] .dedic-header h2[b-vco5l2tku6] {
    color: #ffe066; /* dourado mais vivo */
    text-shadow: 0 0 12px rgba(255,215,0,0.55);
}

:root[data-theme="dark"] .dedic-msg[b-vco5l2tku6] {
    color: #ffffff; /* branco total para máxima legibilidade */
}

:root[data-theme="dark"] .dedic-date[b-vco5l2tku6] {
    color: #d0d0d0; /* cinza claro */
}

:root[data-theme="dark"] .dedic-avatar[b-vco5l2tku6] {
    border-color: rgba(255,215,0,0.65);
    box-shadow: 0 0 12px rgba(255,215,0,0.55);
}

:root[data-theme="dark"] .dedic-item-extra[b-vco5l2tku6] {
    color: #ffe066; /* dourado mais forte */
}

:root[data-theme="dark"] .dedic-blazoids[b-vco5l2tku6] {
    color: #d29bff; /* roxo mais vibrante */
}

:root[data-theme="dark"] .dedic-delete-btn[b-vco5l2tku6] {
    background: rgba(255, 80, 80, 0.25);
    border-color: rgba(255, 80, 80, 0.45);
    color: #ff8a8a; /* vermelho mais vivo */
}

    :root[data-theme="dark"] .dedic-delete-btn:hover[b-vco5l2tku6] {
        background: rgba(255, 80, 80, 0.40);
    }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ============================================================
   LAYOUT BASE
   ============================================================ */

.page[b-0533coucjp] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-0533coucjp] {
    flex: 1;
}

.sidebar[b-0533coucjp] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.bla-main[b-0533coucjp] {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.bla-content[b-0533coucjp] {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

/* ============================================================
   TOPBAR
   ============================================================ */

.topbar-icon[b-0533coucjp] {
    position: relative;
    cursor: pointer;
    margin-left: 12px;
    font-size: 20px;
}

.notif-badge[b-0533coucjp] {
    position: absolute;
    top: -4px;
    right: -6px;
    background: #ff3366;
    color: white;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 10px;
}


/* ============================================================
   MODAL DE DEDICATÓRIA
   ============================================================ */

.modal-backdrop[b-0533coucjp] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    z-index: 9000;
}

.modal-dedic[b-0533coucjp] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--surface);
    padding: 22px;
    border-radius: 14px;
    width: 350px;
    max-height: 75vh;
    overflow-y: auto;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
    animation: modalFade-b-0533coucjp 0.25s ease-out;
    z-index: 9999;
}

@keyframes modalFade-b-0533coucjp {
    from {
        opacity: 0;
        transform: translate(-50%, -46%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-dedic textarea[b-0533coucjp] {
    width: 100%;
    min-height: 80px;
    border-radius: 8px;
    padding: 8px;
    resize: vertical;
}

.modal-dedic select[b-0533coucjp],
.modal-dedic input[type="number"][b-0533coucjp] {
    width: 100%;
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.btn-enviar[b-0533coucjp] {
    width: 100%;
    padding: 10px;
    background: #6a00ff;
    color: white;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 600;
}

    .btn-enviar:hover[b-0533coucjp] {
        background: #7d1aff;
    }

.btn-cancelar[b-0533coucjp] {
    width: 100%;
    padding: 10px;
    background: #444;
    color: white;
    border: none;
    border-radius: 8px;
    margin-top: 8px;
    cursor: pointer;
}

    .btn-cancelar:hover[b-0533coucjp] {
        background: #555;
    }

/* ============================================================
   BLAZOIDS GLOW PREMIUM
   ============================================================ */

.blazoids-glow[b-0533coucjp] {
    animation: blazoidsGlow-b-0533coucjp 1.2s ease-out;
}

@keyframes blazoidsGlow-b-0533coucjp {
    0% {
        text-shadow: 0 0 0px #b300ff;
        transform: scale(1);
    }

    40% {
        text-shadow: 0 0 12px #d400ff;
        transform: scale(1.15);
    }

    100% {
        text-shadow: 0 0 0px #b300ff;
        transform: scale(1);
    }
}

/* ============================================================
   TOAST — “💸 Recebeste Blazoids!”
   ============================================================ */

.blazoids-toast[b-0533coucjp] {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #6a00ff;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(106, 0, 255, 0.6);
    z-index: 9999;
    animation: toastSlide-b-0533coucjp 0.4s ease-out, toastFadeOut-b-0533coucjp 0.4s ease-in 2.1s forwards;
}

@keyframes toastSlide-b-0533coucjp {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastFadeOut-b-0533coucjp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/*BANNER DE ERRO BLAZOR UI*/
#blazor-error-ui[b-0533coucjp] {
    display: none;
    background: #ffdddd;
    color: #a33;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    border-top: 2px solid #a33;
}

    #blazor-error-ui .dismiss[b-0533coucjp] {
        cursor: pointer;
        float: right;
        margin-right: 10px;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-g5kkwjw6l7] {
    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-g5kkwjw6l7] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-g5kkwjw6l7] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-g5kkwjw6l7] {
    font-size: 1.1rem;
}

.bi[b-g5kkwjw6l7] {
    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-g5kkwjw6l7] {
    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-g5kkwjw6l7] {
    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-g5kkwjw6l7] {
    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-g5kkwjw6l7] {
    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-g5kkwjw6l7] {
    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-g5kkwjw6l7] {
    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-g5kkwjw6l7] {
    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-g5kkwjw6l7] {
    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-g5kkwjw6l7] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-g5kkwjw6l7] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-g5kkwjw6l7] {
        padding-bottom: 1rem;
    }

    .nav-item[b-g5kkwjw6l7]  .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-g5kkwjw6l7]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-g5kkwjw6l7]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-g5kkwjw6l7] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-g5kkwjw6l7] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-g5kkwjw6l7] {
        display: none;
    }

    .nav-scrollable[b-g5kkwjw6l7] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/Admin/AdminConsole.razor.rz.scp.css */
/* ============================================================
   TÍTULO
============================================================ */
.admin-title[b-bwema1vdqg] {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffcc00;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.4);
}

/* ============================================================
   TABS — premium, vidro, animação
============================================================ */
.admin-tabs[b-bwema1vdqg] {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.admin-tab[b-bwema1vdqg] {
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #eee;
    transition: 0.25s ease;
}

    .admin-tab:hover[b-bwema1vdqg] {
        background: rgba(255, 255, 255, 0.18);
        transform: translateY(-2px);
    }

    .admin-tab.active[b-bwema1vdqg] {
        background: linear-gradient(90deg, #ffcc00, #ff9d00);
        color: #000;
        border-color: rgba(255, 204, 0, 0.6);
        box-shadow: 0 0 14px rgba(255, 204, 0, 0.45);
        transform: translateY(-2px);
    }

/* ============================================================
   CONTENT AREA — vidro leve
============================================================ */
.admin-content[b-bwema1vdqg] {
    padding: 25px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px) brightness(1.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45), 0 0 25px rgba(255, 204, 0, 0.15);
    animation: fadeIn-b-bwema1vdqg 0.35s ease-out;
}

@keyframes fadeIn-b-bwema1vdqg {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   TEMA CLARO
============================================================ */
html[data-theme="light"] .admin-title[b-bwema1vdqg] {
    color: #cc8800;
    text-shadow: none;
}

html[data-theme="light"] .admin-tab[b-bwema1vdqg] {
    background: rgba(255, 255, 255, 0.65);
    color: #333;
    border-color: rgba(0, 0, 0, 0.1);
}

    html[data-theme="light"] .admin-tab:hover[b-bwema1vdqg] {
        background: rgba(255, 255, 255, 0.85);
    }

    html[data-theme="light"] .admin-tab.active[b-bwema1vdqg] {
        background: rgba(255, 204, 0, 0.85);
        color: #000;
    }

html[data-theme="light"] .admin-content[b-bwema1vdqg] {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px) brightness(1.02);
    color: #222;
}
/* /Components/Pages/Admin/AdminMail.razor.rz.scp.css */
/* ============================
   TÍTULOS E SECÇÕES
   ============================ */

.mail-title[b-gxb4zaf5vn] {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--blabla-primary, #4a6cf7);
}

html[data-theme="dark"] .mail-title[b-gxb4zaf5vn] {
    color: #7da2ff;
}

.mail-section[b-gxb4zaf5vn] {
    margin-bottom: 40px;
}

.mail-subtitle[b-gxb4zaf5vn] {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

html[data-theme="dark"] .mail-subtitle[b-gxb4zaf5vn] {
    color: #e6e6e6;
}

/* ============================
   MENSAGENS VAZIAS
   ============================ */

.mail-empty[b-gxb4zaf5vn] {
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    color: #777;
    font-size: 15px;
}

html[data-theme="dark"] .mail-empty[b-gxb4zaf5vn] {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #bdbdbd;
}

/* ============================
   CARTÕES PREMIUM
   ============================ */

.mail-item[b-gxb4zaf5vn] {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .mail-item:hover[b-gxb4zaf5vn] {
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(0,0,0,0.12);
    }

/* ⭐ Tema escuro premium */
html[data-theme="dark"] .mail-item[b-gxb4zaf5vn] {
    background: rgba(20,20,28,0.55);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 18px rgba(0,0,0,0.45);
    backdrop-filter: blur(12px) saturate(160%);
}

    html[data-theme="dark"] .mail-item:hover[b-gxb4zaf5vn] {
        box-shadow: 0 6px 26px rgba(0,0,0,0.65);
    }

/* ============================
   HEADER, SUBJECT, META
   ============================ */

.mail-header[b-gxb4zaf5vn] {
    margin-bottom: 10px;
}

.mail-subject[b-gxb4zaf5vn] {
    font-size: 17px;
    font-weight: 700;
    color: #222;
}

html[data-theme="dark"] .mail-subject[b-gxb4zaf5vn] {
    color: #f2f2f2;
}

.mail-meta[b-gxb4zaf5vn] {
    font-size: 13px;
    color: #666;
}

html[data-theme="dark"] .mail-meta[b-gxb4zaf5vn] {
    color: #bdbdbd;
}

/* ============================
   CORPO DA MENSAGEM
   ============================ */

.mail-body[b-gxb4zaf5vn] {
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    white-space: pre-wrap;
}

html[data-theme="dark"] .mail-body[b-gxb4zaf5vn] {
    color: #dcdcdc;
}


.mail-filters[b-gxb4zaf5vn] {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.mail-filter-button[b-gxb4zaf5vn] {
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.12);
    background: #f5f5f5;
    cursor: pointer;
    font-size: 14px;
}

html[data-theme="dark"] .mail-filter-button[b-gxb4zaf5vn] {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: #e6e6e6;
}

.mail-badge-unread[b-gxb4zaf5vn] {
    margin-left: 8px;
    font-size: 12px;
    color: #d32f2f;
}

.mail-actions[b-gxb4zaf5vn] {
    margin-top: 10px;
    display: flex;
    gap: 8px;
}

    .mail-actions button[b-gxb4zaf5vn] {
        padding: 6px 12px;
        border-radius: 8px;
        border: 1px solid rgba(0,0,0,0.12);
        background: #f5f5f5;
        cursor: pointer;
        font-size: 13px;
    }

html[data-theme="dark"] .mail-actions button[b-gxb4zaf5vn] {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: #e6e6e6;
}


.delete-button[b-gxb4zaf5vn] {
    padding: 6px 12px;
    border-radius: 8px;
    background: #d9534f;
    color: white;
    border: none;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .delete-button:hover[b-gxb4zaf5vn] {
        background: #c9302c;
    }

    .delete-button:active[b-gxb4zaf5vn] {
        transform: scale(0.97);
    }

html[data-theme="dark"] .delete-button[b-gxb4zaf5vn] {
    background: #b33632;
}

    html[data-theme="dark"] .delete-button:hover[b-gxb4zaf5vn] {
        background: #992b27;
    }
/* /Components/Pages/Admin/AdminMailCompose.razor.rz.scp.css */
/* ============================
   TÍTULO
   ============================ */

.compose-title[b-zyzq1seonl] {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--blabla-primary, #4a6cf7);
}

html[data-theme="dark"] .compose-title[b-zyzq1seonl] {
    color: #7da2ff;
}

/* ============================
   CARTÃO PREMIUM
   ============================ */

.compose-card[b-zyzq1seonl] {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    border: 1px solid rgba(0,0,0,0.06);
}

/* ⭐ Tema escuro premium */
html[data-theme="dark"] .compose-card[b-zyzq1seonl] {
    background: rgba(20,20,28,0.55);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 18px rgba(0,0,0,0.45);
    backdrop-filter: blur(12px) saturate(160%);
}

/* ============================
   CAMPOS
   ============================ */

.compose-field[b-zyzq1seonl] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compose-label[b-zyzq1seonl] {
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

html[data-theme="dark"] .compose-label[b-zyzq1seonl] {
    color: #e6e6e6;
}

.compose-input[b-zyzq1seonl],
.compose-select[b-zyzq1seonl],
.compose-textarea[b-zyzq1seonl] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.2s ease;
}

html[data-theme="dark"] .compose-input[b-zyzq1seonl],
html[data-theme="dark"] .compose-select[b-zyzq1seonl],
html[data-theme="dark"] .compose-textarea[b-zyzq1seonl] {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #e6e6e6;
}

.compose-input:focus[b-zyzq1seonl],
.compose-select:focus[b-zyzq1seonl],
.compose-textarea:focus[b-zyzq1seonl] {
    border-color: var(--blabla-primary, #4a6cf7);
    box-shadow: 0 0 0 3px rgba(74,108,247,0.25);
    background: #fff;
}

html[data-theme="dark"] .compose-input:focus[b-zyzq1seonl],
html[data-theme="dark"] .compose-select:focus[b-zyzq1seonl],
html[data-theme="dark"] .compose-textarea:focus[b-zyzq1seonl] {
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(74,108,247,0.35);
}

.compose-textarea[b-zyzq1seonl] {
    min-height: 160px;
    resize: vertical;
}

/* ============================
   BOTÃO PREMIUM
   ============================ */

.compose-button[b-zyzq1seonl] {
    padding: 14px 26px;
    background: var(--blabla-primary, #4a6cf7);
    color: white;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .compose-button:hover[b-zyzq1seonl] {
        background: #3d5be0;
    }

    .compose-button:active[b-zyzq1seonl] {
        transform: scale(0.97);
    }
/* /Components/Pages/Admin/AdminMailRead.razor.rz.scp.css */
/* ============================
   TÍTULO
   ============================ */

.compose-title[b-hcyfkvr9aj] {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--blabla-primary, #4a6cf7);
}

html[data-theme="dark"] .compose-title[b-hcyfkvr9aj] {
    color: #7da2ff;
}

/* ============================
   CARTÃO PREMIUM
   ============================ */

.compose-card[b-hcyfkvr9aj] {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    border: 1px solid rgba(0,0,0,0.06);
}

/* ⭐ Tema escuro premium */
html[data-theme="dark"] .compose-card[b-hcyfkvr9aj] {
    background: rgba(20,20,28,0.55);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 18px rgba(0,0,0,0.45);
    backdrop-filter: blur(12px) saturate(160%);
}

/* ============================
   CAMPOS
   ============================ */

.compose-field[b-hcyfkvr9aj] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compose-label[b-hcyfkvr9aj] {
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

html[data-theme="dark"] .compose-label[b-hcyfkvr9aj] {
    color: #e6e6e6;
}

.compose-input[b-hcyfkvr9aj],
.compose-select[b-hcyfkvr9aj],
.compose-textarea[b-hcyfkvr9aj] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.2s ease;
}

html[data-theme="dark"] .compose-input[b-hcyfkvr9aj],
html[data-theme="dark"] .compose-select[b-hcyfkvr9aj],
html[data-theme="dark"] .compose-textarea[b-hcyfkvr9aj] {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #e6e6e6;
}

.compose-input:focus[b-hcyfkvr9aj],
.compose-select:focus[b-hcyfkvr9aj],
.compose-textarea:focus[b-hcyfkvr9aj] {
    border-color: var(--blabla-primary, #4a6cf7);
    box-shadow: 0 0 0 3px rgba(74,108,247,0.25);
    background: #fff;
}

html[data-theme="dark"] .compose-input:focus[b-hcyfkvr9aj],
html[data-theme="dark"] .compose-select:focus[b-hcyfkvr9aj],
html[data-theme="dark"] .compose-textarea:focus[b-hcyfkvr9aj] {
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(74,108,247,0.35);
}

.compose-textarea[b-hcyfkvr9aj] {
    min-height: 160px;
    resize: vertical;
}

/* ============================
   BOTÃO PREMIUM
   ============================ */

.compose-button[b-hcyfkvr9aj] {
    padding: 14px 26px;
    background: var(--blabla-primary, #4a6cf7);
    color: white;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .compose-button:hover[b-hcyfkvr9aj] {
        background: #3d5be0;
    }

    .compose-button:active[b-hcyfkvr9aj] {
        transform: scale(0.97);
    }
/* /Components/Pages/Admin/AdminMailReply.razor.rz.scp.css */
/* ============================
   TÍTULO
   ============================ */

.compose-title[b-tc8vmq61wv] {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--blabla-primary, #4a6cf7);
}

html[data-theme="dark"] .compose-title[b-tc8vmq61wv] {
    color: #7da2ff;
}

/* ============================
   CARTÃO PREMIUM
   ============================ */

.compose-card[b-tc8vmq61wv] {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    border: 1px solid rgba(0,0,0,0.06);
}

/* ⭐ Tema escuro premium */
html[data-theme="dark"] .compose-card[b-tc8vmq61wv] {
    background: rgba(20,20,28,0.55);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 18px rgba(0,0,0,0.45);
    backdrop-filter: blur(12px) saturate(160%);
}

/* ============================
   CAMPOS
   ============================ */

.compose-field[b-tc8vmq61wv] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compose-label[b-tc8vmq61wv] {
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

html[data-theme="dark"] .compose-label[b-tc8vmq61wv] {
    color: #e6e6e6;
}

.compose-input[b-tc8vmq61wv],
.compose-textarea[b-tc8vmq61wv] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.2s ease;
}

html[data-theme="dark"] .compose-input[b-tc8vmq61wv],
html[data-theme="dark"] .compose-textarea[b-tc8vmq61wv] {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #e6e6e6;
}

.compose-input:focus[b-tc8vmq61wv],
.compose-textarea:focus[b-tc8vmq61wv] {
    border-color: var(--blabla-primary, #4a6cf7);
    box-shadow: 0 0 0 3px rgba(74,108,247,0.25);
    background: #fff;
}

html[data-theme="dark"] .compose-input:focus[b-tc8vmq61wv],
html[data-theme="dark"] .compose-textarea:focus[b-tc8vmq61wv] {
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(74,108,247,0.35);
}

.compose-textarea[b-tc8vmq61wv] {
    min-height: 160px;
    resize: vertical;
}

/* ============================
   BOTÃO PREMIUM
   ============================ */

.compose-button[b-tc8vmq61wv] {
    padding: 14px 26px;
    background: var(--blabla-primary, #4a6cf7);
    color: white;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .compose-button:hover[b-tc8vmq61wv] {
        background: #3d5be0;
    }

    .compose-button:active[b-tc8vmq61wv] {
        transform: scale(0.97);
    }
/* /Components/Pages/Admin/AdminSettings.razor.rz.scp.css */
/* Container geral da página de settings */
h3[b-hwpu09d289] {
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 600;
}

/* Empacotar label + input + botão num bloco vertical */
label[b-hwpu09d289] {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
}

input[type="number"][b-hwpu09d289] {
    width: 160px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #c0c4cc;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 12px;
}

    input[type="number"]:focus[b-hwpu09d289] {
        border-color: #4a90e2;
        box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.25);
    }

/* Botão Guardar */
button[b-hwpu09d289] {
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    background: #4a90e2;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

    button:hover[b-hwpu09d289] {
        background: #3b7ac0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    }

    button:active[b-hwpu09d289] {
        transform: scale(0.97);
    }

/* Tema escuro */
html[data-theme="dark"] h3[b-hwpu09d289] {
    color: #f5f5f5;
}

html[data-theme="dark"] label[b-hwpu09d289] {
    color: #dcdcdc;
}

html[data-theme="dark"] input[type="number"][b-hwpu09d289] {
    background: #1f2430;
    border-color: #3a3f4b;
    color: #f5f5f5;
}

    html[data-theme="dark"] input[type="number"]:focus[b-hwpu09d289] {
        border-color: #4a90e2;
        box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.35);
    }

html[data-theme="dark"] button[b-hwpu09d289] {
    background: #4a90e2;
    color: #fff;
}
/* /Components/Pages/Admin/Tabs/ActionsTab.razor.rz.scp.css */
/* ============================================================
   BLOCO SEM UTILIZADOR SELECIONADO
============================================================ */
.admin-no-user[b-dmxxalut69] {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
    opacity: 0.8;
    border: 1px dashed rgba(255,255,255,0.25);
}



/* ============================================================
   CONTAINER PRINCIPAL
============================================================ */
.admin-actions-container[b-dmxxalut69] {
    display: flex;
    flex-direction: column;
    gap: 25px;
}



/* ============================================================
   UTILIZADOR SELECIONADO
============================================================ */
.admin-selected-user[b-dmxxalut69] {
    background: rgba(255,255,255,0.08);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.25);
}

.user-label[b-dmxxalut69] {
    font-weight: 600;
    margin-right: 10px;
}

.user-id[b-dmxxalut69] {
    font-weight: 700;
    color: #ffcc00;
}

.user-extra[b-dmxxalut69] {
    margin-top: 10px;
    font-size: 0.95rem;
}

.ban-info[b-dmxxalut69] {
    margin-top: 8px;
    padding: 6px 10px;
    background: rgba(255,0,0,0.25);
    border-left: 4px solid #ff4444;
    border-radius: 6px;
    font-weight: 600;
}



/* ============================================================
   CAIXAS ADMINISTRATIVAS
============================================================ */
.admin-box[b-dmxxalut69] {
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 0 14px rgba(0,0,0,0.25);
}

.danger-box[b-dmxxalut69] {
    background: rgba(255,0,0,0.15);
    border-left: 5px solid #ff4444;
}

.warning-box[b-dmxxalut69] {
    background: rgba(255,165,0,0.15);
    border-left: 5px solid #ffaa33;
}

.admin-box h4[b-dmxxalut69] {
    margin-bottom: 10px;
    font-weight: 700;
}

.full-width[b-dmxxalut69] {
    width: 100%;
}



/* ============================================================
   FORMULÁRIOS
============================================================ */
.form-group[b-dmxxalut69] {
    margin-bottom: 15px;
}

    .form-group label[b-dmxxalut69] {
        font-weight: 600;
        margin-bottom: 6px;
        display: block;
    }

.form-control[b-dmxxalut69] {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px;
}

    .form-control:focus[b-dmxxalut69] {
        outline: none;
        border-color: #ffcc00;
    }

.permanent-label[b-dmxxalut69] {
    font-weight: 700;
    color: #ffcc00;
}



/* ============================================================
   BOTÕES
============================================================ */
.btn-danger[b-dmxxalut69] {
    background: rgba(255,0,0,0.35);
    border: 1px solid rgba(255,0,0,0.55);
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

    .btn-danger:hover[b-dmxxalut69] {
        background: rgba(255,0,0,0.55);
    }

.btn-warning[b-dmxxalut69] {
    background: rgba(255,165,0,0.35);
    border: 1px solid rgba(255,165,0,0.55);
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

    .btn-warning:hover[b-dmxxalut69] {
        background: rgba(255,165,0,0.55);
    }

.btn-success[b-dmxxalut69] {
    background: rgba(0,200,0,0.35);
    border: 1px solid rgba(0,200,0,0.55);
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

    .btn-success:hover[b-dmxxalut69] {
        background: rgba(0,200,0,0.55);
    }



/* ============================================================
   FEEDBACK
============================================================ */
.admin-feedback[b-dmxxalut69] {
    background: rgba(255,255,255,0.10);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    margin-top: -10px;
    box-shadow: 0 0 10px rgba(255,255,255,0.15);
}



/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 900px) {
    .admin-actions-container[b-dmxxalut69] {
        gap: 18px;
    }

    .admin-box[b-dmxxalut69] {
        padding: 16px;
    }
}



/* ============================================================
   TEMA CLARO
============================================================ */
html[data-theme="light"] .admin-selected-user[b-dmxxalut69],
html[data-theme="light"] .admin-box[b-dmxxalut69] {
    background: rgba(255,255,255,0.85);
    color: #222;
}

html[data-theme="light"] .form-control[b-dmxxalut69] {
    background: rgba(0,0,0,0.05);
    color: #222;
}

html[data-theme="light"] .admin-feedback[b-dmxxalut69] {
    background: rgba(0,0,0,0.05);
    color: #222;
}
/* /Components/Pages/Admin/Tabs/ForbiddenWordsTab.razor.rz.scp.css */
/* ============================================================
   TÍTULO
============================================================ */
.admin-subtitle[b-3dpce4kogk] {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ff4444;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
}



/* ============================================================
   WRAPPER PRINCIPAL
============================================================ */
.forbidden-wrapper[b-3dpce4kogk] {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 0 14px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    gap: 25px;
}



/* ============================================================
   ADICIONAR PALAVRA
============================================================ */
.forbidden-add[b-3dpce4kogk] {
    display: flex;
    gap: 12px;
}

    .forbidden-add .form-control[b-3dpce4kogk] {
        flex: 1;
        background: rgba(255,255,255,0.10);
        border: 1px solid rgba(255,255,255,0.25);
        color: #fff;
        padding: 10px;
        border-radius: 8px;
    }

        .forbidden-add .form-control:focus[b-3dpce4kogk] {
            outline: none;
            border-color: #ff4444;
        }

    .forbidden-add .btn-primary[b-3dpce4kogk] {
        background: rgba(0,120,255,0.35);
        border: 1px solid rgba(0,120,255,0.55);
        font-weight: 700;
        padding: 10px 16px;
        border-radius: 8px;
        transition: background 0.2s ease;
    }

        .forbidden-add .btn-primary:hover[b-3dpce4kogk] {
            background: rgba(0,120,255,0.55);
        }



/* ============================================================
   TABELA PREMIUM
============================================================ */
.admin-table[b-3dpce4kogk] {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    overflow: hidden;
}

    .admin-table thead[b-3dpce4kogk] {
        background: rgba(255,255,255,0.10);
    }

    .admin-table th[b-3dpce4kogk] {
        padding: 12px;
        text-align: left;
        font-weight: 700;
        color: #ff4444;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .admin-table td[b-3dpce4kogk] {
        padding: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .admin-table tr:hover[b-3dpce4kogk] {
        background: rgba(255,255,255,0.08);
    }



/* ============================================================
   BOTÕES DE AÇÃO
============================================================ */
.btn-secondary[b-3dpce4kogk] {
    background: rgba(255,255,255,0.20);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

    .btn-secondary:hover[b-3dpce4kogk] {
        background: rgba(255,255,255,0.35);
    }

.btn-danger[b-3dpce4kogk] {
    background: rgba(255,0,0,0.35);
    border: 1px solid rgba(255,0,0,0.55);
    color: #ffcccc;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

    .btn-danger:hover[b-3dpce4kogk] {
        background: rgba(255,0,0,0.55);
    }



/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 900px) {
    .forbidden-add[b-3dpce4kogk] {
        flex-direction: column;
    }

    .admin-table th[b-3dpce4kogk],
    .admin-table td[b-3dpce4kogk] {
        padding: 10px;
    }
}



/* ============================================================
   TEMA CLARO
============================================================ */
html[data-theme="light"] .forbidden-wrapper[b-3dpce4kogk] {
    background: rgba(255,255,255,0.85);
    color: #222;
}

html[data-theme="light"] .admin-table[b-3dpce4kogk] {
    background: rgba(0,0,0,0.05);
}

    html[data-theme="light"] .admin-table th[b-3dpce4kogk] {
        color: #cc0000;
    }

    html[data-theme="light"] .admin-table td[b-3dpce4kogk] {
        color: #222;
    }

html[data-theme="light"] .btn-secondary[b-3dpce4kogk] {
    background: rgba(0,0,0,0.10);
    color: #222;
}

html[data-theme="light"] .btn-danger[b-3dpce4kogk] {
    background: rgba(255,0,0,0.25);
    color: #222;
}
/* /Components/Pages/Admin/Tabs/GroupsTab.razor.rz.scp.css */
/* ================================
   TÍTULO
   ================================ */

.groups-title[b-xpftnbnhyj] {
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}



/* ================================
   LAYOUT PRINCIPAL
   ================================ */

.groups-layout[b-xpftnbnhyj] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}



/* ================================
   TABELA DE GRUPOS
   ================================ */

.admin-table[b-xpftnbnhyj] {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

    .admin-table th[b-xpftnbnhyj] {
        padding: 12px;
        background: rgba(255,255,255,0.08);
        font-weight: 600;
        text-align: left;
    }

    .admin-table td[b-xpftnbnhyj] {
        padding: 10px 12px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .admin-table tr:hover[b-xpftnbnhyj] {
        background: rgba(255,255,255,0.06);
    }

.selected-row[b-xpftnbnhyj] {
    background: rgba(76,175,80,0.15) !important;
}



/* ================================
   BOTÃO "VER"
   ================================ */

.select-btn[b-xpftnbnhyj] {
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    color: #fff;
    font-weight: 600;
    transition: background 0.2s ease;
}

    .select-btn:hover[b-xpftnbnhyj] {
        background: rgba(255,255,255,0.20);
    }



/* ================================
   PAINEL DE DETALHES DO GRUPO
   ================================ */

.group-details[b-xpftnbnhyj] {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

.no-group[b-xpftnbnhyj] {
    opacity: 0.7;
    font-style: italic;
}

.edit-title[b-xpftnbnhyj] {
    margin-bottom: 15px;
    font-weight: 600;
}



/* ================================
   LISTA DE MEMBROS
   ================================ */

.member-list[b-xpftnbnhyj] {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

    .member-list li[b-xpftnbnhyj] {
        padding: 6px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }



/* ================================
   BADGE DE LÍDER
   ================================ */

.leader-tag[b-xpftnbnhyj] {
    margin-left: 10px;
    padding: 2px 6px;
    background: #4caf50;
    color: #fff;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}



/* ================================
   AÇÕES ADMINISTRATIVAS
   ================================ */

.quick-actions[b-xpftnbnhyj] {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

    .quick-actions .btn[b-xpftnbnhyj] {
        font-weight: 600;
        padding: 8px 14px;
    }



/* ================================
   RESPONSIVO
   ================================ */

@media (max-width: 900px) {
    .groups-layout[b-xpftnbnhyj] {
        grid-template-columns: 1fr;
    }

    .quick-actions[b-xpftnbnhyj] {
        flex-direction: column;
    }
}
/* /Components/Pages/Admin/Tabs/OnlineTab.razor.rz.scp.css */
/* ================================
   TÍTULO + BOTÃO
   ================================ */

.online-title[b-js1pwm3zhe] {
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.reload-btn[b-js1pwm3zhe] {
    margin-bottom: 15px;
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    transition: background 0.2s ease;
}

    .reload-btn:hover[b-js1pwm3zhe] {
        background: rgba(255,255,255,0.15);
    }

/* ================================
   TABELA PREMIUM
   ================================ */

.admin-table[b-js1pwm3zhe] {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

    .admin-table th[b-js1pwm3zhe] {
        padding: 12px;
        background: rgba(255,255,255,0.08);
        font-weight: 600;
        cursor: pointer;
        user-select: none;
        text-align: left;
        transition: background 0.2s ease;
    }

        .admin-table th:hover[b-js1pwm3zhe] {
            background: rgba(255,255,255,0.12);
        }

    .admin-table td[b-js1pwm3zhe] {
        padding: 10px 12px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        text-align: left;
    }

    .admin-table tr:hover[b-js1pwm3zhe] {
        background: rgba(255,255,255,0.06);
    }

/* ================================
   STATUS DOT (Ativo / Inativo)
   ================================ */

.status-dot[b-js1pwm3zhe] {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 6px;
    border-radius: 50%;
}

    .status-dot.online[b-js1pwm3zhe] {
        background-color: #4caf50; /* verde ativo */
        box-shadow: 0 0 6px rgba(76,175,80,0.8);
    }

    .status-dot.away[b-js1pwm3zhe] {
        background-color: #ff9800; /* laranja inativo */
        box-shadow: 0 0 6px rgba(255,152,0,0.8);
    }

/* ================================
   RESPONSIVO
   ================================ */

@media (max-width: 900px) {
    .admin-table th[b-js1pwm3zhe],
    .admin-table td[b-js1pwm3zhe] {
        padding: 8px;
    }

    .reload-btn[b-js1pwm3zhe] {
        width: 100%;
    }
}
/* /Components/Pages/Admin/Tabs/PmTab.razor.rz.scp.css */
/* ================================
   TÍTULO
   ================================ */

.pm-title[b-vcsfuvate8] {
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}



/* ================================
   LISTA DE PMS
   ================================ */

.pm-list[b-vcsfuvate8] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.pm-item[b-vcsfuvate8] {
    background: rgba(255,255,255,0.03);
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .pm-item:hover[b-vcsfuvate8] {
        background: rgba(255,255,255,0.08);
    }

.pm-users[b-vcsfuvate8] {
    font-size: 1rem;
    font-weight: 600;
}



/* ================================
   BOTÕES DA LISTA
   ================================ */

.pm-actions[b-vcsfuvate8] {
    display: flex;
    gap: 10px;
}

.pm-btn[b-vcsfuvate8] {
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    color: #fff;
    font-weight: 600;
    transition: background 0.2s ease;
}

    .pm-btn:hover[b-vcsfuvate8] {
        background: rgba(255,255,255,0.20);
    }

.pm-btn-danger[b-vcsfuvate8] {
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255,0,0,0.20);
    border: 1px solid rgba(255,0,0,0.35);
    color: #ffb3b3;
    font-weight: 600;
    transition: background 0.2s ease;
}

    .pm-btn-danger:hover[b-vcsfuvate8] {
        background: rgba(255,0,0,0.35);
    }



/* ================================
   SNEAK PEEK — CONTAINER
   ================================ */

.pm-sneakpeek-container[b-vcsfuvate8] {
    margin-top: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.20);
    overflow: hidden;
}



/* ================================
   SNEAK PEEK — HEADER
   ================================ */

.pm-sneakpeek-header[b-vcsfuvate8] {
    background: rgba(255,255,255,0.10);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.pm-close-btn[b-vcsfuvate8] {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

    .pm-close-btn:hover[b-vcsfuvate8] {
        opacity: 0.7;
    }



/* ================================
   SNEAK PEEK — BODY
   ================================ */

.pm-sneakpeek-body[b-vcsfuvate8] {
    max-height: 300px;
    overflow-y: auto;
    padding: 12px 16px;
}

.pm-msg-line[b-vcsfuvate8] {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
}



/* ================================
   TEXTO VAZIO
   ================================ */

.pm-empty[b-vcsfuvate8] {
    opacity: 0.7;
    font-style: italic;
}



/* ================================
   RESPONSIVO
   ================================ */

@media (max-width: 900px) {
    .pm-item[b-vcsfuvate8] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pm-actions[b-vcsfuvate8] {
        width: 100%;
        justify-content: flex-start;
    }
}
/* /Components/Pages/Admin/Tabs/StatsTab.razor.rz.scp.css */
/* ============================================================
   TÍTULO
============================================================ */
.stats-title[b-gikifiecej] {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffcc00;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.4);
}

/* ============================================================
   GRID DE CARDS
============================================================ */
.stats-grid[b-gikifiecej] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card[b-gikifiecej] {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    text-align: center;
}

    .stat-card h4[b-gikifiecej] {
        color: #ffcc00;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

.stat-value[b-gikifiecej] {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 6px rgba(255,255,255,0.3);
}

/* ============================================================
   GRÁFICOS
============================================================ */
.charts-section[b-gikifiecej] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.chart-card[b-gikifiecej] {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

    .chart-card h4[b-gikifiecej] {
        color: #ffcc00;
        margin-bottom: 12px;
    }

.chart-placeholder[b-gikifiecej] {
    height: 220px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px dashed rgba(255,255,255,0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    font-style: italic;
}

/* ============================================================
   TEMA CLARO
============================================================ */
html[data-theme="light"] .stat-card[b-gikifiecej],
html[data-theme="light"] .chart-card[b-gikifiecej] {
    background: rgba(255,255,255,0.75);
    color: #222;
}

html[data-theme="light"] .chart-placeholder[b-gikifiecej] {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.2);
    color: #555;
}

html[data-theme="light"] .stat-value[b-gikifiecej] {
    color: #333;
}
/* /Components/Pages/Admin/Tabs/UsersTab.razor.rz.scp.css */
/* ================================
   LAYOUT PRINCIPAL
   ================================ */

.users-layout[b-86l4efd5q0] {
    display: flex;
    gap: 25px;
    width: 100%;
    align-items: flex-start;
}

/* Lista de utilizadores */
.users-list[b-86l4efd5q0] {
    flex: 1;
    overflow-y: auto;
    max-height: 80vh;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

/* Painel de detalhes */
.user-details[b-86l4efd5q0] {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

/* ================================
   TÍTULOS
   ================================ */

.users-title[b-86l4efd5q0] {
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.edit-title[b-86l4efd5q0] {
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ================================
   GRID PREMIUM (2 COLUNAS)
   ================================ */

.edit-grid[b-86l4efd5q0] {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.grid-2[b-86l4efd5q0] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    width: 100%;
}

    .grid-2 > div[b-86l4efd5q0] {
        display: flex;
        flex-direction: column;
    }

    .grid-2 label[b-86l4efd5q0] {
        font-size: 0.85rem;
        opacity: 0.85;
        margin-bottom: 4px;
    }

    .grid-2 input[b-86l4efd5q0],
    .grid-2 select[b-86l4efd5q0] {
        padding: 6px 10px;
        border-radius: 6px;
        border: 1px solid rgba(255,255,255,0.15);
        background: rgba(255,255,255,0.08);
        color: #fff;
    }

/* ================================
   SECÇÕES
   ================================ */

.edit-section[b-86l4efd5q0] {
    background: rgba(255,255,255,0.04);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 0 8px rgba(0,0,0,0.1);
}

    .edit-section h5[b-86l4efd5q0] {
        margin-bottom: 12px;
        font-weight: 600;
    }

/* ================================
   BOTÃO GUARDAR
   ================================ */

.save-btn[b-86l4efd5q0] {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    margin-top: -10px;
    border-radius: 8px;
    font-weight: 600;
}

/* ================================
   AÇÕES RÁPIDAS
   ================================ */

.quick-actions[b-86l4efd5q0] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .quick-actions .btn[b-86l4efd5q0] {
        border-radius: 6px;
    }

.danger-zone[b-86l4efd5q0] {
    margin-top: 15px;
    border-top: 1px solid rgba(255,0,0,0.25);
    padding-top: 15px;
}

/* ================================
   TABELA
   ================================ */

.admin-table[b-86l4efd5q0] {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

    .admin-table th[b-86l4efd5q0] {
        padding: 10px;
        background: rgba(255,255,255,0.08);
        font-weight: 600;
        cursor: pointer;
        user-select: none;
    }

    .admin-table td[b-86l4efd5q0] {
        padding: 8px 10px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .admin-table tr:hover[b-86l4efd5q0] {
        background: rgba(255,255,255,0.06);
    }

.selected-row[b-86l4efd5q0] {
    background: rgba(0,150,255,0.25) !important;
    font-weight: 600;
}

/* ================================
   FILTROS
   ================================ */

.filters[b-86l4efd5q0] {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.search-box[b-86l4efd5q0] {
    flex: 2;
}

.filters .form-select[b-86l4efd5q0] {
    flex: 1;
}

.filters input[b-86l4efd5q0],
.filters select[b-86l4efd5q0] {
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

/* ================================
   RESPONSIVO
   ================================ */

@media (max-width: 1100px) {
    .users-layout[b-86l4efd5q0] {
        flex-direction: column;
    }

    .users-list[b-86l4efd5q0],
    .user-details[b-86l4efd5q0] {
        max-height: unset;
    }
}

@media (max-width: 900px) {
    .grid-2[b-86l4efd5q0] {
        grid-template-columns: 1fr;
    }

    .filters[b-86l4efd5q0] {
        flex-direction: column;
    }

        .filters .form-select[b-86l4efd5q0],
        .search-box[b-86l4efd5q0] {
            width: 100%;
        }
}
/* /Components/Pages/BlazinhoHelp.razor.rz.scp.css */
.blazinho-help-window[b-m2b03w2te3] {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 320px;
    height: 420px;
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 99999;
    animation: fadeIn-b-m2b03w2te3 0.2s ease-out;
}

@keyframes fadeIn-b-m2b03w2te3 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blazinho-help-window .header[b-m2b03w2te3] {
    background: #333;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.blazinho-help-window .close-btn[b-m2b03w2te3] {
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.blazinho-help-window .messages[b-m2b03w2te3] {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #252525;
}

.msg[b-m2b03w2te3] {
    margin-bottom: 10px;
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 8px;
    color: white;
}

    .msg.user[b-m2b03w2te3] {
        background: #4a90e2;
        align-self: flex-end;
    }

    .msg.bot[b-m2b03w2te3] {
        background: #6a4ae2;
        align-self: flex-start;
    }

.input-area[b-m2b03w2te3] {
    display: flex;
    padding: 10px;
    background: #333;
}

    .input-area input[b-m2b03w2te3] {
        flex: 1;
        padding: 8px;
        border-radius: 6px;
        border: none;
        outline: none;
    }

    .input-area button[b-m2b03w2te3] {
        margin-left: 8px;
        padding: 8px 12px;
        border: none;
        background: #6a4ae2;
        color: white;
        border-radius: 6px;
        cursor: pointer;
    }

.blazinho-icon[b-m2b03w2te3] {
    width: 22px;
    height: 22px: max-width: 22px;
    max-height: 22px;
    object-fit: contain;
    pointer-events: none;
    display: block;
}
/* /Components/Pages/MiniApps/LuckyDice.razor.rz.scp.css */
/* ============================================================
   🎲 PREMIUM DICE — DARK & LIGHT MODE
   ============================================================ */

/* ---------- LAYOUT BASE ---------- */

.dice-container[b-yvbtaq1wxt] {
    text-align: center;
    padding: 20px;
}

.dice-title[b-yvbtaq1wxt] {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.dice-area[b-yvbtaq1wxt] {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.dice-roll-btn[b-yvbtaq1wxt],
.dice-reroll-btn[b-yvbtaq1wxt] {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    margin: 10px;
    cursor: pointer;
    font-size: 1.1rem;
}

.dice-roll-btn[b-yvbtaq1wxt] {
    background: #ffd54f;
}

.dice-reroll-btn[b-yvbtaq1wxt] {
    background: #9575cd;
    color: white;
}

.dice-result[b-yvbtaq1wxt] {
    margin-top: 20px;
    font-size: 1.3rem;
}

/* ============================================================
   🎲 DADOS PREMIUM (3D, reflexo, animação)
   ============================================================ */

.dice[b-yvbtaq1wxt] {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    padding: 12px;
    transition: transform 0.2s ease;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.35), 0 8px 18px rgba(0,0,0,0.35);
}

    .dice:hover[b-yvbtaq1wxt] {
        transform: translateY(-4px) rotateX(6deg) rotateY(-6deg);
    }

    /* Reflexo superior */
    .dice[b-yvbtaq1wxt]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 45%;
        border-radius: 16px 16px 0 0;
        pointer-events: none;
    }

/* Pips */
.pip[b-yvbtaq1wxt] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    justify-self: center;
    align-self: center;
    opacity: 0;
    box-shadow: inset 0 0 4px rgba(255,255,255,0.4), 0 1px 2px rgba(0,0,0,0.6);
}

/* ============================================================
   🎨 LIGHT MODE
   ============================================================ */

html[data-theme="light"] .dice[b-yvbtaq1wxt] {
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #e3e3e3 40%, #cfcfcf 100%);
}

    html[data-theme="light"] .dice[b-yvbtaq1wxt]::before {
        background: linear-gradient( to bottom, rgba(255,255,255,0.55), rgba(255,255,255,0.05) );
    }

html[data-theme="light"] .pip[b-yvbtaq1wxt] {
    background: radial-gradient(circle, #000 40%, #222 100%);
}

/* ============================================================
   🌙 DARK MODE
   ============================================================ */

html[data-theme="dark"] .dice[b-yvbtaq1wxt] {
    background: radial-gradient(circle at 30% 30%, #3a3a3a 0%, #2a2a2a 40%, #1c1c1c 100%);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.08), 0 8px 18px rgba(0,0,0,0.6);
}

    html[data-theme="dark"] .dice[b-yvbtaq1wxt]::before {
        background: linear-gradient( to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0.02) );
    }

html[data-theme="dark"] .pip[b-yvbtaq1wxt] {
    background: radial-gradient(circle, #fff 60%, #ccc 100%);
    box-shadow: inset 0 0 4px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.8);
}

/* ============================================================
   🎞️ ANIMAÇÃO PREMIUM
   ============================================================ */

.dice-roll[b-yvbtaq1wxt] {
    animation: rollDice-b-yvbtaq1wxt 0.55s cubic-bezier(.25,.46,.45,.94);
}

@keyframes rollDice-b-yvbtaq1wxt {
    0% {
        transform: rotateX(0) rotateY(0) scale(1);
    }

    25% {
        transform: rotateX(180deg) rotateY(90deg) scale(1.25);
    }

    55% {
        transform: rotateX(360deg) rotateY(180deg) scale(0.9);
    }

    80% {
        transform: rotateX(540deg) rotateY(270deg) scale(1.05);
    }

    100% {
        transform: rotateX(720deg) rotateY(360deg) scale(1);
    }
}

/* ============================================================
   🎯 COMBOS
   ============================================================ */

.combo-comum[b-yvbtaq1wxt] {
    color: #4caf50;
}

.combo-raro[b-yvbtaq1wxt] {
    color: #ff9800;
    text-shadow: 0 0 12px rgba(255,152,0,0.9);
}

.combo-epico[b-yvbtaq1wxt] {
    color: #ff1744;
    text-shadow: 0 0 18px rgba(255,23,68,1);
    animation: epicPulse-b-yvbtaq1wxt 1.2s infinite;
}

@keyframes epicPulse-b-yvbtaq1wxt {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* ============================================================
   📐 MINIAPP LAYOUT
   ============================================================ */

.miniapp-layout[b-yvbtaq1wxt] {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.miniapp-left[b-yvbtaq1wxt] {
    width: 100%;
}

.miniapp-right[b-yvbtaq1wxt] {
    width: 100%;
    padding: 10px;
    border-left: 1px solid rgba(255,255,255,0.1);
    overflow-y: auto;
}

.miniapp-info[b-yvbtaq1wxt] {
    margin-top: 20px;
    padding: 12px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    font-size: 0.9rem;
}

.combo-legenda[b-yvbtaq1wxt] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .combo-legenda li[b-yvbtaq1wxt] {
        margin-bottom: 6px;
        opacity: 0.9;
    }

/* ============================================================
   🎲 POSIÇÕES DOS PIPS (1–7)
   ============================================================ */

.pip-1[b-yvbtaq1wxt] {
    grid-area: 1 / 1;
}

.pip-2[b-yvbtaq1wxt] {
    grid-area: 1 / 2;
}

.pip-3[b-yvbtaq1wxt] {
    grid-area: 1 / 3;
}

.pip-4[b-yvbtaq1wxt] {
    grid-area: 2 / 2;
}

.pip-5[b-yvbtaq1wxt] {
    grid-area: 3 / 1;
}

.pip-6[b-yvbtaq1wxt] {
    grid-area: 3 / 2;
}

.pip-7[b-yvbtaq1wxt] {
    grid-area: 3 / 3;
}

/* Faces */

.dice-1 .pip-4[b-yvbtaq1wxt] {
    opacity: 1;
}

.dice-2 .pip-1[b-yvbtaq1wxt],
.dice-2 .pip-7[b-yvbtaq1wxt] {
    opacity: 1;
}

.dice-3 .pip-1[b-yvbtaq1wxt],
.dice-3 .pip-4[b-yvbtaq1wxt],
.dice-3 .pip-7[b-yvbtaq1wxt] {
    opacity: 1;
}

.dice-4 .pip-1[b-yvbtaq1wxt],
.dice-4 .pip-3[b-yvbtaq1wxt],
.dice-4 .pip-5[b-yvbtaq1wxt],
.dice-4 .pip-7[b-yvbtaq1wxt] {
    opacity: 1;
}

.dice-5 .pip-1[b-yvbtaq1wxt],
.dice-5 .pip-3[b-yvbtaq1wxt],
.dice-5 .pip-4[b-yvbtaq1wxt],
.dice-5 .pip-5[b-yvbtaq1wxt],
.dice-5 .pip-7[b-yvbtaq1wxt] {
    opacity: 1;
}

.dice-6 .pip-1[b-yvbtaq1wxt],
.dice-6 .pip-3[b-yvbtaq1wxt],
.dice-6 .pip-5[b-yvbtaq1wxt],
.dice-6 .pip-7[b-yvbtaq1wxt],
.dice-6 .pip-2[b-yvbtaq1wxt],
.dice-6 .pip-6[b-yvbtaq1wxt] {
    opacity: 1;
}
/* /Components/Pages/MiniApps/MemoryGame.razor.rz.scp.css */
/* ============================================================
   TEMA CLARO
   ============================================================ */
html[data-theme="light"] .memory-container[b-syppcnnut1] {
    --bg-normal: #ffffff;
    --bg-tempo: #fff7e6;
    --texto: #222;
    --texto-sec: #555;
    --card-front: #f0f0f0;
    --card-back: #ffffff;
    --card-border: #dddddd;
    --btn-bg: #ffdd66;
    --btn-bg-hover: #ffe68a;
    --btn-premium-bg: #7b5cff;
    --btn-premium-hover: #9a7cff;
    --timer-bg: #222;
    --timer-text: #f5f5f5;
    --popup-bg: #ffffff;
}

/* ============================================================
   TEMA ESCURO
   ============================================================ */
html[data-theme="dark"] .memory-container[b-syppcnnut1] {
    --bg-normal: #1e1e1e;
    --bg-tempo: #2a2220;
    --texto: #f5f5f5;
    --texto-sec: #bbbbbb;
    --card-front: #2a2a2a;
    --card-back: #333333;
    --card-border: #444444;
    --btn-bg: #ffcc33;
    --btn-bg-hover: #ffdd55;
    --btn-premium-bg: #9a7cff;
    --btn-premium-hover: #b59aff;
    --timer-bg: #f5f5f5;
    --timer-text: #222222;
    --popup-bg: #2a2a2a;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.memory-container[b-syppcnnut1] {
    padding: 20px;
    border-radius: 12px;
    background: var(--bg-normal);
    color: var(--texto);
    transition: background 0.3s ease;
    position: relative;
}

    .memory-container.estado-tempo[b-syppcnnut1] {
        background: var(--bg-tempo);
    }

/* ============================================================
   HEADER
   ============================================================ */
.memory-header[b-syppcnnut1] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.memory-title[b-syppcnnut1] {
    font-size: 1.8rem;
    text-align: center;
    margin: 0;
}

.memory-stats[b-syppcnnut1] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--texto-sec);
}

.premium-stats[b-syppcnnut1] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.15);
}

.stat-item[b-syppcnnut1] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: inset 0 0 6px rgba(255, 215, 0, 0.15);
}

    .stat-item i[b-syppcnnut1] {
        font-style: normal;
        font-size: 1.1rem;
    }

.dark-mode .premium-stats[b-syppcnnut1] {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
}

.dark-mode .stat-item[b-syppcnnut1] {
    background: rgba(255, 215, 0, 0.10);
    border-color: rgba(255, 215, 0, 0.2);
}

.memory-actions[b-syppcnnut1] {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}




/* ============================================================
   BOTÕES
   ============================================================ */
.memory-btn[b-syppcnnut1] {
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    background: var(--btn-bg);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.2s;
}

    .memory-btn:hover[b-syppcnnut1] {
        background: var(--btn-bg-hover);
        transform: translateY(-1px);
    }

    .memory-btn.premium[b-syppcnnut1] {
        background: var(--btn-premium-bg);
        color: white;
    }

        .memory-btn.premium:hover[b-syppcnnut1] {
            background: var(--btn-premium-hover);
        }

/* ============================================================
   TIMER DIGITAL
   ============================================================ */
.memory-timer[b-syppcnnut1] {
    margin: 0 auto 15px auto;
    padding: 8px 16px;
    border-radius: 12px;
    background: var(--timer-bg);
    color: var(--timer-text);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "SF Mono", "Consolas", monospace;
    box-shadow: 0 0 12px rgba(0,0,0,0.35);
}

.timer-label[b-syppcnnut1] {
    font-size: 0.85rem;
    opacity: 0.8;
}

.timer-value[b-syppcnnut1] {
    font-size: 1.3rem;
    font-weight: 700;
}

.memory-timer.timer-warning[b-syppcnnut1] {
    animation: timerPulse-b-syppcnnut1 0.8s infinite ease-in-out;
}

.memory-timer.timer-critical[b-syppcnnut1] {
    animation: timerShake-b-syppcnnut1 0.4s infinite ease-in-out;
}

.tempo-bar-container[b-syppcnnut1] {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 6px;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

.tempo-bar[b-syppcnnut1] {
    height: 100%;
    transition: width 0.15s linear, background-color 0.3s ease;
    box-shadow: 0 0 8px rgba(0,255,200,0.6);
}

    .tempo-bar[data-state="normal"][b-syppcnnut1] {
        background: linear-gradient(90deg, #00ff88, #00c8ff);
    }

    .tempo-bar[data-state="warning"][b-syppcnnut1] {
        background: linear-gradient(90deg, #ffcc00, #ff8800);
    }

    .tempo-bar[data-state="critical"][b-syppcnnut1] {
        background: linear-gradient(90deg, #ff4444, #ff0000);
    }



@keyframes timerPulse-b-syppcnnut1 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 18px rgba(255, 193, 7, 0.9);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
    }
}

@keyframes timerShake-b-syppcnnut1 {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-2px);
    }

    50% {
        transform: translateX(2px);
    }

    75% {
        transform: translateX(-2px);
    }

    100% {
        transform: translateX(0);
    }
}

/* ============================================================
   GRELHA
   ============================================================ */
.memory-grid[b-syppcnnut1] {
    display: grid;
    gap: 6px; /* espaçamento compacto */
    justify-content: center;
    align-items: center;
}

/* ============================================================
   CARTAS (flip 3D)
   ============================================================ */
.memory-card[b-syppcnnut1] {
    width: 100%;
    max-width: 70px;
    aspect-ratio: 7 / 9;
    perspective: 800px;
    cursor: pointer;
    justify-self: center;
}

.memory-card-inner[b-syppcnnut1] {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.35s ease;
}

.memory-card.virada .memory-card-inner[b-syppcnnut1] {
    transform: rotateY(180deg);
}

.memory-card-front[b-syppcnnut1],
.memory-card-back[b-syppcnnut1] {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 1px solid var(--card-border);
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Frente */
.memory-card-front[b-syppcnnut1] {
    background: linear-gradient(135deg, var(--card-front), #c9c9c9);
}

/* Verso */
.memory-card-back[b-syppcnnut1] {
    background: var(--card-back);
    transform: rotateY(180deg);
    font-size: 2rem;
}

/* Joker */
.memory-card.joker-card .memory-card-back[b-syppcnnut1] {
    background: radial-gradient(circle, #ffeb3b, #f57f17);
}

/* Glow */
.memory-card.revelada-glow .memory-card-back[b-syppcnnut1] {
    box-shadow: 0 0 14px rgba(255, 0, 0, 0.8);
    animation: bombaPulse-b-syppcnnut1 1.4s infinite ease-in-out;
}


.vidas-container[b-syppcnnut1] {
    display: flex;
    gap: 4px;
}

.vida-heart[b-syppcnnut1] {
    font-size: 1.4rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.vida-pop[b-syppcnnut1] {
    transform: scale(1.8) rotate(20deg);
    opacity: 0;
}



@keyframes bombaPulse-b-syppcnnut1 {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 22px rgba(255, 0, 0, 1);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
        transform: scale(1);
    }
}


/* Revelada temporariamente */
.memory-card.revelada-temp .memory-card-back[b-syppcnnut1] {
    box-shadow: 0 0 18px rgba(244, 67, 54, 0.9);
}

/* ============================================================
   OVERLAYS
   ============================================================ */
.nivel-concluido-overlay[b-syppcnnut1] {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.nivel-concluido-card[b-syppcnnut1] {
    background: var(--popup-bg);
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    width: 80%;
    max-width: 320px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    animation: popupFade-b-syppcnnut1 0.25s ease-out;
}

@keyframes popupFade-b-syppcnnut1 {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================================
   POPUP INFO
   ============================================================ */
.popup-info[b-syppcnnut1] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    padding: 22px 32px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 14px;
    border: 2px solid rgba(255, 215, 0, 0.55);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.55), 0 0 60px rgba(255, 215, 0, 0.35), inset 0 0 20px rgba(255, 215, 0, 0.25);
    backdrop-filter: blur(12px);
    z-index: 9999;
    opacity: 0;
    animation: popupFade-b-syppcnnut1 0.35s ease-out forwards, popupPulse-b-syppcnnut1 1.6s ease-in-out infinite;
}

@keyframes popupFade-b-syppcnnut1 {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.6);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes popupPulse-b-syppcnnut1 {
    0% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.55);
    }

    50% {
        box-shadow: 0 0 45px rgba(255, 215, 0, 0.85);
    }

    100% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.55);
    }
}


/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 600px) {
    .memory-card[b-syppcnnut1] {
        max-width: 56px;
    }

    .memory-card-back[b-syppcnnut1] {
        font-size: 1.7rem;
    }

    .memory-timer[b-syppcnnut1] {
        padding: 6px 12px;
    }

    .timer-value[b-syppcnnut1] {
        font-size: 1.1rem;
    }
}


.miniapp-layout[b-syppcnnut1] {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.miniapp-left[b-syppcnnut1] {
    width: 100%;
}

.miniapp-right[b-syppcnnut1] {
    width: 100%;
    padding: 10px;
    border-left: 1px solid rgba(255,255,255,0.1);
    overflow-y: auto;
}
/* /Components/Pages/MiniApps/MiniAppLeaderboard.razor.rz.scp.css */
/* ============================
   LEADERBOARD CONTAINER
   ============================ */
.leaderboard-container[b-7cxf6zyit8] {
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.leaderboard-title[b-7cxf6zyit8] {
    font-size: 1.4rem;
    font-weight: bold;
    color: #c59d00;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
    margin-bottom: 12px;
}

/* ============================
   LISTA
   ============================ */
.leaderboard-list[b-7cxf6zyit8] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ============================
   ITEM BASE
   ============================ */
.leaderboard-item[b-7cxf6zyit8] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 215, 0, 0.25);
    transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

/* USER NORMAL */
.lb-me[b-7cxf6zyit8] {
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* ============================
   ANIMAÇÃO DE SUBIDA
   ============================ */
.lb-highlight-up[b-7cxf6zyit8] {
    animation: lbUp-b-7cxf6zyit8 1.2s ease-out;
}

@keyframes lbUp-b-7cxf6zyit8 {
    0% {
        background: rgba(255, 215, 0, 0.6);
        transform: translateY(12px);
    }

    40% {
        background: rgba(255, 215, 0, 1);
        transform: translateY(-6px);
    }

    100% {
        background: rgba(255, 215, 0, 0.15);
        transform: translateY(0);
    }
}

/* ============================
   ANIMAÇÃO DE DESCIDA
   ============================ */
.lb-highlight-down[b-7cxf6zyit8] {
    animation: lbDown-b-7cxf6zyit8 1.2s ease-out;
}

@keyframes lbDown-b-7cxf6zyit8 {
    0% {
        background: rgba(255, 80, 80, 0.6);
        transform: translateY(-12px);
    }

    40% {
        background: rgba(255, 80, 80, 1);
        transform: translateY(6px);
    }

    100% {
        background: rgba(255, 80, 80, 0.15);
        transform: translateY(0);
    }
}

/* ============================
   COROA ANIMADA
   ============================ */
.lb-crown[b-7cxf6zyit8] {
    position: absolute;
    right: -6px;
    top: -12px;
    font-size: 26px;
    animation: crownPop-b-7cxf6zyit8 0.8s ease-out;
    filter: drop-shadow(0 0 6px gold);
}

@keyframes crownPop-b-7cxf6zyit8 {
    0% {
        transform: scale(0.2) rotate(-20deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.4) rotate(10deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* ============================
   BADGE NEW RECORD
   ============================ */
.lb-newrecord[b-7cxf6zyit8] {
    margin-left: auto;
    padding: 3px 10px;
    background: gold;
    color: black;
    font-weight: bold;
    border-radius: 6px;
    font-size: 0.8rem;
    animation: newRecordFlash-b-7cxf6zyit8 1.2s ease-out;
    box-shadow: 0 0 10px gold;
}

@keyframes newRecordFlash-b-7cxf6zyit8 {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    40% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================
   RANK / NAME / SCORE
   ============================ */
.lb-rank[b-7cxf6zyit8] {
    width: 28px;
    font-weight: bold;
    color: #c59d00;
    text-shadow: 0 0 4px rgba(255, 215, 0, 0.6);
}

.lb-name[b-7cxf6zyit8] {
    flex: 1;
    font-weight: 600;
    color: #444;
}

.lb-score[b-7cxf6zyit8] {
    font-weight: bold;
    color: #c59d00;
    text-shadow: 0 0 4px rgba(255, 215, 0, 0.6);
}

.lb-avatar img[b-7cxf6zyit8] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 6px rgba(0,0,0,0.25);
}


/* ============================
   SCROLL LIMIT (6 LINHAS)
   ============================ */
.scroll-limit[b-7cxf6zyit8] {
    max-height: 288px; /* 6 linhas x ~48px */
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 157, 0, 0.45) transparent;
}

    .scroll-limit[b-7cxf6zyit8]::-webkit-scrollbar {
        width: 6px;
    }

    .scroll-limit[b-7cxf6zyit8]::-webkit-scrollbar-thumb {
        background: rgba(197, 157, 0, 0.45);
        border-radius: 6px;
        box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
    }

        .scroll-limit[b-7cxf6zyit8]::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 215, 0, 0.75);
        }

/* ============================
   LINHA FIXA DO JOGADOR
   ============================ */
.lb-fixed-user[b-7cxf6zyit8] {
    position: sticky;
    bottom: 0;
    z-index: 10;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 215, 0, 0.25);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}


.dark-mode .lb-fixed-user[b-7cxf6zyit8] {
    background: rgba(255, 215, 0, 0.22);
    border: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 0 14px rgba(255, 215, 0, 0.55);
}


.dark-mode .scroll-limit[b-7cxf6zyit8] {
    scrollbar-color: rgba(255, 215, 0, 0.35) transparent;
}

    .dark-mode .scroll-limit[b-7cxf6zyit8]::-webkit-scrollbar-thumb {
        background: rgba(255, 215, 0, 0.35);
        box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    }

        .dark-mode .scroll-limit[b-7cxf6zyit8]::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 215, 0, 0.6);
        }



.dark-mode .leaderboard-container[b-7cxf6zyit8] {
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
}

.dark-mode .leaderboard-title[b-7cxf6zyit8] {
    color: #ffe680;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.dark-mode .leaderboard-item[b-7cxf6zyit8] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.dark-mode .lb-me[b-7cxf6zyit8] {
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.dark-mode .lb-rank[b-7cxf6zyit8],
.dark-mode .lb-score[b-7cxf6zyit8] {
    color: #ffe680;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.dark-mode .lb-name[b-7cxf6zyit8] {
    color: #ddd;
}

.dark-mode .lb-newrecord[b-7cxf6zyit8] {
    background: #ffe680;
    color: #222;
    box-shadow: 0 0 12px #ffe680;
}

.dark-mode .lb-crown[b-7cxf6zyit8] {
    filter: drop-shadow(0 0 10px gold);
}

/* Subida */
.dark-mode .lb-highlight-up[b-7cxf6zyit8] {
    animation: lbUpDark-b-7cxf6zyit8 1.2s ease-out;
}

@keyframes lbUpDark-b-7cxf6zyit8 {
    0% {
        background: rgba(255, 215, 0, 0.5);
        transform: translateY(12px);
    }

    40% {
        background: rgba(255, 215, 0, 1);
        transform: translateY(-6px);
    }

    100% {
        background: rgba(255, 215, 0, 0.2);
        transform: translateY(0);
    }
}

/* Descida */
.dark-mode .lb-highlight-down[b-7cxf6zyit8] {
    animation: lbDownDark-b-7cxf6zyit8 1.2s ease-out;
}

@keyframes lbDownDark-b-7cxf6zyit8 {
    0% {
        background: rgba(255, 80, 80, 0.5);
        transform: translateY(-12px);
    }

    40% {
        background: rgba(255, 80, 80, 1);
        transform: translateY(6px);
    }

    100% {
        background: rgba(255, 80, 80, 0.2);
        transform: translateY(0);
    }
}
/* /Components/Pages/MiniApps/MiniAppModal.razor.rz.scp.css */
.miniapp-modal-backdrop[b-2mlzqpj2sp] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.miniapp-modal[b-2mlzqpj2sp] {
    background: var(--bla-bg);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 0 30px rgba(0,0,0,0.35);
    /* largura estável e centrada */
    width: min(900px, 100vw - 40px);
    max-height: 90vh;
    overflow: auto;
    box-sizing: border-box;
    position: relative;
}}

.miniapp-close[b-2mlzqpj2sp] {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
}



/* /Components/Pages/MiniApps/MiniAppsPage.razor.rz.scp.css */
/* GRID */
.miniapps-container[b-gje3ercsoa] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* CARD BASE */
.miniapp-card[b-gje3ercsoa] {
    background: rgba( var(--glass-rgb, 255,255,255), 0.08 );
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    backdrop-filter: blur(6px);
    border: 1px solid rgba( var(--glass-rgb, 255,255,255), 0.12 );
    color: var(--bla-text);
}

    /* HOVER */
    .miniapp-card:hover[b-gje3ercsoa] {
        transform: translateY(-4px);
        box-shadow: 0 0 12px var(--bla-accent);
    }

/* ÍCONE */
.miniapp-icon[b-gje3ercsoa] {
    font-size: 42px;
    margin-bottom: 10px;
}

/* TEMA CLARO */
[data-theme="light"] .miniapp-card[b-gje3ercsoa] {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);
}

    [data-theme="light"] .miniapp-card:hover[b-gje3ercsoa] {
        box-shadow: 0 0 12px rgba(180, 140, 0, 0.35);
    }

/* TEMA ESCURO */
[data-theme="dark"] .miniapp-card[b-gje3ercsoa] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

    [data-theme="dark"] .miniapp-card:hover[b-gje3ercsoa] {
        box-shadow: 0 0 12px rgba(255, 215, 0, 0.35);
    }

/* HOST */
.miniapp-host[b-gje3ercsoa] {
    padding: 20px;
}

/* NOT FOUND */
.miniapp-notfound[b-gje3ercsoa] {
    text-align: center;
    padding: 40px;
    opacity: 0.8;
}

/* MODAL BACKDROP */
.miniapp-modal-backdrop[b-gje3ercsoa] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 900;
}

/* MODAL */
.miniapp-modal[b-gje3ercsoa] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bla-bg-alt);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 0 20px var(--bla-shadow);
    z-index: 901;
    color: var(--bla-text);
}

/* BOTÃO FECHAR */
.miniapp-close[b-gje3ercsoa] {
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 902;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--bla-text);
}

    .miniapp-close:hover[b-gje3ercsoa] {
        opacity: 1;
    }

/* ANIMAÇÕES */
@keyframes fadeIn-b-gje3ercsoa {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popIn-b-gje3ercsoa {
    from {
        opacity: 0;
        transform: translate(-50%, -48%) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
/* /Components/Pages/MiniApps/ReflexoRapido.razor.rz.scp.css */
/* ============================================================
   TEMA CLARO
   ============================================================ */
html[data-theme="light"] .reflexo-container[b-ghilt4wxyc] {
    --bg-normal: #ffffff;
    --bg-perigo: #fff1e6;
    --bg-gameover: #ffe6e6;
    --texto: #222;
    --texto-sec: #444;
    --btn-bg: #ffdd66;
    --btn-bg-hover: #ffe68a;
    --icone-bg: #fff7cc;
}

/* ============================================================
   TEMA ESCURO
   ============================================================ */
html[data-theme="dark"] .reflexo-container[b-ghilt4wxyc] {
    --bg-normal: #1e1e1e;
    --bg-perigo: #3a1a1a;
    --bg-gameover: #4a1a1a;
    --texto: #f5f5f5;
    --texto-sec: #cccccc;
    --btn-bg: #ffcc33;
    --btn-bg-hover: #ffdd55;
    --icone-bg: #4a3f00;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.reflexo-container[b-ghilt4wxyc] {
    padding: 20px;
    border-radius: 12px;
    background: var(--bg-normal);
    color: var(--texto);
    transition: background 0.3s ease;
}

    /* ESTADOS */
    .reflexo-container.estado-perigo[b-ghilt4wxyc] {
        background: var(--bg-perigo);
    }

    .reflexo-container.estado-gameover[b-ghilt4wxyc] {
        background: var(--bg-gameover);
    }

/* ============================================================
   TÍTULO E INFO
   ============================================================ */
.titulo-reflexo[b-ghilt4wxyc] {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pontuacao-info[b-ghilt4wxyc] {
    text-align: center;
    color: var(--texto-sec);
}

/* ============================================================
   VIDAS
   ============================================================ */
.vidas[b-ghilt4wxyc] {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
}

.coracao.vivo[b-ghilt4wxyc] {
    opacity: 1;
}

.coracao.morto[b-ghilt4wxyc] {
    opacity: 0.3;
}

/* ============================================================
   ÍCONE DESAFIO
   ============================================================ */
.icone-desafio[b-ghilt4wxyc] {
    font-size: 6rem;
    text-align: center;
    margin: 20px auto;
    background: var(--icone-bg);
    padding: 20px;
    border-radius: 12px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   OPÇÕES EM GRELHA
   ============================================================ */
.opcoes-grelha[b-ghilt4wxyc] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 12px;
    justify-items: center;
    max-width: calc(8 * 70px + 7 * 12px);
    margin: 0 auto;
}

.btn-opcao[b-ghilt4wxyc] {
    font-size: 3rem;
    padding: 10px;
    background: var(--icone-bg);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-opcao:hover[b-ghilt4wxyc] {
        transform: scale(1.1);
    }

/* ============================================================
   CONTADOR TIPO BOMBA
   ============================================================ */
.contador-bomba[b-ghilt4wxyc] {
    margin: 25px auto 0 auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff4444, #cc0000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 12px black, 0 0 6px black;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    animation: bombaPulse-b-ghilt4wxyc 0.8s infinite ease-in-out;
}

@keyframes bombaPulse-b-ghilt4wxyc {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255,0,0,0.6);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 35px rgba(255,0,0,0.9);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255,0,0,0.6);
    }
}

/* EXPLOSÃO */
.contador-bomba.explodiu[b-ghilt4wxyc] {
    animation: bombaExplode-b-ghilt4wxyc 0.4s forwards ease-out;
}

@keyframes bombaExplode-b-ghilt4wxyc {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.7;
        background: #ff0000;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ============================================================
   POPUP PREMIUM
   ============================================================ */
.popup-overlay[b-ghilt4wxyc] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.popup-card[b-ghilt4wxyc] {
    background: var(--bg-normal);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    width: 80%;
    max-width: 350px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    animation: popupFade-b-ghilt4wxyc 0.25s ease-out;
}

@keyframes popupFade-b-ghilt4wxyc {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================================
   BOTÃO REINICIAR
   ============================================================ */
.btn-reiniciar[b-ghilt4wxyc] {
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 8px;
    background: var(--btn-bg);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

    .btn-reiniciar:hover[b-ghilt4wxyc] {
        background: var(--btn-bg-hover);
        transform: scale(1.05);
    }

/* ============================================================
   BONUS POPUP
   ============================================================ */
.bonus-popup[b-ghilt4wxyc] {
    text-align: center;
    margin-top: 10px;
    font-size: 1.2rem;
    animation: fadeIn-b-ghilt4wxyc 0.4s ease-out;
}

@keyframes fadeIn-b-ghilt4wxyc {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.miniapp-layout[b-ghilt4wxyc] {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.miniapp-left[b-ghilt4wxyc] {
    width: 100%;
}

.miniapp-right[b-ghilt4wxyc] {
    width: 100%;
    padding: 10px;
    border-left: 1px solid rgba(255,255,255,0.1);
    overflow-y: auto;
}
/* /Components/Pages/Perfil.razor.rz.scp.css */
/* ------------------------------
   CONTAINER & HEADER
------------------------------ */

.perfil-container[b-jt2qckowta] {
    max-width: 720px;
    margin: 30px auto;
    padding: 20px;
    color: var(--bla-text);
    animation: fadeIn-b-jt2qckowta 0.3s ease-out;
}

.perfil-header[b-jt2qckowta] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.perfil-mascot[b-jt2qckowta] {
    width: 42px;
    filter: drop-shadow(0 2px 4px var(--bla-shadow));
}

/* ------------------------------
   GRID
------------------------------ */

.perfil-grid[b-jt2qckowta] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.perfil-col[b-jt2qckowta] {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ------------------------------
   SECTIONS
------------------------------ */

.perfil-section.small[b-jt2qckowta] {
    padding: 16px;
    border-radius: 14px;
    background: var(--bla-bg-alt);
    box-shadow: 0 3px 10px var(--bla-shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .perfil-section.small:hover[b-jt2qckowta] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px var(--bla-shadow);
    }

    .perfil-section.small h4[b-jt2qckowta] {
        font-size: 15px;
        margin-bottom: 10px;
        color: var(--bla-text-strong);
        letter-spacing: 0.3px;
    }

/* ------------------------------
   INPUTS
------------------------------ */

.form-control.compact[b-jt2qckowta] {
    padding: 8px 10px;
    font-size: 14px;
    background: var(--bla-bg);
    color: var(--bla-text);
    border: 1px solid var(--bla-text-muted);
    border-radius: 8px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

    .form-control.compact:focus[b-jt2qckowta] {
        border-color: var(--bla-accent);
        box-shadow: 0 0 0 2px var(--bla-accent-fade);
        outline: none;
    }


.perfil-teaser[b-jt2qckowta] {
    padding: 8px 10px;
    font-size: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px dashed var(--bla-text-muted);
    border-radius: 8px;
    color: var(--bla-text-muted);
    font-style: italic;
    opacity: 0.7;
    cursor: not-allowed;
    text-align: center;
}

/* ------------------------------
   FOTO
------------------------------ */

.perfil-foto[b-jt2qckowta] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 12px rgba(120, 120, 255, 0.55), 0 0 22px rgba(120, 120, 255, 0.35);
    border: 2px solid rgba(150,150,255,0.35);
    animation: haloPulse-b-jt2qckowta 3s infinite ease-in-out;
    transition: transform 0.2s ease;
}
@keyframes haloPulse-b-jt2qckowta {
    0% {
        box-shadow: 0 0 10px rgba(120,120,255,0.4);
    }

    50% {
        box-shadow: 0 0 18px rgba(120,120,255,0.7);
    }

    100% {
        box-shadow: 0 0 10px rgba(120,120,255,0.4);
    }
}

    .perfil-foto:hover[b-jt2qckowta] {
        transform: scale(1.03);
    }

    .perfil-foto.placeholder[b-jt2qckowta] {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bla-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bla-text-muted);
        box-shadow: inset 0 0 8px var(--bla-shadow);
    }


/* ================================
   POPUP PREMIUM — Perfil Guardado
================================ */

.perfil-popup[b-jt2qckowta] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: fadeIn-b-jt2qckowta 0.25s ease-out;
    z-index: 9999;
}

.perfil-popup-content[b-jt2qckowta] {
    background: rgba(20, 22, 40, 0.75);
    border: 1px solid rgba(0, 200, 255, 0.35);
    padding: 26px 34px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 0 18px rgba(0, 200, 255, 0.25);
    backdrop-filter: blur(12px) saturate(160%);
    animation: popupScale-b-jt2qckowta 0.25s ease-out;
}

.popup-icon[b-jt2qckowta] {
    font-size: 42px;
    margin-bottom: 10px;
    text-shadow: 0 0 12px rgba(0, 255, 180, 0.6);
}

.popup-text[b-jt2qckowta] {
    font-size: 18px;
    color: white;
    letter-spacing: 0.4px;
}

/* Animação suave */
@keyframes popupScale-b-jt2qckowta {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.perfil-readonly[b-jt2qckowta] {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--bla-text-strong);
    font-weight: 600;
    cursor: not-allowed;
    opacity: 0.9;
    text-align: center;
    letter-spacing: 0.5px;
}

/* ------------------------------
   TROFÉUS
------------------------------ */

.trofeus-section[b-jt2qckowta] {
    margin-top: 18px;
}

.trophy-grid.compact[b-jt2qckowta] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
    gap: 12px;
}

.trophy-card[b-jt2qckowta] {
    padding: 12px;
    border-radius: 12px;
    background: var(--bla-bg);
    text-align: center;
    border: 1px solid var(--bla-text-muted);
    color: var(--bla-text);
    box-shadow: 0 3px 10px var(--bla-shadow);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .trophy-card:hover[b-jt2qckowta] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px var(--bla-shadow);
    }

    .trophy-card .icon[b-jt2qckowta] {
        font-size: 30px;
    }

    .trophy-card .name[b-jt2qckowta] {
        font-size: 13px;
        margin: 5px 0;
        font-weight: 500;
    }

.progress[b-jt2qckowta] {
    height: 6px;
    background: var(--bla-bg-alt);
    border-radius: 4px;
    overflow: hidden;
}

    .progress .bar[b-jt2qckowta] {
        height: 100%;
        background: linear-gradient(90deg, var(--bla-accent), var(--bla-accent-dark));
        transition: width 0.4s ease;
    }

.trophy-card.locked[b-jt2qckowta] {
    opacity: 0.45;
    filter: grayscale(100%);
}

/* ------------------------------
   ANIMAÇÕES
------------------------------ */

@keyframes fadeIn-b-jt2qckowta {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.btn-bla[b-jt2qckowta] {
    display: inline-block;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid transparent;
    /* Gradiente adaptado ao tema */
    background: linear-gradient( 135deg, var(--bla-accent) 0%, var(--bla-accent-dark) 100% );
    color: #fff;
    box-shadow: 0 3px 10px var(--bla-shadow-strong);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

    .btn-bla:hover[b-jt2qckowta] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px var(--bla-shadow-strong);
        filter: brightness(1.08);
    }

    .btn-bla:active[b-jt2qckowta] {
        transform: translateY(0);
        box-shadow: 0 3px 10px var(--bla-shadow-strong);
        filter: brightness(0.95);
    }

/* Tema claro — borda suave para elegância */
html[data-theme="light"] .btn-bla[b-jt2qckowta] {
    border-color: rgba(0,0,0,0.08);
}

/* Tema escuro — borda subtil para definição */
html[data-theme="dark"] .btn-bla[b-jt2qckowta] {
    border-color: rgba(255,255,255,0.12);
}


.bla-theme-mystic[b-jt2qckowta] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 26px;
    user-select: none;
    backdrop-filter: blur(6px);
}

[data-theme="light"] .bla-theme-mystic[b-jt2qckowta] {
    background: radial-gradient(circle, #fff7d1, #ffe08a);
    box-shadow: 0 0 12px rgba(255, 200, 80, 0.6);
}

[data-theme="dark"] .bla-theme-mystic[b-jt2qckowta] {
    background: radial-gradient(circle, #2a2a40, #1a1a28);
    box-shadow: 0 0 12px rgba(120, 120, 255, 0.4);
}

.bla-theme-mystic:hover[b-jt2qckowta] {
    transform: scale(1.08);
}

.sun[b-jt2qckowta], .moon[b-jt2qckowta] {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sun[b-jt2qckowta] {
    color: #ffcc33;
    text-shadow: 0 0 8px rgba(255, 200, 80, 0.8);
}

.moon[b-jt2qckowta] {
    color: #cdd6ff;
    text-shadow: 0 0 8px rgba(150, 150, 255, 0.8);
}



.password-panel[b-jt2qckowta] {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 8px;
}
/* /Components/Pages/TestPage.razor.rz.scp.css */
.test-container[b-washlo944u] {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 12px;
    color: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.controls[b-washlo944u] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .controls input[b-washlo944u] {
        padding: 8px;
        border-radius: 6px;
        border: none;
        background: #2c2c2c;
        color: white;
    }

    .controls button[b-washlo944u] {
        padding: 10px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-weight: bold;
        background: #3a3a3a;
        color: white;
        transition: 0.2s;
    }

        .controls button:hover[b-washlo944u] {
            background: #505050;
        }

.status[b-washlo944u] {
    margin-top: 20px;
    font-size: 1.2rem;
}

.report[b-washlo944u] {
    margin-top: 30px;
    padding: 15px;
    background: #2a2a2a;
    border-radius: 10px;
}
/* /Components/Pages/TrophyRoom.razor.rz.scp.css */
.trophy-grid[b-9tjqpgfl4b] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
    padding: 25px;
}

/* 🧊 Cartão base — vidro premium */
.trophy-card[b-9tjqpgfl4b] {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    transition: 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px) brightness(1.25);
    color: #fff;
    overflow: hidden;
}

    /* ✨ Reflexo animado */
    .trophy-card[b-9tjqpgfl4b]::before {
        content: "";
        position: absolute;
        top: -120%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient( 120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0.0) 100% );
        transform: rotate(25deg);
        animation: shine-b-9tjqpgfl4b 4s infinite ease-in-out;
        pointer-events: none;
    }

@keyframes shine-b-9tjqpgfl4b {
    0% {
        transform: translateX(-150%) rotate(25deg);
    }

    50% {
        transform: translateX(150%) rotate(25deg);
    }

    100% {
        transform: translateX(150%) rotate(25deg);
    }
}

/* ✨ Desbloqueado */
.trophy-card.unlocked[b-9tjqpgfl4b] {
    background: rgba(255, 255, 255, 0.18);
    border-color: #ff7b00;
    box-shadow: 0 0 22px rgba(255, 120, 0, 0.85);
    animation: unlockPulse-b-9tjqpgfl4b 0.8s ease-out;
}

/* ❄️ Bloqueado */
.trophy-card.locked[b-9tjqpgfl4b] {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px) brightness(1.45);
    filter: grayscale(40%) saturate(65%);
    border-color: rgba(255, 255, 255, 0.18);
}

/* ❓ Secreto */
.trophy-card.secret.locked[b-9tjqpgfl4b] {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.45);
}

/* Ícone */
.trophy-card .icon[b-9tjqpgfl4b] {
    font-size: 52px;
    margin-bottom: 14px;
    text-shadow: 0 0 6px rgba(0,0,0,0.4);
}

/* Nome */
.trophy-card .name[b-9tjqpgfl4b] {
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 8px;
    text-shadow: 0 0 6px rgba(0,0,0,0.5);
}

/* Descrição */
.trophy-card .desc[b-9tjqpgfl4b] {
    font-size: 13px;
    opacity: 0.95;
    margin-bottom: 16px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/* 📊 Barra de progresso */
.progress[b-9tjqpgfl4b] {
    background: rgba(0, 0, 0, 0.45);
    height: 9px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 6px;
}

    .progress .bar[b-9tjqpgfl4b] {
        height: 100%;
        background: linear-gradient(90deg, #ff7b00, #ffd000);
        transition: width 0.4s ease;
    }

/* Bloqueado */
.trophy-card.locked .progress[b-9tjqpgfl4b] {
    background: rgba(0, 0, 0, 0.55);
}

    .trophy-card.locked .progress .bar[b-9tjqpgfl4b] {
        background: linear-gradient(90deg, #ffffff, #e6e6e6);
        opacity: 0.95;
    }

/* 🔤 Texto da barra */
.progress-text[b-9tjqpgfl4b] {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 0 6px rgba(0,0,0,0.7), 0 0 3px rgba(0,0,0,0.6);
}

/* Teaser animado */
.trophy-card.locked .progress-text[b-9tjqpgfl4b] {
    font-size: 13px;
    letter-spacing: 0.3px;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
    animation: teaserPulse-b-9tjqpgfl4b 2.8s ease-in-out infinite;
}

@keyframes teaserPulse-b-9tjqpgfl4b {
    0% {
        opacity: 0.95;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }

    100% {
        opacity: 0.95;
        transform: scale(1);
    }
}

/* ✨ Animação de desbloqueio */
@keyframes unlockPulse-b-9tjqpgfl4b {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255,120,0,0);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255,120,0,1);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255,120,0,0);
    }
}
/* /Components/Pages/UserHoverCard.razor.rz.scp.css */
/* ============================================================
   USER HOVER CARD — PREMIUM ELEGANTE (DARK MODE)
   ============================================================ */

.hovercard[b-jhhmjabcxn] {
    pointer-events: auto;
    position: fixed;
    width: 340px;
    max-width: 90vw;
    padding: 16px;
    margin: -16px;
    border-radius: 14px;
    background: rgba(12, 14, 28, 0.68);
    backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    z-index: 9999;
    color: var(--bla-text);
    /* NOVO — o card aparece sempre visível */
    opacity: 1;
    transform: translateY(0) scale(1);
    /* A animação corre SEM depender do estado inicial */
    animation: hovercardEnter-b-jhhmjabcxn 0.18s ease-out;
    overflow: visible;
}


@keyframes hovercardEnter-b-jhhmjabcxn {
    0% {
        opacity: 0;
        transform: translateY(6px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}



.hovercard-hitbox[b-jhhmjabcxn] {
    position: fixed;
    padding: 20px; /* zona de tolerância */
    margin: -20px; /* mantém posição visual */
    pointer-events: auto;
    z-index: 9999;
}

/* ============================================================
   HEADER
   ============================================================ */

.hovercard-header[b-jhhmjabcxn] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* Avatar */
.hovercard-avatar[b-jhhmjabcxn] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 200, 255, 0.25);
    box-shadow: 0 0 8px rgba(0, 200, 255, 0.25);
}

/* Right side */
.hovercard-header-right[b-jhhmjabcxn] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* Sobre mim */
.hovercard-about[b-jhhmjabcxn] {
    font-size: 0.85rem;
    text-align: center;
    opacity: 0.9;
    line-height: 1.3;
}

/* Counters */
.hovercard-counters[b-jhhmjabcxn] {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    opacity: 0.9;
}

    .hovercard-counters .counter[b-jhhmjabcxn] {
        background: rgba(255,255,255,0.06);
        padding: 2px 6px;
        border-radius: 6px;
    }

/* ============================================================
   NICK / STARS / TIME / STATS
   ============================================================ */

.hovercard-nick[b-jhhmjabcxn] {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    text-align: center;
}

.hovercard-pm-indicator[b-jhhmjabcxn] {
    margin-top: 4px;
    font-size: 0.85rem;
    color: #ff4d4d;
    font-weight: bold;
}


.hovercard-stars[b-jhhmjabcxn] {
    margin-bottom: 6px;
    font-size: 0.8rem;
    text-align: center;
}

.hovercard-time[b-jhhmjabcxn] {
    display: inline-block;
    background: rgba(0, 200, 255, 0.12);
    border: 1px solid rgba(0, 200, 255, 0.25);
    padding: 3px 8px;
    border-radius: 999px;
    margin-bottom: 10px;
    font-size: 12px;
}

.hovercard-stats[b-jhhmjabcxn] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 13px;
}

    .hovercard-stats .stat[b-jhhmjabcxn] {
        padding: 2px 6px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

/* ============================================================
   ACTION BUTTONS
   ============================================================ */

.hovercard-actions[b-jhhmjabcxn] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    justify-content: center;
}

    .hovercard-actions button[b-jhhmjabcxn] {
        padding: 4px 8px;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        cursor: pointer;
        color: var(--bla-text);
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
    }

        .hovercard-actions button:hover[b-jhhmjabcxn] {
            background: rgba(0, 200, 255, 0.16);
            box-shadow: 0 0 8px rgba(0, 200, 255, 0.35);
            transform: translateY(-1px);
        }

        .hovercard-actions button:active[b-jhhmjabcxn] {
            transform: translateY(0);
        }

        .hovercard-actions button:disabled[b-jhhmjabcxn] {
            opacity: 0.35;
            cursor: not-allowed;
            filter: grayscale(100%);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow: none;
        }

/* ============================================================
   STATES — BOOSTED / TUNED / MUTED / SELF
   ============================================================ */

.hovercard-boosted[b-jhhmjabcxn] {
    border-color: rgba(0, 200, 255, 0.55);
    box-shadow: 0 0 18px rgba(0, 200, 255, 0.45), inset 0 0 12px rgba(0, 200, 255, 0.15);
    background: rgba(0, 200, 255, 0.06);
}

.hovercard-tuned[b-jhhmjabcxn] {
    border-color: rgba(150, 120, 255, 0.55);
    box-shadow: 0 0 18px rgba(150, 120, 255, 0.45), inset 0 0 12px rgba(150, 120, 255, 0.15);
    background: rgba(150, 120, 255, 0.06);
}

.hovercard-muted[b-jhhmjabcxn] {
    opacity: 0.75;
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: none;
}

.hovercard-self[b-jhhmjabcxn] {
    border-color: rgba(180, 200, 255, 0.25);
    box-shadow: 0 0 14px rgba(180, 200, 255, 0.25);
}

/* Avatar states */
.hovercard-boosted .hovercard-avatar[b-jhhmjabcxn] {
    border-color: rgba(0, 200, 255, 0.55);
    box-shadow: 0 0 12px rgba(0, 200, 255, 0.55);
}

.hovercard-tuned .hovercard-avatar[b-jhhmjabcxn] {
    border-color: rgba(150, 120, 255, 0.55);
    box-shadow: 0 0 12px rgba(150, 120, 255, 0.55);
}

/* ============================================================
   OPTIONAL BADGES (ATIVA SE QUISERES)
   ============================================================ */


/* Evitar mouseleave fantasma causado por pseudo-elementos */
.hovercard[b-jhhmjabcxn]::after,
.hovercard[b-jhhmjabcxn]::before,
.hovercard-boosted[b-jhhmjabcxn]::after,
.hovercard-tuned[b-jhhmjabcxn]::after {
    pointer-events: none;
}



.hovercard-boosted[b-jhhmjabcxn]::after {
    content: "⚡ BOOSTED";
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(0, 200, 255, 0.20);
    border: 1px solid rgba(0, 200, 255, 0.35);
    color: white;
}

.hovercard-tuned[b-jhhmjabcxn]::after {
    content: "🎵 TUNED";
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(150, 120, 255, 0.20);
    border: 1px solid rgba(150, 120, 255, 0.35);
    color: white;
}


/* ============================================================
   LIGHT MODE — PREMIUM
   ============================================================ */

html[data-theme="light"] .hovercard[b-jhhmjabcxn] {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0,0,0,0.14);
    backdrop-filter: blur(14px) saturate(160%);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10), inset 0 0 6px rgba(255,255,255,0.45);
    color: #222;
}

html[data-theme="light"] .hovercard-avatar[b-jhhmjabcxn] {
    border: 2px solid rgba(0, 120, 200, 0.25);
    box-shadow: 0 0 8px rgba(0, 120, 200, 0.25);
}

html[data-theme="light"] .hovercard-counters .counter[b-jhhmjabcxn],
html[data-theme="light"] .hovercard-stats .stat[b-jhhmjabcxn] {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,0,0,0.12);
    color: #333;
}

html[data-theme="light"] .hovercard-nick[b-jhhmjabcxn] {
    color: #111;
}

html[data-theme="light"] .hovercard-stars[b-jhhmjabcxn] {
    color: #444;
}

html[data-theme="light"] .hovercard-time[b-jhhmjabcxn] {
    background: rgba(0, 120, 200, 0.12);
    border: 1px solid rgba(0, 120, 200, 0.25);
    color: #222;
}

html[data-theme="light"] .hovercard-actions button[b-jhhmjabcxn] {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(0,0,0,0.15);
    color: #222;
}

    html[data-theme="light"] .hovercard-actions button:hover[b-jhhmjabcxn] {
        background: rgba(0, 120, 200, 0.15);
        border-color: rgba(0, 120, 200, 0.35);
        box-shadow: 0 0 8px rgba(0, 120, 200, 0.35);
    }


html[data-theme="light"] .hovercard-boosted[b-jhhmjabcxn] {
    background: rgba(0, 200, 255, 0.08); /* tonalidade leve */
    border-color: rgba(0, 200, 255, 0.45);
    box-shadow: 0 0 14px rgba(0, 200, 255, 0.25), /* halo externo */
    inset 0 0 10px rgba(0, 200, 255, 0.12); /* brilho interno */
}


html[data-theme="light"] .hovercard-tuned[b-jhhmjabcxn] {
    background: rgba(150, 120, 255, 0.08); /* tonalidade leve */
    border-color: rgba(150, 120, 255, 0.45);
    box-shadow: 0 0 14px rgba(150, 120, 255, 0.25), /* halo externo */
    inset 0 0 10px rgba(150, 120, 255, 0.12); /* brilho interno */
}



html[data-theme="light"] .hovercard-boosted .hovercard-avatar[b-jhhmjabcxn] {
    border-color: rgba(0, 200, 255, 0.55);
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.45);
}

html[data-theme="light"] .hovercard-tuned .hovercard-avatar[b-jhhmjabcxn] {
    border-color: rgba(150, 120, 255, 0.55);
    box-shadow: 0 0 10px rgba(150, 120, 255, 0.45);
}


/* ============================================================
   SELF — LIGHT MODE PREMIUM
   ============================================================ */

html[data-theme="light"] .hovercard-self[b-jhhmjabcxn] {
    background: rgba(180, 200, 255, 0.10); /* tonalidade suave */
    border-color: rgba(180, 200, 255, 0.45);
    box-shadow: 0 0 14px rgba(180, 200, 255, 0.25), /* halo externo */
    inset 0 0 10px rgba(180, 200, 255, 0.12); /* brilho interno */
}

    /* Avatar Self */
    html[data-theme="light"] .hovercard-self .hovercard-avatar[b-jhhmjabcxn] {
        border-color: rgba(180, 200, 255, 0.55);
        box-shadow: 0 0 10px rgba(180, 200, 255, 0.45);
    }
/* /Components/Portal.razor.rz.scp.css */
:host[b-4ojt2ptr6v] {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
}
/* /Components/Shared/AdminConfirmModal.razor.rz.scp.css */
/* ================================
   BACKDROP
   ================================ */
.modal-backdrop[b-n3voymtut7] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.55);
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-out;
}

    /* Quando o modal está visível */
    .modal-backdrop.show[b-n3voymtut7] {
        opacity: 1;
        pointer-events: auto;
    }

    /* Quando está escondido */
    .modal-backdrop.hide[b-n3voymtut7] {
        opacity: 0;
        pointer-events: none;
    }

/* ================================
   MODAL CONTAINER (centrado)
   ================================ */
.modal-container[b-n3voymtut7] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 25px;
    border-radius: 16px;
    /* Frosted Glass */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    animation: fadeIn-b-n3voymtut7 0.25s ease-out;
}

/* ================================
   DARK MODE
   ================================ */
@media (prefers-color-scheme: dark) {
    .modal-container[b-n3voymtut7] {
        background: rgba(30, 30, 30, 0.35);
        color: #e6e6e6;
        border: 1px solid rgba(255,255,255,0.15);
        backdrop-filter: blur(20px) saturate(160%);
        -webkit-backdrop-filter: blur(20px) saturate(160%);
    }

    .modal-backdrop[b-n3voymtut7] {
        background: rgba(0,0,0,0.75);
    }
}

/* ================================
   TEXTO E BOTÕES
   ================================ */
.modal-container h3[b-n3voymtut7] {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.modal-container p[b-n3voymtut7] {
    margin-bottom: 20px;
    opacity: 0.9;
}

.modal-buttons[b-n3voymtut7] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* ================================
   ANIMAÇÃO
   ================================ */
@keyframes fadeIn-b-n3voymtut7 {
    from {
        opacity: 0;
        transform: translate(-50%, -48%) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
/* /Components/Shared/DedicCenterModal.razor.rz.scp.css */
.dedic-backdrop[b-aro3xg6o5g] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn-b-aro3xg6o5g 0.25s ease-out;
}

@keyframes fadeIn-b-aro3xg6o5g {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dedic-modal[b-aro3xg6o5g] {
    width: 420px;
    max-height: 80vh;
    overflow-y: auto;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 0 25px rgba(255,215,0,0.25);
    backdrop-filter: blur(14px) saturate(160%);
    animation: popupZoom-b-aro3xg6o5g 0.25s ease-out;
}

@keyframes popupZoom-b-aro3xg6o5g {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
.dedic-header[b-aro3xg6o5g] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

    .dedic-header h2[b-aro3xg6o5g] {
        margin: 0;
        font-size: 1.4rem;
        color: #ffd700;
        text-shadow: 0 0 8px rgba(255,215,0,0.45);
    }

.close-btn[b-aro3xg6o5g] {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

    .close-btn:hover[b-aro3xg6o5g] {
        background: rgba(255,255,255,0.25);
        transform: scale(1.1);
    }
.dedic-list[b-aro3xg6o5g] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dedic-item[b-aro3xg6o5g] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 0 12px rgba(255,215,0,0.15);
}

.dedic-removendo[b-aro3xg6o5g] {
    opacity: 0;
    transform: translateX(-20px);
}

.dedic-content[b-aro3xg6o5g] {
    flex: 1;
}
.dedic-top[b-aro3xg6o5g] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.dedic-avatar[b-aro3xg6o5g] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255,215,0,0.45);
    box-shadow: 0 0 8px rgba(255,215,0,0.35);
}

.dedic-from strong[b-aro3xg6o5g] {
    color: #ffd700;
    font-size: 1rem;
}

.dedic-date[b-aro3xg6o5g] {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}
.dedic-msg[b-aro3xg6o5g] {
    margin: 6px 0;
    font-size: 1rem;
    line-height: 1.3;
}
.dedic-emoji[b-aro3xg6o5g] {
    font-size: 2rem;
    margin-top: 4px;
}
.dedic-item-extra[b-aro3xg6o5g] {
    margin-top: 6px;
    color: #ffd700;
    font-weight: 600;
}
.dedic-blazoids[b-aro3xg6o5g] {
    margin-top: 6px;
    color: #b56bff;
    font-weight: 600;
}
.dedic-delete-btn[b-aro3xg6o5g] {
    background: rgba(255, 80, 80, 0.15);
    border: 1px solid rgba(255, 80, 80, 0.35);
    color: #ff6666;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

    .dedic-delete-btn:hover[b-aro3xg6o5g] {
        background: rgba(255, 80, 80, 0.35);
        transform: scale(1.1);
    }
:root[data-theme="light"] .dedic-modal[b-aro3xg6o5g] {
    background: rgba(255,255,255,0.75);
    border-color: rgba(0,0,0,0.15);
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

:root[data-theme="light"] .dedic-item[b-aro3xg6o5g] {
    background: rgba(255,255,255,0.85);
    border-color: rgba(0,0,0,0.12);
}

:root[data-theme="light"] .dedic-header h2[b-aro3xg6o5g] {
    color: #c59b00;
    text-shadow: none;
}

:root[data-theme="light"] .dedic-avatar[b-aro3xg6o5g] {
    border-color: #c59b00;
    box-shadow: none;
}

:root[data-theme="light"] .dedic-delete-btn[b-aro3xg6o5g] {
    background: rgba(255, 80, 80, 0.12);
    border-color: rgba(255, 80, 80, 0.25);
}


/* 🌙 DARK MODE — CONTRASTE PREMIUM PLUS */

:root[data-theme="dark"] .dedic-modal[b-aro3xg6o5g] {
    background: rgba(20, 20, 28, 0.75);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 0 25px rgba(255,215,0,0.25);
    color: #f2f2f2; /* texto mais vivo */
}

:root[data-theme="dark"] .dedic-item[b-aro3xg6o5g] {
    background: rgba(30, 30, 40, 0.65);
    border-color: rgba(255,255,255,0.10);
    color: #e8e8e8; /* texto mais claro */
}

:root[data-theme="dark"] .dedic-header h2[b-aro3xg6o5g] {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255,215,0,0.55);
}

:root[data-theme="dark"] .dedic-msg[b-aro3xg6o5g] {
    color: #f5f5f5; /* mensagem mais viva */
}

:root[data-theme="dark"] .dedic-date[b-aro3xg6o5g] {
    color: #bbbbbb; /* data mais legível */
}

:root[data-theme="dark"] .dedic-avatar[b-aro3xg6o5g] {
    border-color: rgba(255,215,0,0.55);
    box-shadow: 0 0 10px rgba(255,215,0,0.45);
}

:root[data-theme="dark"] .dedic-item-extra[b-aro3xg6o5g] {
    color: #ffd700; /* dourado forte */
}

:root[data-theme="dark"] .dedic-blazoids[b-aro3xg6o5g] {
    color: #c58aff; /* roxo mais vibrante */
}

:root[data-theme="dark"] .dedic-delete-btn[b-aro3xg6o5g] {
    background: rgba(255, 80, 80, 0.20);
    border-color: rgba(255, 80, 80, 0.45);
    color: #ff7777; /* vermelho mais vivo */
}

    :root[data-theme="dark"] .dedic-delete-btn:hover[b-aro3xg6o5g] {
        background: rgba(255, 80, 80, 0.35);
    }
/* /Components/Shop/BlazinhoShopPage.razor.rz.scp.css */
/* ======== LAYOUT GERAL ======== */

.shop-page[b-fin33vrpft] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 30px;
    color: var(--bla-text);
    overflow: hidden;
    animation: fadeIn-b-fin33vrpft 0.4s ease-out;
}

/* ======== BANNER SEM CORTES + FUNDO TRANSPARENTE ======== */

.shop-banner[b-fin33vrpft] {
    width: 100%;
    height: 22vh; /* altura baixa */
    display: flex;
    justify-content: center;
    align-items: center;
    /* FUNDO TRANSPARENTE — como pediste */
    background: transparent;
    border-radius: 16px;
    overflow: visible; /* deixa o glow da imagem sair */
    margin-bottom: 4px; /* texto fica colado ao banner */
}

.banner-img[b-fin33vrpft] {
    height: 100%;
    width: auto;
    object-fit: contain; /* imagem SEM cortes */
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(255,180,0,0.35);
}

/* ======== BOAS-VINDAS COLADAS AO BANNER ======== */

.shop-welcome[b-fin33vrpft] {
    text-align: center;
    margin: 0;
    padding: 0;
}

    .shop-welcome h2[b-fin33vrpft] {
        font-size: 1.8rem;
        color: var(--bla-accent);
        text-shadow: 0 0 12px rgba(255,180,0,0.45);
        margin-bottom: 2px;
    }

    .shop-welcome p[b-fin33vrpft] {
        opacity: 0.85;
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

/* ======== DIAMANTE PREMIUM COM HALO MULTICOLOR PULSANTE ======== */

.shop-diamond[b-fin33vrpft] {
    font-size: 3.4rem;
    margin-top: 0;
    /* halo multicolor */
    filter: drop-shadow(0 0 12px #ff00ff) drop-shadow(0 0 18px #00e1ff) drop-shadow(0 0 22px #ffae00);
    animation: diamondPulse-b-fin33vrpft 2.8s infinite ease-in-out;
}

@keyframes diamondPulse-b-fin33vrpft {
    0% {
        filter: drop-shadow(0 0 10px #ff00ff) drop-shadow(0 0 14px #00e1ff) drop-shadow(0 0 18px #ffae00);
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 18px #ff00ff) drop-shadow(0 0 26px #00e1ff) drop-shadow(0 0 32px #ffae00);
        transform: scale(1.12);
    }

    100% {
        filter: drop-shadow(0 0 10px #ff00ff) drop-shadow(0 0 14px #00e1ff) drop-shadow(0 0 18px #ffae00);
        transform: scale(1);
    }
}

/* ======== OFERTAS ======== */

.shop-offers[b-fin33vrpft] {
    overflow-x: auto;
    padding: 6px 0;
    flex-shrink: 0;
}

.offers-scroll[b-fin33vrpft] {
    display: flex;
    gap: 14px;
    scroll-snap-type: x mandatory;
}

.offer-card[b-fin33vrpft] {
    flex: 0 0 220px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,180,0,0.25);
    border-radius: 14px;
    padding: 14px;
    text-align: center;
    transition: 0.25s ease;
    cursor: pointer;
    scroll-snap-align: start;
}

    .offer-card:hover[b-fin33vrpft] {
        background: rgba(255,180,0,0.12);
        transform: translateY(-4px);
        box-shadow: 0 6px 18px var(--bla-shadow-strong);
    }

.offer-icon[b-fin33vrpft] {
    font-size: 2.2rem;
    margin-bottom: 6px;
    text-shadow: 0 0 10px var(--bla-accent);
}

.offer-title[b-fin33vrpft] {
    font-size: 1.1rem;
    color: var(--bla-accent);
    margin-bottom: 4px;
    font-weight: 600;
}

.offer-desc[b-fin33vrpft] {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 6px;
}

.offer-price[b-fin33vrpft] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bla-accent);
}

/* ======== SCROLL ======== */

.shop-offers[b-fin33vrpft]::-webkit-scrollbar {
    height: 8px;
}

.shop-offers[b-fin33vrpft]::-webkit-scrollbar-thumb {
    background: var(--bla-accent);
    border-radius: 10px;
}

/* ======== ANIMAÇÃO ======== */

@keyframes fadeIn-b-fin33vrpft {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Shop/BuyBlazoids.razor.rz.scp.css */
/* ============================
   CONTAINER
============================ */

.buy-container[b-ld1n1nrec5] {
    max-width: 820px;
    margin: 40px auto;
    text-align: center;
    animation: fadeIn-b-ld1n1nrec5 0.4s ease-out;
}

.buy-title[b-ld1n1nrec5] {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.buy-subtitle[b-ld1n1nrec5] {
    opacity: 0.7;
    margin-bottom: 28px;
}

/* ============================
   GRID
============================ */

.buy-grid[b-ld1n1nrec5] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

/* ============================
   CARD PREMIUM
============================ */

.buy-card[b-ld1n1nrec5] {
    padding: 22px;
    border-radius: 16px;
    background: var(--bla-bg-alt);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 4px 14px var(--bla-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .buy-card:hover[b-ld1n1nrec5] {
        transform: translateY(-6px);
        box-shadow: 0 8px 22px var(--bla-shadow-strong);
    }

    /* Halo neon */
    .buy-card[b-ld1n1nrec5]::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 2px;
        background: linear-gradient(135deg, var(--bla-accent), var(--bla-accent-dark));
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0.25;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .buy-card:hover[b-ld1n1nrec5]::before {
        opacity: 0.55;
    }

/* ============================
   CARD CONTENT
============================ */

.buy-icon[b-ld1n1nrec5] {
    font-size: 42px;
    margin-bottom: 10px;
    text-shadow: 0 0 12px var(--bla-accent);
}

.buy-amount[b-ld1n1nrec5] {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.buy-price[b-ld1n1nrec5] {
    font-size: 18px;
    font-weight: 700;
    color: var(--bla-accent);
    margin-bottom: 16px;
}

/* ============================
   BUTTON
============================ */

.buy-btn[b-ld1n1nrec5] {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 10px 0;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    background: linear-gradient(135deg, var(--bla-accent), var(--bla-accent-dark));
    color: white;
    box-shadow: 0 3px 10px var(--bla-shadow-strong);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

    .buy-btn:hover[b-ld1n1nrec5] {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px var(--bla-shadow-strong);
        filter: brightness(1.08);
    }

    .buy-btn:active[b-ld1n1nrec5] {
        transform: translateY(0);
        filter: brightness(0.9);
    }

/* ============================
   ANIMAÇÃO
============================ */

@keyframes fadeIn-b-ld1n1nrec5 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Shop/Cancel.razor.rz.scp.css */
.cancel-container[b-utzmegb1mj] {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    animation: fadeIn-b-utzmegb1mj 0.6s ease;
}

.btn[b-utzmegb1mj] {
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 8px;
    background: #ff4444;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

@keyframes fadeIn-b-utzmegb1mj {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Shop/Success.razor.rz.scp.css */
.success-container[b-m2m14dbw1b] {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
    animation: fadeIn-b-m2m14dbw1b 0.6s ease;
}

.card[b-m2m14dbw1b] {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(0,255,150,0.3);
    text-align: left;
}

.btn[b-m2m14dbw1b] {
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 8px;
    background: #00ff99;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

@keyframes fadeIn-b-m2m14dbw1b {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
