
.vps-price-alert {
    background: linear-gradient(135deg, #2D5A81 0%, #35A9E1 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(45, 90, 129, 0.3);
    animation: slideDown 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.vps-price-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.notification-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.notification-icon svg {
    color: #ffffff;
}

.notification-content {
    position: relative;
    z-index: 1;
}

.notification-title {
    font-family: 'RawsonBold', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.notification-text {
    font-family: 'RawsonLight', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    margin: 0;
}

.btn-notification-action {
    background-color: #F39324;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Rawson', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
}

.btn-notification-action:hover {
    background-color: #ffffff;
    color: #2D5A81 !important;
    border-color: #F39324;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 147, 36, 0.4);
    text-decoration: none;
}

.btn-close-notification {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 0;
}

.btn-close-notification:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.btn-close-notification:focus {
    outline: none;
}

.btn-close-notification svg {
    color: #ffffff;
}

@media (max-width: 991px) {
    .notification-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    
    .notification-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .notification-title {
        font-size: 14px;
    }
    
    .notification-text {
        font-size: 12px;
    }
    
    .btn-notification-action {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .btn-close-notification {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    
    .btn-close-notification svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 576px) {
    .vps-price-alert .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .notification-title {
        font-size: 13px;
    }
}