/**
 * Notification Popup Styles
 */

.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.notification-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.notification-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1f2e, #2d3748);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(239, 68, 68, 0.8);
    border: 1px solid #ef4444;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: auto;
}

.notification-close:hover {
    background: #ef4444;
    color: #fff;
    transform: rotate(90deg);
}

.notification-slider {
    position: relative;
    padding: 20px;
}

.notification-slides {
    position: relative;
    min-height: 200px;
}

.notification-slide {
    display: none;
    animation: slideIn 0.5s ease;
}

.notification-slide.active {
    display: block;
}

.notification-image {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.notification-image img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s;
}

.notification-image a:hover img {
    transform: scale(1.05);
}

.notification-text {
    padding: 10px;
}

.notification-text h3 {
    color: #f59e0b;
    font-size: 22px;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.notification-text p {
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    white-space: pre-wrap;
}

/* Navigation Buttons */
.notification-prev,
.notification-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid #f59e0b;
    color: #f59e0b;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.notification-prev {
    left: 10px;
}

.notification-next {
    right: 10px;
}

.notification-prev:hover,
.notification-next:hover {
    background: #f59e0b;
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

/* Dots Pagination */
.notification-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.notification-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.notification-dots .dot.active {
    background: #f59e0b;
    width: 30px;
    border-radius: 5px;
}

.notification-dots .dot:hover {
    background: rgba(245, 158, 11, 0.6);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .notification-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .notification-text h3 {
        font-size: 18px;
    }

    .notification-text p {
        font-size: 14px;
    }

    .notification-prev,
    .notification-next {
        width: 35px;
        height: 35px;
        font-size: 22px;
    }
}