/* --- SITE NOTIFICATION MODAL (PREMIUM GLASSMORPHISM) --- */
.site-noti-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.site-noti-overlay.active {
    display: flex;
    opacity: 1;
}

.site-noti-modal {
    background: rgba(36, 35, 50, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    width: 100%;
    max-width: 550px;
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Poppins', sans-serif;
}

.site-noti-overlay.active .site-noti-modal {
    transform: translateY(0) scale(1);
}

.site-noti-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.site-noti-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.site-noti-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.site-noti-content {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    text-align: center;
    /* Hide scrollbar for Chrome, Safari and Opera */
    -webkit-overflow-scrolling: touch;
}

.site-noti-content::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.site-noti-content {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.site-noti-content h3 {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #fff, #1e90ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-noti-content p {
    margin: 0 0 25px 0;
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.site-noti-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: #1e90ff;
    color: #fff;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.site-noti-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.4);
    background: #1e90ff;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 576px) {
    .site-noti-modal {
        border-radius: 20px;
    }

    .site-noti-img {
        height: 180px;
    }

    .site-noti-content {
        padding: 24px;
    }

    .site-noti-content h3 {
        font-size: 20px;
    }

    .site-noti-content p {
        font-size: 14px;
    }
}

.site-noti-dont-show {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.site-noti-dont-show:hover {
    color: #fff;
    opacity: 0.8;
}