/* ===== NOTIFICATIONS ===== */

.notification-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: white;
    transform: translateY(-2px);
}

.notification-btn.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.notification-btn.active .notification-icon {
    animation: bellRing 2s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.notification-icon {
    font-size: 20px;
}

@media (max-width: 768px) {
    .notification-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .notification-label {
        display: none;
    }
}

/* ===== MODAL INSTRUCTIONS NOTIFICATIONS ===== */

.notification-instructions-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.notification-instructions-overlay.active {
    opacity: 1;
    visibility: visible;
}

.notification-instructions-backdrop {
    position: absolute;
    inset: 0;
}

.notification-instructions-modal {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(26, 26, 26, 0.95));
    border: 3px solid #f59e0b;
    border-radius: 25px;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.notification-instructions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.notification-instructions-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    color: #000;
}

.notification-instructions-close {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-instructions-close:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: rotate(90deg);
}

.notification-instructions-body {
    padding: 30px;
}

/* Alert */
.notification-alert {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 15px;
    margin-bottom: 30px;
}

.notification-alert-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.notification-alert-text {
    font-size: 15px;
    color: #ef4444;
    font-weight: 600;
}

/* Steps */
.notification-steps h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.notification-step {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
}

.notification-step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: #000;
    flex-shrink: 0;
}

.notification-step-content {
    flex: 1;
}

.notification-step-content strong {
    display: block;
    font-size: 15px;
    color: #f59e0b;
    margin-bottom: 8px;
}

.notification-step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.notification-instructions-footer {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.notification-btn-primary,
.notification-btn-secondary {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    color: #000;
}

.notification-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.notification-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.notification-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
    .notification-instructions-modal {
        width: 95%;
    }
    
    .notification-instructions-header {
        padding: 20px;
    }
    
    .notification-instructions-header h2 {
        font-size: 20px;
    }
    
    .notification-instructions-body {
        padding: 20px;
    }
    
    .notification-instructions-footer {
        flex-direction: column;
    }
    
    .notification-step {
        flex-direction: column;
        align-items: flex-start;
    }
}