/*
 * ============================================
 * SIDEBAR STYLES - GUILD VORTEX
 * ============================================
 * 
 * Paleta de Cores Oficial:
 * 
 * CORES PRIMÁRIAS:
 * --vortex-cyan-bright: #68D3ED     (Azul Ciano Brilhante)
 * --vortex-blue-electric: #3993D6   (Azul Elétrico)
 * --vortex-blue-navy: #1C327D       (Azul Marinho)
 * --vortex-purple-mystic: #6555D4   (Roxo Místico)
 * --vortex-silver-metallic: #DBEAF1 (Prata Metálica)
 * 
 * CORES SECUNDÁRIAS:
 * --vortex-blue-dark-base: #14204F  (Azul Escuro Base)
 * --vortex-blue-royal: #2351AE      (Azul Royal)
 * --vortex-gray-blue: #707B8E       (Cinza Azulado)
 * --vortex-lavender-light: #A5ABD4  (Lavanda Claro)
 * --vortex-black-deep: #090D26      (Preto Profundo)
 * 
 * Adaptado da identidade Fenix para Vortex
 * ============================================
 */

/* ========== SIDEBAR STYLES ========== */

:root {
    --sidebar-width: clamp(220px, 25%, 320px);
}

/* Sidebar Container */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: rgba(20, 32, 79, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 1px solid rgba(104, 211, 237, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
}

/* Brand */
.sidebar-brand {
    padding: 25px 20px 20px;
    text-align: center;
    position:relative;
}

.sidebar-brand a {
    position: relative;
    display: inline-block;
}

.sidebar-trophy-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, #68D3ED, #3993D6);
    color: #1a1a1a;
    font-size: 0.55em;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(104, 211, 237, 0.4);
    text-decoration: none !important;
}

.sidebar-trophy-badge i {
    font-size: 0.9em;
    color: #1a1a1a;
}

.sidebar-logo {
    width: 90%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(104, 211, 237, 0.4));
    transition: all 0.3s ease;
}

.sidebar-brand:hover .sidebar-logo {
    filter: drop-shadow(0 0 25px rgba(104, 211, 237, 0.6));
    transform: scale(1.05);
}

/* TeamSpeak Button - Estilo com borda laranja (deslogado) */
.ts-connect {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 15px 10px;
    padding: 12px 16px;
    background: transparent;
    border: 2px solid rgba(104, 211, 237, 0.5);
    border-radius: 8px;
    color: #68D3ED !important;
    font-weight: 600;
    font-size: 0.9em;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ts-connect:hover {
    transform: translateY(-2px);
    background: rgba(104, 211, 237, 0.1);
    border-color: rgba(104, 211, 237, 0.8);
    color: #68D3ED !important;
}

/* TeamSpeak colorido para logados - agora com borda */
.ts-connect.ts-connect-logged {
    background: transparent;
    border: 2px solid rgba(104, 211, 237, 0.5);
    color: #68D3ED !important;
    box-shadow: none;
}

.ts-connect.ts-connect-logged:hover {
    background: rgba(104, 211, 237, 0.1);
    border-color: rgba(104, 211, 237, 0.6);
    box-shadow: none;
    color: #68D3ED !important;
}

.ts-connect i {
    font-size: 1.1em;
}

/* Sidebar Buttons - Base */
.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9em;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.sidebar-btn:hover {
    transform: translateY(-2px);
}

/* Auth Section */
.sidebar-auth {
    padding: 0 15px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* User Button (logado) - colorido com fundo */
.sidebar-btn-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9em;
    background: linear-gradient(135deg, #68D3ED, #3993D6);
    border: none;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(104, 211, 237, 0.3);
}

.sidebar-btn-user:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #3993D6, #68D3ED);
    box-shadow: 0 5px 20px rgba(104, 211, 237, 0.4);
    color: white !important;
    text-decoration: none !important;
}

/* Badge do perfil */
.sidebar-badge {
      background: #1a1a1a;
    color: #68D3ED;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Primary Button (Alistar) */
.sidebar-btn-primary {
    background: linear-gradient(135deg, #68D3ED, #3993D6);
    color: white;
    box-shadow: 0 3px 10px rgba(104, 211, 237, 0.3);
}

.sidebar-btn-primary:hover {
    box-shadow: 0 5px 20px rgba(104, 211, 237, 0.4);
    color: white;
}

/* Secondary Button (Já sou membro) */
.sidebar-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #bdc3c7;
}

.sidebar-btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
    color: white;
}

/* Guest Auth Buttons na Sidebar */
.sidebar-auth-guest {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 15px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9em;
    background: linear-gradient(135deg, #68D3ED, #3993D6);
    color: white !important;
    box-shadow: 0 3px 10px rgba(104, 211, 237, 0.3);
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.sidebar-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(104, 211, 237, 0.4);
    color: white !important;
    text-decoration: none !important;
}

.sidebar-btn-alistar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9em;
    background: transparent;
    border: 2px solid rgba(104, 211, 237, 0.6);
    color: #68D3ED !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.sidebar-btn-alistar:hover {
    transform: translateY(-2px);
    background: rgba(104, 211, 237, 0.1);
    border-color: rgba(104, 211, 237, 0.9);
    color: #68D3ED !important;
    text-decoration: none !important;
}

/* Subtítulo de navegação */
.sidebar-subtitle {
    padding: 8px 20px 5px;
    font-size: 0.7em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.35);
}

/* Menu */
.sidebar-menu {
    flex: 1;
    padding: 15px 0;
    overflow-y: auto;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #95a5a6;
    text-decoration: none !important;
    transition: all 0.2s ease;
    font-size: 0.9em;
}

.sidebar-item:hover {
    background: rgba(104, 211, 237, 0.8);
    color: #68D3ED;
    text-decoration: none !important;
}

.sidebar-item.active {
    background: rgba(104, 211, 237, 0.1));
    color: #68D3ED;
    border-left: 3px solid #68D3ED;
}

.sidebar-item i {
    width: 20px;
    text-align: center;
    font-size: 1em;
}

.sidebar-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin: 10px 20px;
}

/* Footer */
.sidebar-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.sidebar-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    color: #e74c3c;
    text-decoration: none;
    font-size: 0.85em;
    border-radius: 6px;
    border: 1px solid rgba(231, 76, 60, 0.3);
    transition: all 0.2s ease;
    margin-bottom: 15px;
}

.sidebar-logout:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.sidebar-copyright {
    text-align: center;
    font-size: 0.85em;
    color: #666;
    line-height: 1.6;
}

.sidebar-copyright a {
    color: #68D3ED;
    text-decoration: none;
}

.sidebar-copyright a:hover {
    text-decoration: underline;
}

/* ========== MOBILE TOPBAR ========== */
.mobile-topbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(20, 32, 79, 0.98);
    border-bottom: 1px solid rgba(104, 211, 237, 0.2);
    z-index: 999;
    padding: 0 15px;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: #ecf0f1;
    font-size: 1.4em;
    cursor: pointer;
    padding: 10px;
    margin-left: -10px;
}

.mobile-ts {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #68D3ED !important;
    font-size: 1.4em;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.mobile-ts:hover {
    color: #3993D6 !important;
}

.mobile-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #68D3ED, #3993D6);
    border-radius: 8px;
    color: white !important;
    font-size: 1.2em;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.mobile-login:hover {
    background: linear-gradient(135deg, #3993D6, #68D3ED);
}

.mobile-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: absolute;
    left: 50%;
    top:8px;
    transform: translateX(-50%);
}

.mobile-brand img {
    height: 64px;
    width: auto;
}

.mobile-brand span {
    font-size: 1.2em;
    font-weight: 700;
    color: #68D3ED;
    letter-spacing: 2px;
}

/* Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
}

.sidebar-overlay.open {
    display: block;
}

/* ========== LAYOUT ADJUSTMENT ========== */
/* Empurra o conteúdo para a direita usando variável CSS */
body.has-sidebar #wrap {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.has-sidebar .inner-wrap,
body.has-sidebar .main_container {
    width: 100%;
    max-width: 100%;
    padding: 15px 20px;
    box-sizing: border-box;
}

body.has-sidebar .page-body {
    width: 100%;
}

body.has-sidebar .navbar {
    display: none !important;
}

body.has-sidebar #page-header {
    display: none !important;
}

body.has-sidebar .botaoCanalVoz.efeito-img {
    display: none !important;
}

body.has-sidebar .fundo-bg {
    left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
}

/* Esconder footer original */
body.has-sidebar .navbar_footer {
    display: none !important;
}

body.has-sidebar .copyright {
    display: none !important;
}

/* ========== RESPONSIVE MOBILE ========== */
@media (max-width: 768px) {
    :root {
        --sidebar-width: 280px;
    }

    .sidebar-nav {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar-nav.open {
        transform: translateX(0);
    }

    .mobile-topbar {
        display: flex;
    }

    body.has-sidebar #wrap {
        margin-left: 0;
        width: 100%;
        padding-top: 60px;
    }

    body.has-sidebar .fundo-bg {
        left: 0;
        width: 100%;
    }

    body.has-sidebar #page-header {
        display: none !important;
    }

    body.sidebar-open {
        overflow: hidden;
    }

    /* TeamSpeak + Notificações no mobile */
    .sidebar-ts-row {
        margin: 0 10px 10px;
        gap: 8px;
    }

    .sidebar-ts-row .ts-connect {
        padding: 10px 8px;
        font-size: 0.75em;
        gap: 6px;
    }

    .sidebar-ts-row .ts-connect span {
        display: block;
    }

    .sidebar-btn-notification {
        width: 42px;
        min-width: 42px;
    }
}

/* ========== SCROLLBAR ========== */
.sidebar-nav::-webkit-scrollbar {
    width: 5px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(104, 211, 237, 0.3);
    border-radius: 3px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(104, 211, 237, 0.5);
}

/* ========== HOME ACTION BOXES ========== */
.home-action-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.home-action-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home-action-box:hover {
    transform: translateY(-5px);
}

/* Box Alistar - Laranja com mais destaque */
.box-alistar {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.35), rgba(247, 147, 30, 0.2));
    border: 2px solid rgba(104, 211, 237, 0.5);
    box-shadow: 0 4px 20px rgba(104, 211, 237, 0.2);
}

.box-alistar:hover {
    border-color: rgba(104, 211, 237, 0.8);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.35);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.45), rgba(247, 147, 30, 0.3));
}

.box-alistar .box-icon {
    color: #68D3ED;
    background: rgba(104, 211, 237, 0.2);
    border-radius: 12px;
}

.box-alistar h3 {
    color: #68D3ED;
}

/* Box Entrar - Laranja Forte para destaque */
.box-entrar {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.35), rgba(247, 147, 30, 0.25));
    border: 2px solid rgba(104, 211, 237, 0.5);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.25);
}

.box-entrar:hover {
    border-color: rgba(104, 211, 237, 0.8);
    box-shadow: 0 10px 40px rgba(104, 211, 237, 0.4);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.45), rgba(247, 147, 30, 0.35));
}

.box-entrar .box-icon {
    color: #68D3ED;
    background: rgba(104, 211, 237, 0.2);
    border-radius: 12px;
}

.box-entrar h3 {
    color: #68D3ED;
}

/* Box Icon */
.box-icon {
    font-size: 2em;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Box Content */
.box-content {
    flex: 1;
}

.box-content h3 {
    margin: 0 0 8px;
    font-size: 1.3em;
    font-weight: 700;
}

.box-content p {
    margin: 0;
    font-size: 0.9em;
    color: #bdc3c7;
    line-height: 1.5;
}

/* Box Arrow */
.box-arrow {
    font-size: 1.3em;
    color: #666;
    transition: all 0.3s ease;
}

.home-action-box:hover .box-arrow {
    transform: translateX(8px);
    color: #999;
}

/* Responsivo boxes */
@media (max-width: 900px) {
    .home-action-boxes {
        grid-template-columns: 1fr;
    }
}
/* ========== NOTIFICAÇÕES NA SIDEBAR ========== */

/* Row do TeamSpeak + Notificações */
.sidebar-ts-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin: 0 15px 10px;
    position: relative;
}

.sidebar-ts-row .ts-connect {
    flex: 1;
    margin: 0;
}

/* Botão de Notificação */
.sidebar-btn-notification {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    border-radius: 8px;
    background: transparent;
    border: 2px solid rgba(104, 211, 237, 0.5);
    color: #68D3ED;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn-notification:hover {
    background: rgba(104, 211, 237, 0.1);
    border-color: rgba(104, 211, 237, 0.8);
    transform: translateY(-2px);
}

.sidebar-btn-notification i {
    font-size: 1.1em;
}

/* Badge de Notificação - Redondo */
.sidebar-btn-notification .notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fb1f1f;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    text-align: center;
    border: 2px solid #0a0202;
    animation: pulse-notification 2s infinite;
}

@keyframes pulse-notification {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========== MODAL DE NOTIFICAÇÕES ========== */

.notification-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notification-modal-overlay.active {
    opacity: 1;
}

body.modal-open {
    overflow: hidden !important;
}

.notification-modal {
    background: #1a1212;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(104, 211, 237, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.notification-modal-overlay.active .notification-modal {
    transform: translateY(0);
}

/* Header da Modal */
.notification-modal-header {
    background: linear-gradient(135deg, #68D3ED 0%, #3993D6 100%);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.notification-modal-header h4 {
    margin: 0;
    color: #fff;
    font-size: 1.1em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-modal-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-mark-read {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.8em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.btn-mark-read:hover {
    color: #fff;
}

.notification-modal-close {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    transition: all 0.2s;
}

.notification-modal-close:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: rotate(90deg);
}

/* Body da Modal */
.notification-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.notification-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notification-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item a {
    display: block;
    padding: 16px 20px;
    color: #bbb;
    text-decoration: none;
    transition: all 0.2s;
}

.notification-item a:hover {
    background: rgba(104, 211, 237, 0.1);
    color: #fff;
}

.notification-item.unread {
    background: rgba(255, 107, 53, 0.08);
    border-left: 4px solid #68D3ED;
}

.notification-item.unread a {
    color: #fff;
}

.notification-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.notification-title {
    font-size: 0.95em;
    margin: 0;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.new-badge {
    background: #68D3ED;
    color: #fff;
    font-size: 0.65em;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.notification-reference {
    font-size: 0.85em;
    color: #888;
    margin: 0;
    padding-left: 0;
    border-left: none;
    font-style: italic;
}

.notification-time {
    font-size: 0.8em;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.no-notifications {
    padding: 50px 20px;
    text-align: center;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.no-notifications i {
    font-size: 3em;
    color: #444;
}

.no-notifications span {
    font-size: 1em;
}

/* Footer da Modal */
.notification-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* Carregar mais notificações */
.notification-load-more {
    padding: 15px 20px;
    text-align: center;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(104, 211, 237, 0.4);
    border-radius: 8px;
    color: #68D3ED;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.btn-load-more:hover {
    background: rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.7);
}

.notification-loading {
    padding: 20px;
    text-align: center;
    color: #888;
}

.notification-loading i {
    margin-right: 8px;
}

.no-more {
    color: #666;
    font-size: 0.9em;
}

.btn-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(104, 211, 237, 0.4);
    border-radius: 8px;
    color: #68D3ED;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.2s;
}

.btn-view-all:hover {
    background: rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.7);
    color: #68D3ED;
}

/* Responsivo */
@media (max-width: 767px) {
    .notification-modal-overlay {
        padding: 0;
        align-items: stretch;
    }
    
    .notification-modal {
        max-width: 100%;
        max-height: 100%;
        height: 100%;
        border-radius: 0;
        border: none;
    }
    
    .notification-modal-header {
        padding: 15px;
        border-radius: 0;
    }
    
    .notification-modal-header h4 {
        font-size: 1em;
    }
    
    .btn-mark-read span {
        display: none;
    }
    
    .notification-modal-body {
        flex: 1;
        overflow-y: auto;
    }
    
    .notification-item a {
        padding: 16px 15px;
    }
    
    .notification-load-more {
        padding: 20px 15px;
    }
}