/* Premium Website Notifications */
.alert-box {
    background: rgba(15, 12, 18, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    animation: slideDownFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 1000;
}

.alert-box:hover {
    background: rgba(25, 22, 28, 0.5);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.alert-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    opacity: 0.8;
}

.alert-update::before {
    background: linear-gradient(to bottom, #8B5CF6, #6366F1);
}

.alert-info::before {
    background: linear-gradient(to bottom, #3b82f6, #2dd4bf);
}

.alert-warning::before {
    background: linear-gradient(to bottom, #f43f5e, #fb923c);
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.alert-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
}

.alert-update .alert-icon {
    color: #a78bfa;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.alert-info .alert-icon {
    color: #60a5fa;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.alert-warning .alert-icon {
    color: #fb7185;
    text-shadow: 0 0 15px rgba(244, 63, 94, 0.4);
}

.alert-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.alert-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -3.5px;
    color: #fff;
}

.alert-text span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    max-width: 800px;
}

.alert-close {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-close:hover {
    color: #fff;
    background: rgba(244, 63, 94, 0.2);
    border-color: rgba(244, 63, 94, 0.3);
    transform: rotate(90deg);
}