.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.notification-container {
    background: rgba(26, 15, 31, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 1rem;
    width: 100%;
    max-width: 600px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.notification-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.notification-content {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.notification-content ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.notification-content li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.notification-button {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.notification-hidden {
    display: none;
}

@media (max-width: 768px) {
    .notification-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .notification-title {
        font-size: 1.2rem;
    }
    
    .notification-content {
        font-size: 0.95rem;
    }
}
