/* /Components/DebugTerminal.razor.rz.scp.css */
/* Botão flutuante */
.debug-toggle-btn[b-z0kcsfp6o4] {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 9999;
}

.debug-toggle-btn:hover[b-z0kcsfp6o4] {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    transform: scale(1.05);
}

.debug-toggle-btn.active[b-z0kcsfp6o4] {
    background: rgba(99, 102, 241, 0.6);
    border-color: rgba(99, 102, 241, 0.5);
    color: #fff;
}

.notification-dot[b-z0kcsfp6o4] {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-b-z0kcsfp6o4 1.5s infinite;
}

@keyframes pulse-b-z0kcsfp6o4 {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Terminal */
.debug-terminal[b-z0kcsfp6o4] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 9998;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: slideIn-b-z0kcsfp6o4 0.3s ease;
}

@keyframes slideIn-b-z0kcsfp6o4 {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Header */
.terminal-header[b-z0kcsfp6o4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-title[b-z0kcsfp6o4] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.terminal-title i[b-z0kcsfp6o4] {
    color: #a5b4fc;
}

.log-count[b-z0kcsfp6o4] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.terminal-actions[b-z0kcsfp6o4] {
    display: flex;
    gap: 6px;
}

.terminal-btn[b-z0kcsfp6o4] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
}

.terminal-btn:hover[b-z0kcsfp6o4] {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.terminal-btn.active[b-z0kcsfp6o4] {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

/* Body */
.terminal-body[b-z0kcsfp6o4] {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 12px;
    line-height: 1.6;
}

.terminal-body[b-z0kcsfp6o4]::-webkit-scrollbar {
    width: 6px;
}

.terminal-body[b-z0kcsfp6o4]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.terminal-body[b-z0kcsfp6o4]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.terminal-body[b-z0kcsfp6o4]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Empty state */
.terminal-empty[b-z0kcsfp6o4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 150px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.terminal-empty i[b-z0kcsfp6o4] {
    font-size: 40px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.terminal-empty p[b-z0kcsfp6o4] {
    margin: 0;
    font-size: 14px;
}

.terminal-empty small[b-z0kcsfp6o4] {
    font-size: 11px;
    margin-top: 4px;
    opacity: 0.7;
}

/* Log entries */
.log-entry[b-z0kcsfp6o4] {
    display: flex;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 6px;
    margin-bottom: 4px;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s ease;
}

.log-entry:hover[b-z0kcsfp6o4] {
    background: rgba(255, 255, 255, 0.05);
}

.log-time[b-z0kcsfp6o4] {
    color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    font-size: 10px;
}

.log-level[b-z0kcsfp6o4] {
    flex-shrink: 0;
    width: 40px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.log-message[b-z0kcsfp6o4] {
    color: rgba(255, 255, 255, 0.85);
    word-break: break-word;
    flex: 1;
}

/* Log levels */
.log-entry.info .log-level[b-z0kcsfp6o4] {
    color: #60a5fa;
}

.log-entry.warn .log-level[b-z0kcsfp6o4] {
    color: #fbbf24;
}

.log-entry.warn[b-z0kcsfp6o4] {
    background: rgba(251, 191, 36, 0.08);
}

.log-entry.error .log-level[b-z0kcsfp6o4] {
    color: #f87171;
}

.log-entry.error[b-z0kcsfp6o4] {
    background: rgba(248, 113, 113, 0.1);
    border-left: 2px solid #ef4444;
}

/* Footer */
.terminal-footer[b-z0kcsfp6o4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-status[b-z0kcsfp6o4] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-status i[b-z0kcsfp6o4] {
    font-size: 8px;
}

.footer-status .text-success[b-z0kcsfp6o4] {
    color: #22c55e;
}

.footer-status .text-muted[b-z0kcsfp6o4] {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsivo */
@media (max-width: 600px) {
    .debug-terminal[b-z0kcsfp6o4] {
        width: calc(100vw - 32px);
        right: 16px;
    }
}
/* /Components/DevModeWarningModal.razor.rz.scp.css */
.devmode-modal-overlay[b-p8je35xffa] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.devmode-modal[b-p8je35xffa] {
    background: linear-gradient(145deg, #2e1a1a, #3e2116);
    border-radius: 16px;
    padding: 24px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 160, 0, 0.2);
}

.devmode-modal-header[b-p8je35xffa] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #ffb347;
    font-size: 1.25rem;
    font-weight: 600;
}

.devmode-modal-header i[b-p8je35xffa] {
    font-size: 1.5rem;
}

.devmode-modal-body[b-p8je35xffa] {
    color: #e0e0e0;
    margin-bottom: 24px;
}

.devmode-modal-body p[b-p8je35xffa] {
    margin: 0 0 12px;
    line-height: 1.5;
}

.devmode-modal-body strong[b-p8je35xffa] {
    color: #fff;
}

.devmode-info[b-p8je35xffa] {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 179, 71, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ffb347;
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-top: 16px;
}

.devmode-info i[b-p8je35xffa] {
    color: #ffb347;
    flex-shrink: 0;
    margin-top: 2px;
}

.devmode-modal-footer[b-p8je35xffa] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.devmode-modal-footer button[b-p8je35xffa] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 0.9rem;
}

.btn-devmode-ok[b-p8je35xffa] {
    background: linear-gradient(135deg, #ffb347, #ff8c00);
    color: #fff;
}

.btn-devmode-ok:hover[b-p8je35xffa] {
    background: linear-gradient(135deg, #ffc06e, #ff9f2e);
    transform: translateY(-1px);
}
/* /Components/DynamicsCards/AboutCard.razor.rz.scp.css */
.about-card[b-ns4gm35pzh] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem;
    color: white;
}

.about-header[b-ns4gm35pzh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.about-title[b-ns4gm35pzh] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-title i[b-ns4gm35pzh] {
    font-size: 12px;
}

.btn-close-about[b-ns4gm35pzh] {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-close-about:hover[b-ns4gm35pzh] {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.about-content[b-ns4gm35pzh] {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.credits-container[b-ns4gm35pzh] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credits-section[b-ns4gm35pzh] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.credit-category[b-ns4gm35pzh] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.credit-category.compact[b-ns4gm35pzh] {
    margin-bottom: 0.5rem;
}

.category-header[b-ns4gm35pzh] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 0.4rem;
}

.category-header i[b-ns4gm35pzh] {
    font-size: 0.7rem;
}

.credit-item[b-ns4gm35pzh] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: background 0.2s ease;
    width: calc(100% - 10px);
}

.credit-item:hover[b-ns4gm35pzh] {
    background: rgba(255, 255, 255, 0.1);
}

.credit-item.highlight[b-ns4gm35pzh] {
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.credit-item.highlight:hover[b-ns4gm35pzh] {
    background: rgba(96, 165, 250, 0.25);
}

.credit-item > i[b-ns4gm35pzh] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    width: 18px;
    text-align: center;
}

.credit-item.highlight > i[b-ns4gm35pzh] {
    color: #60a5fa;
}

.credit-info[b-ns4gm35pzh] {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.credit-role[b-ns4gm35pzh] {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.credit-name[b-ns4gm35pzh] {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.about-footer[b-ns4gm35pzh] {
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.about-footer p[b-ns4gm35pzh] {
    margin: 0;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-footer .heart-icon[b-ns4gm35pzh] {
    color: #ef4444;
}

.about-year[b-ns4gm35pzh] {
    margin-top: 0.2rem !important;
    font-size: 0.6rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Scrollbar */
.about-content[b-ns4gm35pzh]::-webkit-scrollbar {
    width: 6px;
}

.about-content[b-ns4gm35pzh]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.about-content[b-ns4gm35pzh]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.about-content[b-ns4gm35pzh]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
/* /Components/DynamicsCards/AchievementsCard.razor.rz.scp.css */
.achievements-content[b-po6lojq93t] {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    padding: 18px;
    overflow: hidden;
}

.coming-soon[b-po6lojq93t] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    color: rgba(255, 255, 255, 0.7);
}

.coming-soon i[b-po6lojq93t] {
    font-size: 32px;
    color: rgba(255, 200, 50, 0.85);
}

.coming-soon span[b-po6lojq93t] {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* /Components/DynamicsCards/EventosCard.razor.rz.scp.css */
/* EventosCard - Estilos internos apenas */

.eventos-content[b-2t1612ep77] {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    padding: 18px;
    overflow: hidden;
}

.eventos-list[b-2t1612ep77] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    flex: 1;
    padding-right: 8px;
}

/* Scrollbar styling - discreto */
.eventos-list[b-2t1612ep77]::-webkit-scrollbar {
    width: 4px;
}

.eventos-list[b-2t1612ep77]::-webkit-scrollbar-track {
    background: transparent;
}

.eventos-list[b-2t1612ep77]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.eventos-list[b-2t1612ep77]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.evento-item[b-2t1612ep77] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    transition: all 0.3s ease;
}

.evento-item:hover[b-2t1612ep77] {
    background: rgba(255, 255, 255, 0.2);
}

.evento-header[b-2t1612ep77] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.evento-icon[b-2t1612ep77] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.evento-title[b-2t1612ep77] {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.evento-details[b-2t1612ep77] {
    display: flex;
    gap: 8px;
    margin-left: 22px;
}

.evento-date[b-2t1612ep77],
.evento-time[b-2t1612ep77] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.evento-date i[b-2t1612ep77],
.evento-time i[b-2t1612ep77] {
    font-size: 10px;
}

.evento-description[b-2t1612ep77] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.3;
    margin: 0;
    margin-left: 22px;
}
/* /Components/DynamicsCards/ExtratoCard.razor.rz.scp.css */
.extrato-card[b-lvgohs80s5] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem;
    color: white;
}

.extrato-header[b-lvgohs80s5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.extrato-title[b-lvgohs80s5] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.extrato-title i[b-lvgohs80s5] {
    font-size: 12px;
}

.btn-close-extrato[b-lvgohs80s5] {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-close-extrato:hover[b-lvgohs80s5] {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.extrato-content[b-lvgohs80s5] {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.extrato-loading[b-lvgohs80s5],
.extrato-empty[b-lvgohs80s5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.extrato-loading i[b-lvgohs80s5],
.extrato-empty i[b-lvgohs80s5] {
    font-size: 2.5rem;
}

.spinner[b-lvgohs80s5] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #ffd54f;
    border-radius: 50%;
    animation: spin-b-lvgohs80s5 1s linear infinite;
}

@keyframes spin-b-lvgohs80s5 {
    to { transform: rotate(360deg); }
}

.extrato-list[b-lvgohs80s5] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.extrato-item[b-lvgohs80s5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: background 0.2s ease;
}

.extrato-item:hover[b-lvgohs80s5] {
    background: rgba(255, 255, 255, 0.2);
}

.extrato-item-icon[b-lvgohs80s5] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.extrato-item.credit .extrato-item-icon[b-lvgohs80s5] {
    background: rgba(76, 175, 80, 0.2);
}

.extrato-item.debit .extrato-item-icon[b-lvgohs80s5] {
    background: rgba(244, 67, 54, 0.2);
}

.xp-icon[b-lvgohs80s5] {
    color: #ffeb3b;
}

.netcoin-icon[b-lvgohs80s5] {
    color: #ffd54f;
}

.extrato-item-info[b-lvgohs80s5] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.extrato-item-source[b-lvgohs80s5] {
    font-weight: 600;
    font-size: 0.75rem;
}

.extrato-item-description[b-lvgohs80s5] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.extrato-item-date[b-lvgohs80s5] {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
}

.extrato-item-amount[b-lvgohs80s5] {
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

.extrato-item-amount.positive[b-lvgohs80s5] {
    color: #4caf50;
}

.extrato-item-amount.negative[b-lvgohs80s5] {
    color: #f44336;
}

.extrato-footer[b-lvgohs80s5] {
    margin-top: 0.75rem;
    padding-top: 0.5rem;
}

.extrato-balance[b-lvgohs80s5] {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.balance-item[b-lvgohs80s5] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.balance-item.xp i[b-lvgohs80s5] {
    color: #ffeb3b;
}

.balance-item.netcoins i[b-lvgohs80s5] {
    color: #ffd54f;
}

/* Scrollbar */
.extrato-content[b-lvgohs80s5]::-webkit-scrollbar {
    width: 6px;
}

.extrato-content[b-lvgohs80s5]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.extrato-content[b-lvgohs80s5]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.extrato-content[b-lvgohs80s5]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
/* /Components/DynamicsCards/MiniGamesCard.razor.rz.scp.css */
/* MiniGamesCard - Estilos internos apenas */

.minigames-content[b-soj326jieh] {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    padding: 18px;
    overflow: hidden;
}

.games-list[b-soj326jieh] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
    overflow-y: auto;
    flex: 1;
    padding-right: 4px;
}

.games-list[b-soj326jieh]::-webkit-scrollbar {
    width: 4px;
}

.games-list[b-soj326jieh]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.games-list[b-soj326jieh]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.games-list[b-soj326jieh]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.game-item[b-soj326jieh] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 8px 10px;
    transition: all 0.3s ease;
    cursor: default;
    flex-shrink: 0;
}

.game-item:hover[b-soj326jieh] {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.01);
}

.game-icon[b-soj326jieh] {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    min-width: 24px;
    flex-shrink: 0;
}

.game-info[b-soj326jieh] {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    line-height: 1.2;
}

.game-name[b-soj326jieh] {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.game-description[b-soj326jieh] {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
    margin: 0;
}

.game-stats[b-soj326jieh] {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 2px;
}

.game-xp-requirement[b-soj326jieh] {
    font-size: 10px;
    color: #ffd54f;
    font-weight: 600;
    padding: 2px 6px;
    background: rgba(255, 213, 79, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 213, 79, 0.4);
}

.coming-soon-tag[b-soj326jieh] {
    font-size: 10px;
    color: #ff6b6b;
    font-weight: 700;
    padding: 2px 6px;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-players[b-soj326jieh] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.game-difficulty[b-soj326jieh] {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-difficulty.difficulty-fácil[b-soj326jieh] {
    background: rgba(76, 175, 80, 0.3);
    color: #fff;
    border: 1px solid rgba(76, 175, 80, 0.6);
}

.game-difficulty.difficulty-médio[b-soj326jieh] {
    background: rgba(255, 193, 7, 0.3);
    color: #fff;
    border: 1px solid rgba(255, 193, 7, 0.6);
}

.game-difficulty.difficulty-difícil[b-soj326jieh] {
    background: rgba(244, 67, 54, 0.3);
    color: #fff;
    border: 1px solid rgba(244, 67, 54, 0.6);
}
/* /Components/DynamicsCards/NotificationsCard.razor.rz.scp.css */
/* NotificationsCard - Estilos internos */

.notifications-content[b-wpng1e8uke] {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    padding: 18px;
    overflow: hidden;
}

.card-header[b-wpng1e8uke] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.unread-badge[b-wpng1e8uke] {
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
}

/* Estados de loading e vazio */
.loading-state[b-wpng1e8uke],
.empty-state[b-wpng1e8uke] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.loading-state .spinner[b-wpng1e8uke] {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spin-b-wpng1e8uke 0.8s linear infinite;
}

@keyframes spin-b-wpng1e8uke {
    to { transform: rotate(360deg); }
}

.empty-state i[b-wpng1e8uke] {
    font-size: 32px;
}

/* Lista de notificações */
.notifications-list[b-wpng1e8uke] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    flex: 1;
    padding-right: 6px;
    margin-top: 12px;
}

/* Scrollbar discreto */
.notifications-list[b-wpng1e8uke]::-webkit-scrollbar {
    width: 4px;
}

.notifications-list[b-wpng1e8uke]::-webkit-scrollbar-track {
    background: transparent;
}

.notifications-list[b-wpng1e8uke]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.notifications-list[b-wpng1e8uke]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Item de notificação - compacto */
.notification-item[b-wpng1e8uke] {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 10px;
    transition: all 0.3s ease;
    min-height: 70px;
}

.notification-item:hover[b-wpng1e8uke] {
    background: rgba(255, 255, 255, 0.2);
}

.notification-item.seen[b-wpng1e8uke] {
    opacity: 0.6;
}

.notification-item.unread[b-wpng1e8uke] {
    background: rgba(255, 255, 255, 0.1);
}

/* Avatar */
.notif-avatar[b-wpng1e8uke] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.notif-avatar img[b-wpng1e8uke] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder[b-wpng1e8uke] {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Corpo da notificação */
.notif-body[b-wpng1e8uke] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notif-top[b-wpng1e8uke] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.notif-title[b-wpng1e8uke] {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-unread-dot[b-wpng1e8uke] {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
}

.notif-meta[b-wpng1e8uke] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.notif-sender[b-wpng1e8uke] {
    font-weight: 500;
}

.notif-separator[b-wpng1e8uke] {
    opacity: 0.5;
}

.notif-date[b-wpng1e8uke] {
    white-space: nowrap;
}

/* Badge de tipo */
.notif-type-badge[b-wpng1e8uke] {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
}

/* Cores por tipo */
.type-pedagogico .notif-type-badge[b-wpng1e8uke] {
    background: rgba(168, 85, 247, 0.25);
    color: #c084fc;
}

.type-agenda .notif-type-badge[b-wpng1e8uke] {
    background: rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.type-aula .notif-type-badge[b-wpng1e8uke] {
    background: rgba(59, 130, 246, 0.25);
    color: #60a5fa;
}

.type-default .notif-type-badge[b-wpng1e8uke] {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
}
/* /Components/DynamicsCards/SubscriptionCard.razor.rz.scp.css */
.subscription-content[b-s8vsu0iq3w] {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    padding: 18px;
    overflow: hidden;
}

.subscription-list[b-s8vsu0iq3w] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    flex: 1;
    padding-right: 8px;
}

/* Scrollbar styling - discreto */
.subscription-list[b-s8vsu0iq3w]::-webkit-scrollbar {
    width: 4px;
}

.subscription-list[b-s8vsu0iq3w]::-webkit-scrollbar-track {
    background: transparent;
}

.subscription-list[b-s8vsu0iq3w]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.subscription-list[b-s8vsu0iq3w]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.subscription-item[b-s8vsu0iq3w] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.subscription-item:hover[b-s8vsu0iq3w] {
    background: rgba(255, 255, 255, 0.2);
}

.subscription-item i[b-s8vsu0iq3w] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    min-width: 18px;
}

.subscription-label[b-s8vsu0iq3w] {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
    flex: 1;
}

.subscription-value[b-s8vsu0iq3w] {
    font-size: 11px;
    color: #fff;
    font-weight: 600;
}

.subscription-item.status-inactive[b-s8vsu0iq3w] {
    background: rgba(255, 152, 0, 0.15);
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.subscription-item.status-inactive i[b-s8vsu0iq3w] {
    color: #ffa726;
}

.no-subscription-text[b-s8vsu0iq3w] {
    font-size: 13px;
    color: #ffcc80;
    font-weight: 600;
}

.subscription-note[b-s8vsu0iq3w] {
    margin: 8px 0 0 0;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-style: italic;
    flex-shrink: 0;
}
/* /Components/DynamicsCards/TipsCard.razor.rz.scp.css */
/* TipsCard - Estilos internos apenas */

.tips-content[b-vqui2tbot9] {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    padding: 18px;
}

.tip-body[b-vqui2tbot9] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding: 10px;
    height: 100%;
    justify-content: center;
    padding-top: 5px;
}

.tip-icon-large[b-vqui2tbot9] {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: tipIconPulse-b-vqui2tbot9 3s ease-in-out infinite;
    position: relative;
}

.tip-icon-large[b-vqui2tbot9]::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: tipIconGlow-b-vqui2tbot9 3s ease-in-out infinite;
}

@keyframes tipIconPulse-b-vqui2tbot9 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes tipIconGlow-b-vqui2tbot9 {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0.6; }
}

.tip-category-badge[b-vqui2tbot9] {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tip-title[b-vqui2tbot9] {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #fff;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    margin: 0;
    line-height: 1.3;
}

.tip-description[b-vqui2tbot9] {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.3;
    margin: -8px 0 0 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 0 8px;
}
/* /Components/ExitGameModal.razor.rz.scp.css */
/* ExitGameModal - Estilo Glassmorphism */

.exit-game-overlay[b-ixx6apq6pg] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn-b-ixx6apq6pg 0.2s ease-out;
}

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

.exit-game-card[b-ixx6apq6pg] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.3) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideUp-b-ixx6apq6pg 0.3s ease-out;
}

@keyframes slideUp-b-ixx6apq6pg {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Icone */
.card-icon[b-ixx6apq6pg] {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.card-icon.game[b-ixx6apq6pg] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.4) 100%);
    border: 2px solid rgba(139, 92, 246, 0.5);
    color: #a78bfa;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Titulo */
.card-title[b-ixx6apq6pg] {
    font-family: 'Bangers', cursive;
    font-size: 26px;
    color: #fff;
    margin: 0 0 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Mensagem */
.card-message[b-ixx6apq6pg] {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 24px;
}

.card-message p[b-ixx6apq6pg] {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

.card-message strong[b-ixx6apq6pg] {
    color: #fff;
}

/* Botoes */
.card-actions[b-ixx6apq6pg] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.card-actions button[b-ixx6apq6pg] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-cancel[b-ixx6apq6pg] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.8);
}

.btn-cancel:hover[b-ixx6apq6pg] {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.btn-confirm[b-ixx6apq6pg] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.4);
}

.btn-confirm:hover[b-ixx6apq6pg] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 87, 108, 0.5);
}
/* /Components/FixedCards/ConhecaCampusCard.razor.rz.scp.css */
/* ConhecaCampusCard - Estilos específicos do componente */

/* ==================== CAMPUS TABS SYSTEM ==================== */

.conheca-tabs-container[b-myy1hei03p] {
    min-height: 320px;
    margin-bottom: 60px;
}

.conheca-tab[b-myy1hei03p] {
    display: none;
    flex-direction: column;
    gap: 12px;
    animation: fadeIn-b-myy1hei03p 0.4s ease-in-out;
}

.conheca-tab.active[b-myy1hei03p] {
    display: flex;
}

@keyframes fadeIn-b-myy1hei03p {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-title[b-myy1hei03p] {
    font-family: 'Bangers';
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.tab-description[b-myy1hei03p] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 8px 0;
    line-height: 1.5;
}

.tab-description-large[b-myy1hei03p] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    line-height: 1.6;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Video Container */
.video-container[b-myy1hei03p] {
    position: relative;
    height: 320px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.video-container iframe[b-myy1hei03p],
.video-container video[b-myy1hei03p] {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: contain;
}

/* Video Thumbnail */
.video-thumb[b-myy1hei03p] {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-thumb img[b-myy1hei03p] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

[b-myy1hei03p] .video-thumb .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

[b-myy1hei03p] .video-thumb .play-button i {
    font-size: 24px;
    color: #fff;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

[b-myy1hei03p] .video-thumb:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(99, 102, 241, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

[b-myy1hei03p] .video-thumb:hover .play-button i {
    transform: scale(1.1);
}

/* Features */
.conheca-features[b-myy1hei03p] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px 0;
}

.feature-item[b-myy1hei03p] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover[b-myy1hei03p] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.feature-icon[b-myy1hei03p] {
    font-size: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-info[b-myy1hei03p] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-info strong[b-myy1hei03p] {
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-info small[b-myy1hei03p] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

/* Campus Stats */
.campus-stats[b-myy1hei03p] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.stat-box[b-myy1hei03p] {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover[b-myy1hei03p] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.stat-number[b-myy1hei03p] {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 6px;
}

.stat-label[b-myy1hei03p] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* Stats Loading State */
.campus-stats.loading .stat-box.skeleton[b-myy1hei03p] {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%
    );
    background-size: 200% 100%;
    animation: shimmer-b-myy1hei03p 1.5s infinite;
    min-height: 80px;
}

@keyframes shimmer-b-myy1hei03p {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Stats Error State */
.campus-stats.error[b-myy1hei03p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    gap: 12px;
}

.campus-stats.error p[b-myy1hei03p] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 0;
}

.retry-btn[b-myy1hei03p] {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.retry-btn:hover[b-myy1hei03p] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Highlights */
.conheca-highlights[b-myy1hei03p] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 6px 0;
}

.highlight-badge[b-myy1hei03p] {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 193, 7, 0.3));
    border: 1px solid rgba(255, 235, 59, 0.5);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(255, 193, 7, 0.3);
    animation: badgePulse-b-myy1hei03p 2s ease-in-out infinite;
}

@keyframes badgePulse-b-myy1hei03p {
    0%, 100% { box-shadow: 0 2px 6px rgba(255, 193, 7, 0.3); }
    50% { box-shadow: 0 2px 12px rgba(255, 193, 7, 0.6); }
}

/* Tour Features */
.tour-features[b-myy1hei03p] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.tour-item[b-myy1hei03p] {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.tour-item:hover[b-myy1hei03p] {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.btn-conheca[b-myy1hei03p] {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 6px;
}

.btn-conheca:hover[b-myy1hei03p] {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.conheca-tip[b-myy1hei03p] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin: 6px 0 0 0;
    font-style: italic;
}

/* Tabs Navigation - Centralizado e mais visível */
.tabs-navigation[b-myy1hei03p] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    margin-top: auto;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tab-nav-btn[b-myy1hei03p] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tab-nav-btn:hover:not(:disabled)[b-myy1hei03p] {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.tab-nav-btn:active:not(:disabled)[b-myy1hei03p] {
    transform: translateY(0);
}

.tab-nav-btn:disabled[b-myy1hei03p] {
    opacity: 0.25;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.tab-nav-btn i[b-myy1hei03p] {
    pointer-events: none;
    font-size: 14px;
}

.tabs-indicators[b-myy1hei03p] {
    display: flex;
    gap: 8px;
    flex: 0;
    padding: 0 8px;
}

.tab-indicator[b-myy1hei03p] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-indicator:hover[b-myy1hei03p] {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.tab-indicator.active[b-myy1hei03p] {
    background: #fff;
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Grid de Personagens */
.personagens-grid[b-myy1hei03p] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 8px 0;
}

.personagem-card[b-myy1hei03p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.personagem-card[b-myy1hei03p]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.personagem-card:hover[b-myy1hei03p]::before {
    opacity: 1;
}

.personagem-card:hover[b-myy1hei03p] {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.personagem-card img[b-myy1hei03p] {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.personagem-card:hover img[b-myy1hei03p] {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transform: scale(1.1);
}

.personagem-nome[b-myy1hei03p] {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* ==================== CREDITS TAB ==================== */

.credits-container[b-myy1hei03p] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 340px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.credits-container[b-myy1hei03p]::-webkit-scrollbar {
    width: 4px;
}

.credits-container[b-myy1hei03p]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.credits-container[b-myy1hei03p]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.credits-container[b-myy1hei03p]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.credits-section[b-myy1hei03p] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.credit-category[b-myy1hei03p] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 10px 12px;
    transition: all 0.3s ease;
}

.credit-category:hover[b-myy1hei03p] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.credit-category.compact[b-myy1hei03p] {
    padding: 8px 12px;
}

.category-header[b-myy1hei03p] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.category-header i[b-myy1hei03p] {
    font-size: 14px;
    color: #a5b4fc;
    filter: drop-shadow(0 2px 4px rgba(165, 180, 252, 0.4));
}

.category-header span[b-myy1hei03p] {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.credit-item[b-myy1hei03p] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
    transition: all 0.2s ease;
}

.credit-item:hover[b-myy1hei03p] {
    transform: translateX(4px);
}

.credit-item > i[b-myy1hei03p] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.credit-info[b-myy1hei03p] {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    flex: 1;
}

.credit-role[b-myy1hei03p] {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    line-height: 1.2;
}

.credit-name[b-myy1hei03p] {
    font-size: 11px;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.credits-footer[b-myy1hei03p] {
    text-align: center;
    padding: 12px 0 6px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 4px;
}

.credits-footer p[b-myy1hei03p] {
    margin: 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
}

.credits-footer p strong[b-myy1hei03p] {
    color: #fff;
    font-weight: 700;
}

.credits-footer .credits-year[b-myy1hei03p] {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
}
/* /Components/FixedCards/GameCard.razor.rz.scp.css */
.game-card-content[b-d7p4ov27lb] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 12px;
}

.game-loading[b-d7p4ov27lb] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.game-loading p[b-d7p4ov27lb] {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-loading small[b-d7p4ov27lb] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.game-active-container[b-d7p4ov27lb] {
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.game-canvas-wrapper[b-d7p4ov27lb] {
    background: #231F20;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

#unity-canvas-home[b-d7p4ov27lb] {
    display: block;
    width: 640px;
    height: 390px;
}

.game-buttons[b-d7p4ov27lb] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-game[b-d7p4ov27lb] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.btn-game i[b-d7p4ov27lb] {
    font-size: 16px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-game span[b-d7p4ov27lb] {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-game:hover[b-d7p4ov27lb] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
/* /Components/FixedCards/LogoCard.razor.rz.scp.css */
/* LogoCard - Estilos internos apenas */
.logo-container[b-ceoi6wzh9w] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.logo-img[b-ceoi6wzh9w] {
    max-width: 100%;
    max-height: 90px;
    position: relative;
    z-index: 2;
}

/* /Components/FixedCards/LogoCard2.razor.rz.scp.css */
/* LogoCard2 - Estilos internos apenas */

.logo-container[b-juwompb4ys] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 5px;    
}

.logo-img[b-juwompb4ys] {
    max-width: 100%;
    max-height: 90px;
    position: relative;
    z-index: 2;
}



/* /Components/FixedCards/ProfileCard.razor.rz.scp.css */
/* ProfileCard - Estilos internos apenas */

.player-avatar[b-nuea44xuz2] {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.avatar-svg[b-nuea44xuz2] {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.player-info-extended[b-nuea44xuz2] {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    align-self: center;
    flex: 1;
}

.player-basic[b-nuea44xuz2] {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.player-basic h2[b-nuea44xuz2] {
    font-size: 18px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.player-basic .player-title[b-nuea44xuz2] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.2;
}

/* ==================== PLAYER STATS (XP) ==================== */

.stat-item[b-nuea44xuz2] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    min-width: auto;
}

.stat-item:hover[b-nuea44xuz2] {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.stat-icon[b-nuea44xuz2] {
    font-size: 42px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* XP - Amarelo com neon suave e sombra azul céu */
.xp-stat .stat-icon[b-nuea44xuz2] {
    color: #fde047;
    text-shadow: 0 0 8px rgba(253, 224, 71, 0.5), 0 2px 6px rgba(56, 189, 248, 0.4);
}

.stat-info[b-nuea44xuz2] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value[b-nuea44xuz2] {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
}

.stat-label[b-nuea44xuz2] {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Container dos Botões */
.buttons-container[b-nuea44xuz2] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

/* Botões Uniformes */
.btn-action[b-nuea44xuz2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 16px;
    min-width: 80px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-action i[b-nuea44xuz2] {
    font-size: 24px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-action span[b-nuea44xuz2] {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-action:hover[b-nuea44xuz2] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}


.btn-action-iniciar[b-nuea44xuz2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 16px;
    min-width: 80px;
    border: none;
    border-radius: 12px;
    background: rgba(10, 255, 52, 0.56);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-action-iniciar i[b-nuea44xuz2] {
    font-size: 24px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-action-iniciar span[b-nuea44xuz2] {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-action-iniciar:hover[b-nuea44xuz2] {
    background: rgb(39, 192, 61);
    transform: translateY(-2px);
}


.btn-action-sair[b-nuea44xuz2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 16px;
    min-width: 80px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 6, 68, 0.66);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-action-sair i[b-nuea44xuz2] {
    font-size: 24px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-action-sair span[b-nuea44xuz2] {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-action-sair:hover[b-nuea44xuz2] {
    background: rgb(213, 27, 67);
    transform: translateY(-2px);
}





/* Avatar Image from API */
.avatar-image[b-nuea44xuz2] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Player School and Class Info */
.player-school[b-nuea44xuz2],
.player-class[b-nuea44xuz2] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    margin: 2px 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.player-school i[b-nuea44xuz2],
.player-class i[b-nuea44xuz2] {
    font-size: 10px;
}

/* Skeleton Loading */
.skeleton-loading[b-nuea44xuz2] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.skeleton[b-nuea44xuz2] {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 75%
    );
    background-size: 200% 100%;
    animation: shimmer-b-nuea44xuz2 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer-b-nuea44xuz2 {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-line[b-nuea44xuz2] {
    height: 12px;
    width: 100%;
}

.skeleton-line-short[b-nuea44xuz2] {
    height: 12px;
    width: 70%;
}

.skeleton-stat[b-nuea44xuz2] {
    height: 20px;
    width: 50px;
}

/* ==================== QUICK ACTIONS GRID ==================== */

.quick-actions-grid[b-nuea44xuz2] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 6px;
    padding: 4px;
}

.quick-btn[b-nuea44xuz2] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.quick-btn i[b-nuea44xuz2] {
    font-size: 16px;
    color: #fff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.quick-btn:hover:not(:disabled)[b-nuea44xuz2] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.quick-btn:disabled[b-nuea44xuz2] {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Cores específicas para cada botão (hover) */
.quick-btn.tips:hover:not(:disabled)[b-nuea44xuz2] { background: rgba(255, 193, 7, 0.4); }
.quick-btn.eventos:hover:not(:disabled)[b-nuea44xuz2] { background: rgba(220, 53, 69, 0.4); }
.quick-btn.minigames:hover:not(:disabled)[b-nuea44xuz2] { background: rgba(111, 66, 193, 0.4); }
.quick-btn.achievements:hover:not(:disabled)[b-nuea44xuz2] { background: rgba(255, 193, 7, 0.4); }
.quick-btn.notifications:hover:not(:disabled)[b-nuea44xuz2] { background: rgba(255, 87, 34, 0.4); }
.quick-btn.subscription:hover:not(:disabled)[b-nuea44xuz2] { background: rgba(40, 167, 69, 0.4); }
.quick-btn.extrato:hover:not(:disabled)[b-nuea44xuz2] { background: rgba(23, 162, 184, 0.4); }
.quick-btn.config:hover:not(:disabled)[b-nuea44xuz2] { background: rgba(108, 117, 125, 0.4); }
.quick-btn.loja:hover:not(:disabled)[b-nuea44xuz2] { background: rgba(32, 201, 151, 0.4); }
.quick-btn.about:hover:not(:disabled)[b-nuea44xuz2] { background: rgba(96, 165, 250, 0.4); }

/* Badge de notificações */
.notification-badge[b-nuea44xuz2] {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #ef4444;
    color: white;
    font-size: 9px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}
/* /Components/FixedCards/SessionBlockedCard.razor.rz.scp.css */
.session-blocked-content[b-9hy7vjbvsd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
    color: white;
}

.session-blocked-icon[b-9hy7vjbvsd] {
    font-size: 4rem;
    color: #ff8a80;
    margin-bottom: 1.5rem;
    animation: pulse-b-9hy7vjbvsd 2s infinite;
}

@keyframes pulse-b-9hy7vjbvsd {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.session-blocked-title[b-9hy7vjbvsd] {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.session-blocked-message[b-9hy7vjbvsd] {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.session-blocked-detail[b-9hy7vjbvsd] {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.session-blocked-info[b-9hy7vjbvsd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.session-blocked-info i[b-9hy7vjbvsd] {
    font-size: 1.3rem;
    color: #ffab91;
}

.btn-session-retry[b-9hy7vjbvsd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-session-retry:hover[b-9hy7vjbvsd] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-session-retry i[b-9hy7vjbvsd] {
    font-size: 1.1rem;
}
/* /Components/FloatingButtons.razor.rz.scp.css */
.floating-netbil[b-4t6a8wwyk6] {
    position: fixed;
    bottom: 24px;
    right: 92px;
    height: 56px;
    padding: 10px 20px;
    border-radius: 28px;
    background: linear-gradient(135deg,
        rgba(188, 1, 57, 0.95) 0%,
        rgba(246, 2, 76, 0.92) 75%,
        rgba(251, 51, 99, 0.92) 100%
    );
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(188, 1, 57, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    text-decoration: none;
}

.floating-netbil:hover[b-4t6a8wwyk6] {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(188, 1, 57, 0.5);
}

.floating-netbil img[b-4t6a8wwyk6] {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.floating-theme-toggle[b-4t6a8wwyk6] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
}

.floating-theme-toggle:hover[b-4t6a8wwyk6] {
    transform: scale(1.1) rotate(15deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.25));
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.floating-theme-toggle:active[b-4t6a8wwyk6] {
    transform: scale(0.95);
}

.floating-theme-toggle i[b-4t6a8wwyk6] {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: iconPulse-b-4t6a8wwyk6 3s ease-in-out infinite;
}

@keyframes iconPulse-b-4t6a8wwyk6 {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}
/* /Components/FullscreenPromptModal.razor.rz.scp.css */
/* FullscreenPromptModal - Estilo Glassmorphism */

.fullscreen-prompt-overlay[b-lvxzmpkqbb] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn-b-lvxzmpkqbb 0.2s ease-out;
}

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

.fullscreen-prompt-card[b-lvxzmpkqbb] {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.3) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideUp-b-lvxzmpkqbb 0.3s ease-out;
}

@keyframes slideUp-b-lvxzmpkqbb {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Icone */
.card-icon[b-lvxzmpkqbb] {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.card-icon.fullscreen[b-lvxzmpkqbb] {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(16, 185, 129, 0.4) 100%);
    border: 2px solid rgba(34, 197, 94, 0.5);
    color: #4ade80;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

/* Titulo */
.card-title[b-lvxzmpkqbb] {
    font-family: 'Bangers', cursive;
    font-size: 26px;
    color: #fff;
    margin: 0 0 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Mensagem */
.card-message[b-lvxzmpkqbb] {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 24px;
}

.card-message p[b-lvxzmpkqbb] {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

.card-message p.hint[b-lvxzmpkqbb] {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.card-message strong[b-lvxzmpkqbb] {
    color: #fff;
}

/* Botoes */
.card-actions[b-lvxzmpkqbb] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.card-actions button[b-lvxzmpkqbb] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-decline[b-lvxzmpkqbb] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.8);
}

.btn-decline:hover[b-lvxzmpkqbb] {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.btn-accept[b-lvxzmpkqbb] {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.btn-accept:hover[b-lvxzmpkqbb] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.5);
}
/* /Components/LogoutConfirmModal.razor.rz.scp.css */
/* LogoutConfirmModal - Estilo Glassmorphism */

.logout-overlay[b-6n93x6rfmg] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn-b-6n93x6rfmg 0.2s ease-out;
}

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

.logout-card[b-6n93x6rfmg] {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.25) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideUp-b-6n93x6rfmg 0.3s ease-out;
}

@keyframes slideUp-b-6n93x6rfmg {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Ícone */
.card-icon[b-6n93x6rfmg] {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.card-icon.warning[b-6n93x6rfmg] {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(245, 158, 11, 0.4) 100%);
    border: 2px solid rgba(251, 191, 36, 0.5);
    color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

/* Título */
.card-title[b-6n93x6rfmg] {
    font-family: 'Bangers', cursive;
    font-size: 26px;
    color: #fff;
    margin: 0 0 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Mensagem */
.card-message[b-6n93x6rfmg] {
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
}

.card-message p[b-6n93x6rfmg] {
    margin: 0;
    color: #fef3c7;
    font-size: 14px;
    line-height: 1.5;
}

.card-message strong[b-6n93x6rfmg] {
    color: #fff;
}

/* Info Box */
.card-info[b-6n93x6rfmg] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 24px;
    text-align: left;
}

.card-info i[b-6n93x6rfmg] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.card-info span[b-6n93x6rfmg] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.5;
}

/* Botões */
.card-actions[b-6n93x6rfmg] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.card-actions button[b-6n93x6rfmg] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-cancel[b-6n93x6rfmg] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.8);
}

.btn-cancel:hover[b-6n93x6rfmg] {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.btn-confirm[b-6n93x6rfmg] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.btn-confirm:hover[b-6n93x6rfmg] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.5);
}

/* Responsivo */
@media (max-width: 480px) {
    .logout-card[b-6n93x6rfmg] {
        padding: 24px 20px;
    }

    .card-title[b-6n93x6rfmg] {
        font-size: 22px;
    }

    .card-actions[b-6n93x6rfmg] {
        flex-direction: column;
    }

    .card-actions button[b-6n93x6rfmg] {
        width: 100%;
    }
}
/* /Components/MobileGuard.razor.rz.scp.css */
/* MobileGuard - Estilo Glassmorphism */

.mobile-overlay[b-o9xuq723wm] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Loading State */
.mobile-loading[b-o9xuq723wm] {
    text-align: center;
    color: #fff;
}

.loading-spinner[b-o9xuq723wm] {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-o9xuq723wm 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin-b-o9xuq723wm {
    to { transform: rotate(360deg); }
}

.mobile-loading p[b-o9xuq723wm] {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Card Principal */
.mobile-card[b-o9xuq723wm] {
    background: linear-gradient(-45deg, #667eea, #764ba2, #6366f1, #8b5cf6);
    background-size: 400% 400%;
    animation: slideUp-b-o9xuq723wm 0.3s ease-out, gradientShift-b-o9xuq723wm 15s ease infinite;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes gradientShift-b-o9xuq723wm {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slideUp-b-o9xuq723wm {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Ícone */
.card-icon[b-o9xuq723wm] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.4) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.card-icon i[b-o9xuq723wm] {
    font-size: 50px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Título */
.card-title[b-o9xuq723wm] {
    font-family: 'Bangers', cursive;
    font-size: 26px;
    color: #fff;
    margin: 0 0 24px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Mensagem */
.card-message[b-o9xuq723wm] {
    margin-bottom: 28px;
}

.card-message p[b-o9xuq723wm] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.card-message p:last-child[b-o9xuq723wm] {
    margin-bottom: 0;
}

.card-message strong[b-o9xuq723wm] {
    color: #fff;
}

/* Features */
.card-features[b-o9xuq723wm] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-item[b-o9xuq723wm] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: left;
}

.feature-item i[b-o9xuq723wm] {
    font-size: 24px;
    color: #a5b4fc;
    flex-shrink: 0;
}

.feature-item span[b-o9xuq723wm] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

/* Info */
.card-info[b-o9xuq723wm] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 10px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.card-info i[b-o9xuq723wm] {
    font-size: 18px;
    color: #fbbf24;
}

.card-info span[b-o9xuq723wm] {
    color: #fef3c7;
    font-size: 13px;
}

/* Resolution Error Variant */
.resolution-error[b-o9xuq723wm] {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.resolution-card[b-o9xuq723wm] {
    background: linear-gradient(-45deg, #f97316, #ea580c, #dc2626, #b91c1c);
    background-size: 400% 400%;
}

.resolution-icon[b-o9xuq723wm] {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(220, 38, 38, 0.4) 100%);
    border: 2px solid rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}
/* /Components/PersonagemDetalhes.razor.rz.scp.css */
.personagem-detalhes[b-uki6e97pa6] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    animation: fadeIn-b-uki6e97pa6 0.3s ease;
    justify-content: center;
}

.btn-voltar[b-uki6e97pa6] {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-voltar:hover[b-uki6e97pa6] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-3px);
}

.personagem-content[b-uki6e97pa6] {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.personagem-avatar[b-uki6e97pa6] {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.personagem-avatar img[b-uki6e97pa6] {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
    animation: floatAnimation-b-uki6e97pa6 3s ease-in-out infinite;
}

@keyframes floatAnimation-b-uki6e97pa6 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.personagem-info[b-uki6e97pa6] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.personagem-nome[b-uki6e97pa6] {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    margin: 0;
    line-height: 1.2;
}

.personagem-role[b-uki6e97pa6] {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.personagem-descricao[b-uki6e97pa6] {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn-b-uki6e97pa6 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/SessionBlockedModal.razor.rz.scp.css */
.session-blocked-overlay[b-2hgf4q4a1g] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.session-blocked-card[b-2hgf4q4a1g] {
    background: linear-gradient(135deg, rgba(220, 63, 86, 0.15) 0%, rgba(236, 85, 107, 0.25) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideUp-b-2hgf4q4a1g 0.4s ease-out;
}

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

.card-icon[b-2hgf4q4a1g] {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(245, 158, 11, 0.4) 100%);
    border: 2px solid rgba(251, 191, 36, 0.5);
    color: #fbbf24;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.card-title[b-2hgf4q4a1g] {
    font-family: 'Bangers', cursive;
    font-size: 32px;
    color: #fff;
    margin: 0 0 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card-message[b-2hgf4q4a1g] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.card-message p[b-2hgf4q4a1g] {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
}

.card-info[b-2hgf4q4a1g] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 28px;
    text-align: left;
}

.card-info i[b-2hgf4q4a1g] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.card-info span[b-2hgf4q4a1g] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
}

.card-actions[b-2hgf4q4a1g] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.card-actions button[b-2hgf4q4a1g] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary[b-2hgf4q4a1g] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover[b-2hgf4q4a1g] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-secondary[b-2hgf4q4a1g] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover[b-2hgf4q4a1g] {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
/* /Components/SessionGuard.razor.rz.scp.css */
.session-overlay[b-rhbuzdbhef] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.session-loading[b-rhbuzdbhef] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.session-loading p[b-rhbuzdbhef] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.loading-spinner[b-rhbuzdbhef] {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin-b-rhbuzdbhef 1s linear infinite;
}

@keyframes spin-b-rhbuzdbhef {
    to { transform: rotate(360deg); }
}
/* /Components/SubscriptionGuard.razor.rz.scp.css */
/* SubscriptionGuard - Estilo Glassmorphism (igual LogoutConfirmModal) */

.subscription-overlay[b-ezzgwm9av1] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Loading State */
.subscription-loading[b-ezzgwm9av1] {
    text-align: center;
    color: #fff;
}

.loading-spinner[b-ezzgwm9av1] {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin-b-ezzgwm9av1 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin-b-ezzgwm9av1 {
    to { transform: rotate(360deg); }
}

.subscription-loading p[b-ezzgwm9av1] {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Card Principal - Gradiente Animado */
.subscription-card[b-ezzgwm9av1] {
    background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe);
    background-size: 400% 400%;
    animation: slideUp-b-ezzgwm9av1 0.3s ease-out, gradientShift-b-ezzgwm9av1 15s ease infinite;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 32px 40px;
    max-width: 700px;
    width: 90%;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes gradientShift-b-ezzgwm9av1 {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slideUp-b-ezzgwm9av1 {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Topo - Header + Mensagens lado a lado */
.card-top[b-ezzgwm9av1] {
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 24px;
}

/* Header - Ícone + Título */
.card-header[b-ezzgwm9av1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

/* Ícone Grande */
.card-icon[b-ezzgwm9av1] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.card-icon i[b-ezzgwm9av1] {
    font-size: 55px;
    line-height: 1;
}

.card-icon.error[b-ezzgwm9av1] {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(245, 158, 11, 0.4) 100%);
    border: 2px solid rgba(251, 191, 36, 0.5);
    color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

/* Título */
.card-title[b-ezzgwm9av1] {
    font-family: 'Bangers', cursive;
    font-size: 22px;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Mensagens */
.card-messages[b-ezzgwm9av1] {
    flex: 1;
    align-self: center;
}

.card-messages .message-greeting[b-ezzgwm9av1] {
    margin: 0 0 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.card-messages .message-greeting strong[b-ezzgwm9av1] {
    color: #fff;
}

.card-messages .message-error[b-ezzgwm9av1] {
    margin: 0 0 12px 0;
    color: #fef3c7;
    font-weight: 600;
    font-size: 15px;
}

.card-messages .message-info[b-ezzgwm9av1] {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.card-messages .message-info strong[b-ezzgwm9av1] {
    color: #fff;
}

/* Footer - Largura total */
.card-footer[b-ezzgwm9av1] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Contato */
.card-contact[b-ezzgwm9av1] {
    flex: 1;
}

.contact-title[b-ezzgwm9av1] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0 0 8px;
}

.contact-items[b-ezzgwm9av1] {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-item[b-ezzgwm9av1] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.contact-item:hover[b-ezzgwm9av1] {
    color: #fff;
}

.contact-item i[b-ezzgwm9av1] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.contact-item:hover i[b-ezzgwm9av1] {
    color: #fbbf24;
}

/* Botão */
.btn-primary[b-ezzgwm9av1] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    flex-shrink: 0;
}

.btn-primary:hover[b-ezzgwm9av1] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.5);
}

/* Responsivo */
@media (max-width: 650px) {
    .subscription-card[b-ezzgwm9av1] {
        padding: 24px 20px;
    }

    .card-top[b-ezzgwm9av1] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .card-header[b-ezzgwm9av1] {
        width: 100%;
    }

    .card-messages[b-ezzgwm9av1] {
        width: 100%;
        text-align: center;
    }

    .card-title[b-ezzgwm9av1] {
        font-size: 24px;
    }

    .card-footer[b-ezzgwm9av1] {
        flex-direction: column;
        align-items: stretch;
    }

    .card-contact[b-ezzgwm9av1] {
        text-align: center;
    }

    .contact-items[b-ezzgwm9av1] {
        justify-content: center;
    }

    .btn-primary[b-ezzgwm9av1] {
        width: 100%;
        justify-content: center;
    }
}
/* /Components/TabNavigation.razor.rz.scp.css */
.tab-navigation[b-od7nv0pt60] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto;
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.tab-nav-icon[b-od7nv0pt60] {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.tab-nav-icon:hover:not(:disabled)[b-od7nv0pt60] {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.tab-nav-icon:disabled[b-od7nv0pt60] {
    opacity: 0.3;
    cursor: not-allowed;
}

.tab-dots[b-od7nv0pt60] {
    display: flex;
    gap: 6px;
    padding: 0 6px;
}

.tab-dot[b-od7nv0pt60] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-dot:hover[b-od7nv0pt60] {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.tab-dot.active[b-od7nv0pt60] {
    background: #fff;
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}
/* /Components/TestModeModal.razor.rz.scp.css */
.testmode-modal-overlay[b-h9axz3zanl] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.testmode-modal[b-h9axz3zanl] {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 16px;
    padding: 24px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testmode-modal-header[b-h9axz3zanl] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #9c88ff;
    font-size: 1.25rem;
    font-weight: 600;
}

.testmode-modal-header i[b-h9axz3zanl] {
    font-size: 1.5rem;
}

.testmode-modal-body[b-h9axz3zanl] {
    color: #e0e0e0;
    margin-bottom: 24px;
}

.testmode-modal-body p[b-h9axz3zanl] {
    margin: 0 0 12px;
    line-height: 1.5;
}

.testmode-modal-body strong[b-h9axz3zanl] {
    color: #fff;
}

.testmode-info[b-h9axz3zanl] {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: rgba(156, 136, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid #9c88ff;
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-top: 16px;
}

.testmode-info i[b-h9axz3zanl] {
    color: #9c88ff;
    flex-shrink: 0;
    margin-top: 2px;
}

.testmode-modal-footer[b-h9axz3zanl] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.testmode-modal-footer button[b-h9axz3zanl] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 0.9rem;
}

.btn-testmode-no[b-h9axz3zanl] {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.btn-testmode-no:hover[b-h9axz3zanl] {
    background: rgba(255, 255, 255, 0.2);
}

.btn-testmode-yes[b-h9axz3zanl] {
    background: linear-gradient(135deg, #9c88ff, #7c5ce7);
    color: #fff;
}

.btn-testmode-yes:hover[b-h9axz3zanl] {
    background: linear-gradient(135deg, #a897ff, #8b6ef5);
    transform: translateY(-1px);
}
/* /Components/WelcomeBonusModal.razor.rz.scp.css */
/* WelcomeBonusModal - Estilo Glassmorphism */

.welcome-overlay[b-a0hd7dsk97] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn-b-a0hd7dsk97 0.2s ease-out;
}

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

.welcome-card[b-a0hd7dsk97] {
    background: linear-gradient(135deg, rgba(15, 80, 40, 0.92) 0%, rgba(10, 70, 50, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideUp-b-a0hd7dsk97 0.3s ease-out;
}

@keyframes slideUp-b-a0hd7dsk97 {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Icone */
.card-icon[b-a0hd7dsk97] {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.card-icon.celebration[b-a0hd7dsk97] {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.3) 0%, rgba(234, 179, 8, 0.4) 100%);
    border: 2px solid rgba(250, 204, 21, 0.5);
    color: #facc15;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
    animation: pulse-b-a0hd7dsk97 2s ease-in-out infinite;
}

@keyframes pulse-b-a0hd7dsk97 {
    0%, 100% { box-shadow: 0 0 20px rgba(250, 204, 21, 0.3); }
    50% { box-shadow: 0 0 30px rgba(250, 204, 21, 0.5); }
}

/* Titulo */
.card-title[b-a0hd7dsk97] {
    font-family: 'Bangers', cursive;
    font-size: 28px;
    color: #fff;
    margin: 0 0 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card-subtitle[b-a0hd7dsk97] {
    font-family: 'Bangers', cursive;
    font-size: 22px;
    color: #86efac;
    margin: 0 0 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Mensagem */
.card-message[b-a0hd7dsk97] {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
}

.card-message p[b-a0hd7dsk97] {
    margin: 0 0 8px;
    color: #dcfce7;
    font-size: 14px;
    line-height: 1.5;
}

.card-message p:last-child[b-a0hd7dsk97] {
    margin-bottom: 0;
}

.card-message strong[b-a0hd7dsk97] {
    color: #fff;
}

/* Info Box */
.card-info[b-a0hd7dsk97] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 24px;
    text-align: left;
}

.card-info i[b-a0hd7dsk97] {
    color: #facc15;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.card-info span[b-a0hd7dsk97] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.5;
}

/* Botao */
.card-actions[b-a0hd7dsk97] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.card-actions button[b-a0hd7dsk97] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-start[b-a0hd7dsk97] {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    padding: 14px 32px !important;
    font-size: 16px !important;
}

.btn-start:hover[b-a0hd7dsk97] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.5);
}

/* Responsivo */
@media (max-width: 480px) {
    .welcome-card[b-a0hd7dsk97] {
        padding: 24px 20px;
    }

    .card-title[b-a0hd7dsk97] {
        font-size: 24px;
    }

    .card-subtitle[b-a0hd7dsk97] {
        font-size: 18px;
    }

    .card-actions button[b-a0hd7dsk97] {
        width: 100%;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-caxojn5225] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

/* ==================== BACKGROUND CARTOON ==================== */

/* Fundo Cartoon - Céu Azul de Dia */
.background[b-caxojn5225] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1000;
    background: linear-gradient(180deg,
        #4fc3f7 0%,
        #29b6f6 15%,
        #03a9f4 30%,
        #039be5 50%,
        #0288d1 70%,
        #0277bd 85%,
        #81d4fa 100%
    );
    overflow: hidden;
}

body.day-mode .background[b-caxojn5225],
body:not(.night-mode) .background[b-caxojn5225] {
    background: linear-gradient(180deg,
        #4fc3f7 0%,
        #29b6f6 15%,
        #03a9f4 30%,
        #039be5 50%,
        #0288d1 70%,
        #0277bd 85%,
        #81d4fa 100%
    );
}

body.night-mode .background[b-caxojn5225] {
    background: linear-gradient(180deg,
        #0b1d3a 0%,
        #0a1730 25%,
        #081021 55%,
        #050b18 100%
    );
}

/* Sol brilhante */
.bg-moon[b-caxojn5225] {
    position: absolute;
    top: 40px;
    right: 80px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 50% 50%,
        #fff9c4 0%,
        #ffee58 30%,
        #fdd835 60%,
        #fbc02d 100%
    );
    border-radius: 50%;
    box-shadow:
        0 0 60px rgba(255, 235, 59, 0.8),
        0 0 120px rgba(255, 193, 7, 0.6),
        0 0 200px rgba(255, 152, 0, 0.4);
    animation: sunPulse-b-caxojn5225 4s ease-in-out infinite;
}

body.night-mode .bg-moon[b-caxojn5225] {
    background: radial-gradient(circle at 50% 50%,
        #e0e0e0 0%,
        #cfd8dc 40%,
        #b0bec5 70%,
        #90a4ae 100%
    );
    box-shadow:
        0 0 40px rgba(176, 190, 197, 0.4),
        0 0 80px rgba(176, 190, 197, 0.25),
        0 0 140px rgba(120, 144, 156, 0.2);
}

.bg-moon[b-caxojn5225]::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 235, 59, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: sunGlow-b-caxojn5225 3s ease-in-out infinite alternate;
}

@keyframes sunPulse-b-caxojn5225 {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes sunGlow-b-caxojn5225 {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* Raios de sol */
.stars[b-caxojn5225] {
    position: absolute;
    top: 40px;
    right: 80px;
    width: 100px;
    height: 100px;
}

.stars[b-caxojn5225]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    background:
        linear-gradient(0deg, transparent 45%, rgba(255, 235, 59, 0.3) 48%, rgba(255, 235, 59, 0.3) 52%, transparent 55%),
        linear-gradient(60deg, transparent 45%, rgba(255, 235, 59, 0.2) 48%, rgba(255, 235, 59, 0.2) 52%, transparent 55%),
        linear-gradient(120deg, transparent 45%, rgba(255, 235, 59, 0.2) 48%, rgba(255, 235, 59, 0.2) 52%, transparent 55%);
    animation: sunRays-b-caxojn5225 10s linear infinite;
}

body.night-mode .stars[b-caxojn5225]::before {
    background: radial-gradient(2px 2px at 20% 20%, rgba(255,255,255,0.8), transparent 50%),
        radial-gradient(1.5px 1.5px at 40% 60%, rgba(255,255,255,0.8), transparent 50%),
        radial-gradient(1.5px 1.5px at 70% 30%, rgba(255,255,255,0.8), transparent 50%),
        radial-gradient(1px 1px at 55% 80%, rgba(255,255,255,0.8), transparent 50%),
        radial-gradient(1.5px 1.5px at 80% 55%, rgba(255,255,255,0.8), transparent 50%);
    animation: none;
    opacity: 0.9;
}

@keyframes sunRays-b-caxojn5225 {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ==================== CENÁRIO DO CAMPUS ==================== */

.campus-scene[b-caxojn5225] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

body.night-mode .campus-scene[b-caxojn5225] {
    filter: brightness(0.65);
}

/* Colinas distantes */
.distant-hills[b-caxojn5225] {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    height: 150px;
    background:
        radial-gradient(ellipse 300px 100px at 10% 100%, #81c784 0%, transparent 70%),
        radial-gradient(ellipse 400px 120px at 30% 100%, #a5d6a7 0%, transparent 70%),
        radial-gradient(ellipse 350px 110px at 60% 100%, #81c784 0%, transparent 70%),
        radial-gradient(ellipse 300px 100px at 85% 100%, #a5d6a7 0%, transparent 70%);
}

/* Gramado principal */
.grass-layer[b-caxojn5225] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, #66bb6a 0%, #4caf50 40%, #43a047 100%);
}

.grass-layer[b-caxojn5225]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 8px 15px at 5% 0%, #81c784 0%, transparent 100%),
        radial-gradient(ellipse 6px 12px at 15% 0%, #7cb342 0%, transparent 100%),
        radial-gradient(ellipse 7px 14px at 25% 0%, #81c784 0%, transparent 100%),
        radial-gradient(ellipse 5px 10px at 35% 0%, #8bc34a 0%, transparent 100%),
        radial-gradient(ellipse 8px 16px at 45% 0%, #81c784 0%, transparent 100%),
        radial-gradient(ellipse 6px 11px at 55% 0%, #7cb342 0%, transparent 100%),
        radial-gradient(ellipse 7px 13px at 65% 0%, #81c784 0%, transparent 100%),
        radial-gradient(ellipse 5px 10px at 75% 0%, #8bc34a 0%, transparent 100%),
        radial-gradient(ellipse 8px 15px at 85% 0%, #81c784 0%, transparent 100%),
        radial-gradient(ellipse 6px 12px at 95% 0%, #7cb342 0%, transparent 100%);
}

body.night-mode .grass-layer[b-caxojn5225] {
    background: linear-gradient(180deg, #1b5e20 0%, #104017 50%, #0b3010 100%);
}

/* ==================== PÁSSAROS ==================== */

.bird[b-caxojn5225] {
    position: absolute;
    width: 20px;
    height: 8px;
}

.bird[b-caxojn5225]::before,
.bird[b-caxojn5225]::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 4px;
    background: #37474f;
    border-radius: 50%;
}

.bird[b-caxojn5225]::before {
    left: 0;
    transform: rotate(-20deg);
    animation: birdWingLeft-b-caxojn5225 0.3s ease-in-out infinite alternate;
}

.bird[b-caxojn5225]::after {
    right: 0;
    transform: rotate(20deg);
    animation: birdWingRight-b-caxojn5225 0.3s ease-in-out infinite alternate;
}

.bird-1[b-caxojn5225] {
    top: 15%;
    left: -30px;
    animation: birdFly-b-caxojn5225 20s linear infinite;
}

.bird-2[b-caxojn5225] {
    top: 22%;
    left: -50px;
    animation: birdFly-b-caxojn5225 25s linear infinite;
    animation-delay: 5s;
}

body.night-mode .bird[b-caxojn5225] {
    display: none;
}

@keyframes birdWingLeft-b-caxojn5225 {
    0% { transform: rotate(-20deg); }
    100% { transform: rotate(-40deg); }
}

@keyframes birdWingRight-b-caxojn5225 {
    0% { transform: rotate(20deg); }
    100% { transform: rotate(40deg); }
}

@keyframes birdFly-b-caxojn5225 {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(25vw) translateY(-20px); }
    50% { transform: translateX(50vw) translateY(10px); }
    75% { transform: translateX(75vw) translateY(-15px); }
    100% { transform: translateX(calc(100vw + 50px)) translateY(0); }
}

/* Nuvens animadas - Brancas e fofas */
.clouds[b-caxojn5225] {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cloud[b-caxojn5225] {
    position: absolute;
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 60%, #e0e0e0 100%);
    border-radius: 100px;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 -5px 15px rgba(0, 0, 0, 0.05),
        inset 0 5px 15px rgba(255, 255, 255, 0.8);
}

.cloud[b-caxojn5225]::before,
.cloud[b-caxojn5225]::after {
    content: '';
    position: absolute;
    background: linear-gradient(180deg, #fff 0%, #f5f5f5 60%, #e8e8e8 100%);
    border-radius: 50%;
    box-shadow:
        inset 0 -3px 10px rgba(0, 0, 0, 0.05),
        inset 0 3px 10px rgba(255, 255, 255, 0.8);
}

.cloud-1[b-caxojn5225] {
    width: 300px;
    height: 90px;
    top: 18%;
    left: -300px;
    animation: moveCloud-b-caxojn5225 35s linear infinite;
}

.cloud-1[b-caxojn5225]::before {
    width: 120px;
    height: 120px;
    top: -60px;
    left: 45px;
}

.cloud-1[b-caxojn5225]::after {
    width: 150px;
    height: 150px;
    top: -75px;
    left: 120px;
}

.cloud-2[b-caxojn5225] {
    width: 225px;
    height: 68px;
    top: 28%;
    left: -225px;
    animation: moveCloud-b-caxojn5225 45s linear infinite;
    animation-delay: 5s;
}

body.night-mode .cloud-2[b-caxojn5225] {
    animation: moveCloudNight-b-caxojn5225 80s linear infinite;
    animation-delay: 12s;
}

.cloud-2[b-caxojn5225]::before {
    width: 90px;
    height: 90px;
    top: -45px;
    left: 30px;
}

.cloud-2[b-caxojn5225]::after {
    width: 105px;
    height: 105px;
    top: -52px;
    left: 90px;
}

.cloud-3[b-caxojn5225] {
    width: 270px;
    height: 75px;
    top: 12%;
    left: -270px;
    animation: moveCloud-b-caxojn5225 40s linear infinite;
    animation-delay: 15s;
}

body.night-mode .cloud-3[b-caxojn5225] {
    animation: moveCloudNight-b-caxojn5225 95s linear infinite;
    animation-delay: 25s;
}

.cloud-3[b-caxojn5225]::before {
    width: 105px;
    height: 105px;
    top: -52px;
    left: 38px;
}

.cloud-3[b-caxojn5225]::after {
    width: 128px;
    height: 128px;
    top: -63px;
    left: 105px;
}

.cloud-4[b-caxojn5225] {
    width: 180px;
    height: 53px;
    top: 32%;
    left: -180px;
    animation: moveCloud-b-caxojn5225 50s linear infinite;
    animation-delay: 8s;
}

body.night-mode .cloud-4[b-caxojn5225] {
    animation: moveCloudNight-b-caxojn5225 90s linear infinite;
    animation-delay: 35s;
}

.cloud-4[b-caxojn5225]::before {
    width: 75px;
    height: 75px;
    top: -38px;
    left: 23px;
}

.cloud-4[b-caxojn5225]::after {
    width: 83px;
    height: 83px;
    top: -41px;
    left: 75px;
}

.cloud-5[b-caxojn5225] {
    width: 240px;
    height: 72px;
    top: 22%;
    left: -240px;
    animation: moveCloud-b-caxojn5225 38s linear infinite;
    animation-delay: 20s;
}

body.night-mode .cloud-5[b-caxojn5225] {
    animation: moveCloudNight-b-caxojn5225 85s linear infinite;
    animation-delay: 45s;
}

.cloud-5[b-caxojn5225]::before {
    width: 98px;
    height: 98px;
    top: -48px;
    left: 33px;
}

.cloud-5[b-caxojn5225]::after {
    width: 113px;
    height: 113px;
    top: -57px;
    left: 98px;
}

body.night-mode .cloud[b-caxojn5225] {
    opacity: 0.2;
    animation-duration: 60s;
}

@keyframes moveCloud-b-caxojn5225 {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 300px)); }
}

@keyframes moveCloudNight-b-caxojn5225 {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 300px)); }
}

@keyframes moveCloudNight-b-caxojn5225 {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 300px)); }
}

/* Elementos flutuantes */
.floating-elements[b-caxojn5225] {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* ==================== ANIMATED LOGOS ==================== */

.animated-background[b-caxojn5225] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -500;
    overflow: hidden;
    pointer-events: none;
}

.logo-float[b-caxojn5225] {
    position: absolute;
    background-image: url('/logoNetbil.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
}

/* Logo 1 - Grande, movimento diagonal lento */
.logo-1[b-caxojn5225] {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -15%;
    animation: float1-b-caxojn5225 50s ease-in-out infinite;
}

@keyframes float1-b-caxojn5225 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    50% {
        transform: translate(120vw, 30vh) rotate(15deg);
        opacity: 0.25;
    }
    90% {
        opacity: 0.15;
    }
}

/* Logo 2 - Média, movimento vertical */
.logo-2[b-caxojn5225] {
    width: 250px;
    height: 250px;
    top: -12%;
    right: 20%;
    animation: float2-b-caxojn5225 60s ease-in-out infinite 10s;
}

@keyframes float2-b-caxojn5225 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 0.18;
    }
    50% {
        transform: translate(-20vw, 110vh) rotate(-20deg);
        opacity: 0.28;
    }
    85% {
        opacity: 0.18;
    }
}

/* Logo 3 - Média, movimento horizontal */
.logo-3[b-caxojn5225] {
    width: 180px;
    height: 180px;
    bottom: 30%;
    left: -8%;
    animation: float3-b-caxojn5225 45s ease-in-out infinite 20s;
}

@keyframes float3-b-caxojn5225 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    12% {
        opacity: 0.14;
    }
    50% {
        transform: translate(105vw, -15vh) rotate(25deg);
        opacity: 0.22;
    }
    88% {
        opacity: 0.14;
    }
}

/* Logo 4 - Grande, movimento diagonal inverso */
.logo-4[b-caxojn5225] {
    width: 280px;
    height: 280px;
    bottom: 10%;
    right: -12%;
    animation: float4-b-caxojn5225 55s ease-in-out infinite 30s;
}

@keyframes float4-b-caxojn5225 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.16;
    }
    50% {
        transform: translate(-110vw, -40vh) rotate(-18deg);
        opacity: 0.24;
    }
    90% {
        opacity: 0.16;
    }
}

/* Logo 5 - Média, movimento em curva */
.logo-5[b-caxojn5225] {
    width: 220px;
    height: 220px;
    top: 50%;
    left: -10%;
    animation: float5-b-caxojn5225 70s ease-in-out infinite 40s;
}

@keyframes float5-b-caxojn5225 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 0.15;
    }
    25% {
        transform: translate(40vw, -20vh) rotate(10deg);
        opacity: 0.2;
    }
    50% {
        transform: translate(60vw, 10vh) rotate(20deg);
        opacity: 0.26;
    }
    75% {
        transform: translate(90vw, -10vh) rotate(30deg);
        opacity: 0.2;
    }
    85% {
        opacity: 0.15;
    }
}

/* Logo 6 - Média, movimento vertical lento */
.logo-6[b-caxojn5225] {
    width: 200px;
    height: 200px;
    top: -8%;
    left: 40%;
    animation: float6-b-caxojn5225 65s ease-in-out infinite 50s;
}

@keyframes float6-b-caxojn5225 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    12% {
        opacity: 0.14;
    }
    50% {
        transform: translate(10vw, 110vh) rotate(-15deg);
        opacity: 0.2;
    }
    88% {
        opacity: 0.14;
    }
}

main[b-caxojn5225] {
    flex: 1;
    display: flex;
    align-items: center;      /* Centraliza verticalmente */
    justify-content: center;  /* Centraliza horizontalmente */
    padding: 0;
    overflow: auto;
    position: relative;
    z-index: 1;
}

.main[b-caxojn5225] {
    position: relative;
    z-index: 1;
}

.sidebar[b-caxojn5225] {
    background: url('bg.png') no-repeat center center fixed;
}

.content[b-caxojn5225] {
    padding-top: 0;
}

.profile-icon[b-caxojn5225] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    overflow: hidden;
    transition: transform 0.2s;
}

.profile-icon:hover[b-caxojn5225] {
    transform: scale(1.1);
}

.profile-icon img[b-caxojn5225] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 640.98px) {

}

@media (min-width: 641px) {
    .page[b-caxojn5225] {
        /* background-color: var(--roxo-campus5); */ /* Comentado para permitir backgrounds customizados nas páginas */
    }

    .sidebar[b-caxojn5225] {
        width: 100%;
        height:  80px;
        position: sticky;
        top: 0;
    }

    .content[b-caxojn5225] {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}
/* /Pages/Authentication/LoginFailed.razor.rz.scp.css */
/* LoginFailed - Estilo Glassmorphism (igual SubscriptionGuard) */

.loginfailed-overlay[b-osolwcgi7b] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Card Principal - Gradiente Animado Preto/Cinza/Vermelho */
.loginfailed-card[b-osolwcgi7b] {
    background: linear-gradient(-45deg, #1a1a1a, #2d2d2d, #4a1a1a, #8b0000, #3d3d3d, #1a1a1a);
    background-size: 400% 400%;
    animation: slideUp-b-osolwcgi7b 0.3s ease-out, gradientShift-b-osolwcgi7b 15s ease infinite;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 32px 40px;
    max-width: 480px;
    width: 90%;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(139, 0, 0, 0.3);
    text-align: center;
}

@keyframes gradientShift-b-osolwcgi7b {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slideUp-b-osolwcgi7b {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Header */
.card-header[b-osolwcgi7b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

/* Ícone */
.card-icon[b-osolwcgi7b] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(160, 160, 160, 0.2) 0%, rgba(120, 120, 120, 0.3) 100%);
    border: 2px solid rgba(180, 180, 180, 0.4);
    color: #b0b0b0;
    box-shadow: 0 0 20px rgba(150, 150, 150, 0.2);
}

.card-icon i[b-osolwcgi7b] {
    font-size: 40px;
    line-height: 1;
}

/* Título */
.card-title[b-osolwcgi7b] {
    font-family: 'Bangers', cursive;
    font-size: 26px;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Body */
.card-body[b-osolwcgi7b] {
    margin-bottom: 28px;
}

.message-main[b-osolwcgi7b] {
    margin: 0 0 12px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.message-secondary[b-osolwcgi7b] {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.5;
}

/* Footer */
.card-footer[b-osolwcgi7b] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Botões */
.btn-primary[b-osolwcgi7b],
.btn-secondary[b-osolwcgi7b] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary[b-osolwcgi7b] {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover[b-osolwcgi7b] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.5);
    color: #fff;
}

.btn-secondary[b-osolwcgi7b] {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover[b-osolwcgi7b] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #fff;
}

/* Responsivo */
@media (max-width: 480px) {
    .loginfailed-card[b-osolwcgi7b] {
        padding: 24px 20px;
    }

    .card-title[b-osolwcgi7b] {
        font-size: 22px;
    }

    .card-footer[b-osolwcgi7b] {
        flex-direction: column;
    }

    .btn-primary[b-osolwcgi7b],
    .btn-secondary[b-osolwcgi7b] {
        width: 100%;
        justify-content: center;
    }
}
/* /Pages/Debug/TokenDebug.razor.rz.scp.css */
.debug-container[b-fw9c4yyo47] {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.debug-card[b-fw9c4yyo47] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(67, 56, 202, 0.25) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.debug-header[b-fw9c4yyo47] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.debug-header i[b-fw9c4yyo47] {
    font-size: 28px;
    color: #6366f1;
}

.debug-header h1[b-fw9c4yyo47] {
    font-size: 20px;
    color: #fff;
    margin: 0;
    font-weight: 600;
}

.debug-content[b-fw9c4yyo47] {
    margin-bottom: 20px;
}

.debug-actions[b-fw9c4yyo47] {
    display: flex;
    justify-content: center;
}

.btn-back[b-fw9c4yyo47] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover[b-fw9c4yyo47] {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}
/* /Pages/Home.razor.rz.scp.css */
*[b-fmabuzudef] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.page-wrapper[b-fmabuzudef] {
    min-height: 100vh;
    color: #fff;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard[b-fmabuzudef] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.dash-header[b-fmabuzudef] {
    display: flex;
    gap: 15px;

}

.dash-body[b-fmabuzudef] {
    display: flex;
    gap: 15px;

}

/* Menu de mini-cards removido - funcionalidades migradas para ProfileCard */



/* ==================== CARD SYSTEM ==================== */

.card[b-fmabuzudef] {
    border-radius: 20px;
    padding: 18px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover[b-fmabuzudef] {
    transform: translateY(-5px);
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Character Animation - Friends Card Specific */
.friends-character[b-fmabuzudef] {
    animation: characterPulse 3s ease-in-out infinite;
}

.card:hover .friends-character[b-fmabuzudef] {
    animation: characterPulseHover-b-fmabuzudef 2s ease-in-out infinite;
}

@keyframes characterPulseHover-b-fmabuzudef {
    0%, 100% { transform: scale(1.05); }
    50% { transform: scale(1.15); }
}

/* ==================== LINHA 1: LOGO + PERFIL ==================== */

.logo-card[b-fmabuzudef] {
    height: 120px;
    width: 20%;
    background: linear-gradient(135deg,
        rgba(54, 124, 250, 0.95) 0%,
        rgba(66, 131, 244, 0.9) 75%,
        rgba(121, 164, 243, 0.85) 100%
    );
    border-color: rgba(179, 202, 243, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.profile-card[b-fmabuzudef] {
    height: 120px;
    width: 80%;
    background: linear-gradient(135deg,
        rgba(54, 124, 250, 0.95) 0%,
        rgba(66, 131, 244, 0.9) 50%,
        rgba(121, 164, 243, 0.85) 100%
    );
    border-color: rgba(179, 202, 243, 0.92);
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 15px;
}

/* ==================== LINHA 2: MINI CARDS ==================== */

.thin-mini-card[b-fmabuzudef] {
    display: flex !important;
    flex-direction: row !important;
    height: 60px;
    padding: 10px 15px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thin-mini-card:hover[b-fmabuzudef] {
    transform: translateY(-2px);
}

.thin-card-icon[b-fmabuzudef] {
    font-size: 24px;
    color: rgb(255, 255, 255);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.thin-card-label[b-fmabuzudef] {
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    color: rgb(255, 255, 255);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.thin-notification-badge[b-fmabuzudef] {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #F8D800;
    color: #000;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mini Card Variants */
.achievements-thin-card[b-fmabuzudef] {
    background: linear-gradient(135deg,
        rgba(183, 28, 28, 0.95) 0%,
        rgba(211, 47, 47, 0.9) 50%,
        rgba(244, 67, 54, 0.85) 100%
    );
    backdrop-filter: blur(10px);
    border-color: rgba(255, 138, 128, 0.7);
}

.achievements-thin-card .thin-card-icon[b-fmabuzudef] {
    animation: trophyBounce-b-fmabuzudef 2s ease-in-out infinite;
}

@keyframes trophyBounce-b-fmabuzudef {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-3px) rotate(5deg); }
}

.notifications-thin-card[b-fmabuzudef] {
    background: linear-gradient(135deg,
        rgba(122, 81, 180, 0.95) 0%,
        rgba(142, 98, 200, 0.9) 50%,
        rgba(171, 128, 224, 0.85) 100%
    );
    backdrop-filter: blur(10px);
    border-color: rgba(171, 128, 224, 0.7);
}

.notifications-thin-card .thin-card-icon[b-fmabuzudef] {
    animation: bellShake-b-fmabuzudef 2s ease-in-out infinite;
}

@keyframes bellShake-b-fmabuzudef {
    0%, 100% { transform: rotate(0deg); }
    15% { transform: rotate(-15deg); }
    30% { transform: rotate(12deg); }
    45% { transform: rotate(-8deg); }
    60% { transform: rotate(5deg); }
    75% { transform: rotate(-3deg); }
}

.settings-thin-card[b-fmabuzudef] {
    background: linear-gradient(135deg,
        rgba(55, 65, 81, 0.95) 0%,
        rgba(75, 85, 99, 0.9) 50%,
        rgba(107, 114, 128, 0.85) 100%
    );
    backdrop-filter: blur(10px);
    border-color: rgba(156, 163, 175, 0.5);
}

.settings-thin-card .thin-card-icon[b-fmabuzudef] {
    animation: gearRotate-b-fmabuzudef 20s linear infinite;
}

@keyframes gearRotate-b-fmabuzudef {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.extrato-thin-card[b-fmabuzudef] {
    background: linear-gradient(135deg,
        rgba(255, 152, 0, 0.95) 0%,
        rgba(255, 193, 7, 0.9) 50%,
        rgba(255, 213, 79, 0.85) 100%
    );
    backdrop-filter: blur(10px);
    border-color: rgba(255, 193, 7, 0.7);
}

.extrato-thin-card .thin-card-icon[b-fmabuzudef] {
    animation: receiptBounce-b-fmabuzudef 2s ease-in-out infinite;
}

@keyframes receiptBounce-b-fmabuzudef {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.extrato-card-wrapper[b-fmabuzudef] {
    width: 55%;
    height: 500px;
    background: linear-gradient(135deg,
        rgba(30, 30, 40, 0.98) 0%,
        rgba(45, 45, 60, 0.95) 50%,
        rgba(55, 55, 75, 0.92) 100%
    );
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.about-card-wrapper[b-fmabuzudef] {
    width: 55%;
    height: 500px;
    background: linear-gradient(135deg,
        rgba(99, 102, 241, 0.95) 0%,
        rgba(139, 92, 246, 0.9) 50%,
        rgba(168, 85, 247, 0.85) 100%
    );
    backdrop-filter: blur(15px);
    border: 1px solid rgba(196, 181, 253, 0.5);
}

.minigames-thin-card[b-fmabuzudef] {
    background: linear-gradient(135deg,
        rgba(27, 94, 32, 0.95) 0%,
        rgba(46, 125, 50, 0.9) 50%,
        rgba(76, 175, 80, 0.85) 100%
    );
    backdrop-filter: blur(10px);
    border-color: rgba(76, 175, 80, 0.7);
}

.minigames-thin-card .thin-card-icon[b-fmabuzudef] {
    animation: controllerVibrate-b-fmabuzudef 1.8s ease-in-out infinite;
}

@keyframes controllerVibrate-b-fmabuzudef {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1px, 1px) rotate(-2deg); }
    20% { transform: translate(1px, -1px) rotate(2deg); }
    30% { transform: translate(-2px, 1px) rotate(-3deg); }
    40% { transform: translate(2px, -1px) rotate(3deg); }
    50% { transform: translate(-1px, 1px) rotate(-2deg); }
}

.eventos-thin-card[b-fmabuzudef] {
    background: linear-gradient(135deg,
        rgba(0, 51, 160, 0.95) 0%,
        rgba(0, 74, 200, 0.9) 50%,
        rgba(55, 119, 235, 0.85) 100%
    );
    backdrop-filter: blur(10px);
    border-color: rgba(55, 119, 235, 0.7);
}

.eventos-thin-card .thin-card-icon[b-fmabuzudef] {
    animation: calendarBounce-b-fmabuzudef 2.4s ease-in-out infinite;
}

@keyframes calendarBounce-b-fmabuzudef {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-3px); }
    50% { transform: translateY(2px); }
    75% { transform: translateY(-2px); }
}

.tips-thin-card[b-fmabuzudef] {
    background: linear-gradient(135deg,
        rgba(204, 142, 24, 0.95) 0%,
        rgba(214, 158, 38, 0.9) 50%,
        rgba(235, 186, 75, 0.85) 100%
    );
    backdrop-filter: blur(10px);
    border-color: rgba(235, 186, 75, 0.7);
}

.tips-thin-card .thin-card-icon[b-fmabuzudef] {
    animation: bulbGlow-b-fmabuzudef 2.2s ease-in-out infinite;
}

@keyframes bulbGlow-b-fmabuzudef {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9)); transform: scale(1.05); }
}

/* ==================== LINHA 3: CARDS PRINCIPAIS ==================== */

/* Conheça o Campus Card */
.conheca-campus-card[b-fmabuzudef] {
    width: 55%;
    height: 500px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.7) 0%, rgba(67, 56, 202, 0.45) 100%);
    border-color: rgba(179, 157, 219, 0.7);
}

/* Friends Card */
.friends-card[b-fmabuzudef] {
    width: 20%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg,
        rgba(38, 198, 166, 0.75) 0%,
        rgba(32, 180, 153, 0.70) 50%,
        rgba(255, 255, 255, 0.65) 100%
    );
    border-color: rgba(80, 227, 194, 0.6);
}

/* Dynamic Card */
.dynamic-card[b-fmabuzudef] {
    height: 500px;
    width: 25%;
    --tip-color: #5c6bc0;
    background: linear-gradient(135deg,
        rgba(54, 124, 250, 0.92) 0%,
        rgba(66, 131, 244, 0.92) 50%,
        rgba(121, 164, 243, 0.92) 100%
    );
    border-color: rgba(179, 202, 243, 0.92);
    transition: background 0.6s ease, border-color 0.6s ease;
}

.friends-list[b-fmabuzudef] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 12px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding-right: 4px;
}

.friends-list[b-fmabuzudef]::-webkit-scrollbar {
    width: 4px;
}

.friends-list[b-fmabuzudef]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.friends-list[b-fmabuzudef]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.friends-list[b-fmabuzudef]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.friend-item[b-fmabuzudef] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.friend-avatar[b-fmabuzudef] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.friend-name[b-fmabuzudef] {
    flex: 1;
    font-size: 13px;
    color: #fff;
}

.friend-status[b-fmabuzudef] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.friend-status.online[b-fmabuzudef] {
    background: #4caf50;
    box-shadow: 0 0 8px #4caf50;
}

.friend-status.away[b-fmabuzudef] {
    background: #ffc107;
}

.btn-invite[b-fmabuzudef] {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-invite:hover[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.5);
}

/* ==================== DYNAMIC CARD ==================== */

/* Dynamic Card States */
.dynamic-card.achievements-active[b-fmabuzudef] {
    background: linear-gradient(135deg,
        color-mix(in srgb, #ef5350 85%, #000 15%) 0%,
        color-mix(in srgb, #ef5350 75%, #000 25%) 50%,
        color-mix(in srgb, #ef5350 65%, #fff 35%) 100%
    );
    border-color: color-mix(in srgb, #ef5350 60%, #fff 40%);
}

.dynamic-card.tips-active[b-fmabuzudef] {
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--tip-color, #5c6bc0) 85%, #000 15%) 0%,
        color-mix(in srgb, var(--tip-color, #5c6bc0) 75%, #000 25%) 50%,
        color-mix(in srgb, var(--tip-color, #5c6bc0) 65%, #fff 35%) 100%
    );
    border-color: color-mix(in srgb, var(--tip-color, #5c6bc0) 60%, #fff 40%);
}

.dynamic-card.eventos-active[b-fmabuzudef] {
    background: linear-gradient(135deg,
        rgba(0, 51, 160, 0.95) 0%,
        rgba(0, 74, 200, 0.9) 50%,
        rgba(55, 119, 235, 0.85) 100%
    );
    border-color: rgba(55, 119, 235, 0.7);
}

.dynamic-card.minigames-active[b-fmabuzudef] {
    background: linear-gradient(135deg,
        rgba(27, 94, 32, 0.95) 0%,
        rgba(46, 125, 50, 0.9) 50%,
        rgba(76, 175, 80, 0.85) 100%
    );
    border-color: rgba(76, 175, 80, 0.7);
}

.dynamic-card.notifications-active[b-fmabuzudef] {
    background: linear-gradient(135deg,
        rgba(122, 81, 180, 0.95) 0%,
        rgba(142, 98, 200, 0.9) 50%,
        rgba(171, 128, 224, 0.85) 100%
    );
    border-color: rgba(171, 128, 224, 0.7);
}

.dynamic-card.subscription-active[b-fmabuzudef] {
    background: linear-gradient(135deg,
        rgba(55, 65, 81, 0.95) 0%,
        rgba(75, 85, 99, 0.9) 50%,
        rgba(107, 114, 128, 0.85) 100%
    );
    border-color: rgba(156, 163, 175, 0.5);
}

/* ==================== DYNAMIC CARD CONTENT ==================== */

/* Tips Content */
.tip-body[b-fmabuzudef] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding: 10px;
    height: 100%;
    justify-content: center;
}

.tip-icon-large[b-fmabuzudef] {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    animation: tipIconPulse-b-fmabuzudef 3s ease-in-out infinite;
    position: relative;
}

.tip-icon-large[b-fmabuzudef]::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: tipIconGlow-b-fmabuzudef 3s ease-in-out infinite;
}

@keyframes tipIconPulse-b-fmabuzudef {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes tipIconGlow-b-fmabuzudef {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0.6;); }
}

.tip-category-badge[b-fmabuzudef] {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tip-title[b-fmabuzudef] {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #fff;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    margin: 0;
    line-height: 1.3;
}

.tip-description[b-fmabuzudef] {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 0 8px;
    flex: 1;
    display: flex;
    align-items: center;
}

/* Eventos Content */
.eventos-list[b-fmabuzudef] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.evento-item[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid rgba(255, 255, 255, 0.4);
}

.evento-item:hover[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.evento-title[b-fmabuzudef] {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.evento-details[b-fmabuzudef] {
    display: flex;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.evento-date[b-fmabuzudef],
.evento-time[b-fmabuzudef] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.15);
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 600;
}

/* Minigames Content */
.minigames-content .games-list[b-fmabuzudef] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.game-item[b-fmabuzudef] {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-item:hover[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.game-emoji[b-fmabuzudef] {
    font-size: 32px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.game-info[b-fmabuzudef] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.game-name[b-fmabuzudef] {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.game-stats[b-fmabuzudef] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.game-players[b-fmabuzudef] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.game-difficulty[b-fmabuzudef] {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-difficulty.difficulty-fácil[b-fmabuzudef] {
    background: rgba(76, 175, 80, 0.3);
    color: #fff;
    border: 1px solid rgba(76, 175, 80, 0.6);
}

.game-difficulty.difficulty-médio[b-fmabuzudef] {
    background: rgba(255, 193, 7, 0.3);
    color: #fff;
    border: 1px solid rgba(255, 193, 7, 0.6);
}

.game-difficulty.difficulty-difícil[b-fmabuzudef] {
    background: rgba(244, 67, 54, 0.3);
    color: #fff;
    border: 1px solid rgba(244, 67, 54, 0.6);
}

/* Notifications Content */
.notifications-list[b-fmabuzudef] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.notification-item[b-fmabuzudef] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.notification-item:hover[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.notif-left[b-fmabuzudef] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.notif-dot[b-fmabuzudef] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.notif-meta[b-fmabuzudef] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notif-title[b-fmabuzudef] {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.notif-time[b-fmabuzudef] {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

/* Subscription Content */
.subscription-list[b-fmabuzudef] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.subscription-item[b-fmabuzudef] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.subscription-item:hover[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.3);
}

.subscription-item i[b-fmabuzudef] {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    min-width: 18px;
}

.subscription-label[b-fmabuzudef] {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
    min-width: 70px;
}

.subscription-value[b-fmabuzudef] {
    font-size: 11px;
    color: #fff;
    font-weight: 600;
    margin-left: auto;
}

.subscription-value.active[b-fmabuzudef] {
    color: #66bb6a;
}

.subscription-value.days[b-fmabuzudef] {
    background: rgba(156, 39, 176, 0.3);
    padding: 2px 8px;
    border-radius: 10px;
    color: #e1bee7;
}

.subscription-item.status-active[b-fmabuzudef] {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.subscription-item.status-active i[b-fmabuzudef] {
    color: #66bb6a;
}

.subscription-item.status-inactive[b-fmabuzudef] {
    background: rgba(255, 152, 0, 0.15);
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.subscription-item.status-inactive i[b-fmabuzudef] {
    color: #ffa726;
}

.subscription-item.highlight[b-fmabuzudef] {
    background: rgba(156, 39, 176, 0.2);
    border: 1px solid rgba(156, 39, 176, 0.4);
}

.subscription-item.highlight i[b-fmabuzudef] {
    color: #ba68c8;
}

.no-subscription-text[b-fmabuzudef] {
    font-size: 13px;
    color: #ffcc80;
    font-weight: 600;
}

.subscription-note[b-fmabuzudef] {
    margin: 8px 0 0 0;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-style: italic;
}

/* ==================== CAMPUS TABS SYSTEM ==================== */

.conheca-tabs-container[b-fmabuzudef] {
    position: relative;
    min-height: 260px;
    margin-bottom: 12px;
}

.conheca-tab[b-fmabuzudef] {
    display: none;
    flex-direction: column;
    gap: 12px;
    animation: fadeIn-b-fmabuzudef 0.4s ease-in-out;
}

.conheca-tab.active[b-fmabuzudef] {
    display: flex;
}

@keyframes fadeIn-b-fmabuzudef {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-title[b-fmabuzudef] {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 8px 0 12px 0;
}

.tab-description[b-fmabuzudef] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 8px 0;
    line-height: 1.5;
}

.tab-description-large[b-fmabuzudef] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    line-height: 1.6;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.video-container[b-fmabuzudef] {
    position: relative;
    width: 100%;
    padding-bottom: 46%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

.video-container iframe[b-fmabuzudef],
.video-container video[b-fmabuzudef] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.campus-stats[b-fmabuzudef] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.stat-box[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.stat-number[b-fmabuzudef] {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 6px;
}

.stat-label[b-fmabuzudef] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.tour-features[b-fmabuzudef] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.tour-item[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.tour-item:hover[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.conheca-features[b-fmabuzudef] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px 0;
}

.feature-item[b-fmabuzudef] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.feature-icon[b-fmabuzudef] {
    font-size: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-info[b-fmabuzudef] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-info strong[b-fmabuzudef] {
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-info small[b-fmabuzudef] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.conheca-highlights[b-fmabuzudef] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 6px 0;
}

.highlight-badge[b-fmabuzudef] {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 193, 7, 0.3));
    border: 1px solid rgba(255, 235, 59, 0.5);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(255, 193, 7, 0.3);
    animation: badgePulse-b-fmabuzudef 2s ease-in-out infinite;
}

@keyframes badgePulse-b-fmabuzudef {
    0%, 100% { box-shadow: 0 2px 6px rgba(255, 193, 7, 0.3); }
    50% { box-shadow: 0 2px 12px rgba(255, 193, 7, 0.6); }
}

.btn-conheca[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 6px;
}

.btn-conheca:hover[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.conheca-tip[b-fmabuzudef] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin: 6px 0 0 0;
    font-style: italic;
}

/* Tab Navigation */
.tabs-navigation[b-fmabuzudef] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin-top: auto;
}

.tab-nav-btn[b-fmabuzudef] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.tab-nav-btn:hover:not(:disabled)[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
}

.tab-nav-btn:disabled[b-fmabuzudef] {
    opacity: 0.3;
    cursor: not-allowed;
}

.tabs-indicators[b-fmabuzudef] {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.tab-indicator[b-fmabuzudef] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-indicator:hover[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.tab-indicator.active[b-fmabuzudef] {
    background: #fff;
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

/* ==================== SESSION BLOCKED CARD ==================== */

.session-blocked-card[b-fmabuzudef] {
    width: 55%;
    height: 500px;
    background: linear-gradient(135deg,
        rgba(220, 63, 86, 0.85) 0%,
        rgba(183, 28, 28, 0.80) 50%,
        rgba(140, 20, 20, 0.75) 100%
    );
    border-color: rgba(255, 138, 128, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.session-blocked-content[b-fmabuzudef] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    gap: 15px;
}

.session-blocked-icon[b-fmabuzudef] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.session-blocked-title[b-fmabuzudef] {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.session-blocked-message[b-fmabuzudef] {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.5;
}

.session-blocked-detail[b-fmabuzudef] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.session-blocked-info[b-fmabuzudef] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 400px;
}

.session-blocked-info i[b-fmabuzudef] {
    font-size: 18px;
    flex-shrink: 0;
}

.btn-session-retry[b-fmabuzudef] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-session-retry:hover[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* ==================== ERROR OVERLAY ==================== */

.error-overlay[b-fmabuzudef] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.error-card[b-fmabuzudef] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 50px 40px;
    max-width: 460px;
    border-radius: 24px;
    background: linear-gradient(135deg,
        rgba(220, 63, 86, 0.92) 0%,
        rgba(183, 28, 28, 0.88) 50%,
        rgba(140, 20, 20, 0.85) 100%
    );
    border: 1px solid rgba(255, 138, 128, 0.5);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.error-icon[b-fmabuzudef] {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: errorPulse-b-fmabuzudef 2s ease-in-out infinite;
}

@keyframes errorPulse-b-fmabuzudef {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4); }
}

.error-title[b-fmabuzudef] {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.error-message[b-fmabuzudef] {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.6;
}

.btn-error-retry[b-fmabuzudef] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-error-retry:hover[b-fmabuzudef] {
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ==================== GAME MODE ==================== */

.game-card-wrapper[b-fmabuzudef] {
    width: 55%;
    height: 500px;
    background: linear-gradient(135deg,
        rgba(54, 124, 250, 0.75) 0%,
        rgba(66, 131, 244, 0.70) 50%,
        rgba(121, 164, 243, 0.65) 100%
    );
    border-color: rgba(179, 202, 243, 0.6);
    backdrop-filter: blur(20px);
}

/* Animation classes */
.cards-enter[b-fmabuzudef] {
    animation: cardsEnter-b-fmabuzudef 0.5s ease-out forwards;
}

@keyframes cardsEnter-b-fmabuzudef {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1200px) {
    .dashboard[b-fmabuzudef] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .dashboard[b-fmabuzudef] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dashboard[b-fmabuzudef] {
        grid-template-columns: 1fr;
    }

    .card-character[b-fmabuzudef] {
        width: 45px;
        height: 45px;
    }
}

/* /Pages/Settings.razor.rz.scp.css */
/* Settings - Glass style matching Home layout */

.settings-wrapper[b-j1o4fx4eiv] {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    color: #fff;
    position: relative;
    z-index: 1;
}

/* Header */
.settings-header[b-j1o4fx4eiv] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px 20px;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.settings-back[b-j1o4fx4eiv] {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    color: #fff;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 18px;
}

.settings-back:hover[b-j1o4fx4eiv] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-2px);
}

.settings-header > i[b-j1o4fx4eiv] {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
}

.settings-header h1[b-j1o4fx4eiv] {
    font-family: 'Bangers', cursive;
    font-size: 28px;
    margin: 0;
    flex: 1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.settings-badge[b-j1o4fx4eiv] {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
}

/* Loading */
.settings-loading[b-j1o4fx4eiv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 80px 0;
}

.settings-spinner[b-j1o4fx4eiv] {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-top-color: #fff;
    border-radius: 50%;
    animation: settingsSpin-b-j1o4fx4eiv 1s linear infinite;
}

.settings-loading p[b-j1o4fx4eiv] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

@keyframes settingsSpin-b-j1o4fx4eiv {
    to { transform: rotate(360deg); }
}

/* Grid */
.settings-grid[b-j1o4fx4eiv] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.settings-card.full-width[b-j1o4fx4eiv] {
    grid-column: 1 / -1;
}

/* Card glass */
.settings-card[b-j1o4fx4eiv] {
    border-radius: 18px;
    backdrop-filter: blur(20px);
    background: rgba(30, 35, 50, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.settings-card:hover[b-j1o4fx4eiv] {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Card header */
.settings-card-header[b-j1o4fx4eiv] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-card-header i[b-j1o4fx4eiv] {
    font-size: 16px;
}

.settings-card-header.danger[b-j1o4fx4eiv] {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(220, 38, 38, 0.15));
    color: #fca5a5;
}

.settings-card-header.green[b-j1o4fx4eiv] {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(22, 163, 74, 0.15));
    color: #86efac;
}

.settings-card-header.blue[b-j1o4fx4eiv] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.15));
    color: #93c5fd;
}

.settings-card-header.gray[b-j1o4fx4eiv] {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.3), rgba(100, 116, 139, 0.15));
    color: #cbd5e1;
}

.settings-card-header.yellow[b-j1o4fx4eiv] {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.3), rgba(202, 138, 4, 0.15));
    color: #fde68a;
}

/* Card body */
.settings-card-body[b-j1o4fx4eiv] {
    padding: 16px 18px;
}

/* Hint text */
.settings-hint[b-j1o4fx4eiv] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin: 0 0 12px;
}

/* Info tag */
.settings-info-tag[b-j1o4fx4eiv] {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    font-size: 12px;
    margin-bottom: 12px;
}

/* Empty message */
.settings-empty-msg[b-j1o4fx4eiv] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    color: #fde68a;
    font-size: 13px;
}

.settings-empty-msg i[b-j1o4fx4eiv] {
    font-size: 16px;
    flex-shrink: 0;
}

/* Code blocks */
.settings-code[b-j1o4fx4eiv] {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px;
    margin: 0;
    max-height: 350px;
    overflow-y: auto;
    font-size: 12px;
    line-height: 1.5;
    color: #e2e8f0;
}

.settings-code[b-j1o4fx4eiv]::-webkit-scrollbar {
    width: 4px;
}

.settings-code[b-j1o4fx4eiv]::-webkit-scrollbar-track {
    background: transparent;
}

.settings-code[b-j1o4fx4eiv]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

/* Table */
.settings-table-wrap[b-j1o4fx4eiv] {
    max-height: 400px;
    overflow-y: auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-table-wrap[b-j1o4fx4eiv]::-webkit-scrollbar {
    width: 4px;
}

.settings-table-wrap[b-j1o4fx4eiv]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.settings-table[b-j1o4fx4eiv] {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.settings-table thead th[b-j1o4fx4eiv] {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    padding: 10px 14px;
    text-align: left;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-table tbody tr[b-j1o4fx4eiv] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s ease;
}

.settings-table tbody tr:hover[b-j1o4fx4eiv] {
    background: rgba(255, 255, 255, 0.06);
}

.settings-table tbody tr.highlight[b-j1o4fx4eiv] {
    background: rgba(239, 68, 68, 0.12);
}

.settings-table tbody tr.highlight:hover[b-j1o4fx4eiv] {
    background: rgba(239, 68, 68, 0.2);
}

.settings-table td[b-j1o4fx4eiv] {
    padding: 8px 14px;
}

.claim-type[b-j1o4fx4eiv] {
    color: #93c5fd;
    font-weight: 600;
    white-space: nowrap;
    width: 200px;
}

.claim-value[b-j1o4fx4eiv] {
    color: #e2e8f0;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 12px;
    word-break: break-all;
    max-width: 0;
}

/* Form */
.settings-form[b-j1o4fx4eiv] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.settings-field label[b-j1o4fx4eiv] {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.settings-field input[b-j1o4fx4eiv] {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 14px;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.settings-field input[b-j1o4fx4eiv]::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.settings-field input:focus[b-j1o4fx4eiv] {
    border-color: rgba(102, 126, 234, 0.6);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.settings-btn[b-j1o4fx4eiv] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    align-self: flex-start;
}

.settings-btn:hover[b-j1o4fx4eiv] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .settings-grid[b-j1o4fx4eiv] {
        grid-template-columns: 1fr;
    }

    .settings-card.full-width[b-j1o4fx4eiv] {
        grid-column: 1;
    }
}
