/* notification.css */
.notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.notification {
    width: 300px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1.5px solid #3a3a3a;
    border-radius: 14px;
    padding: 14px 16px;
    backdrop-filter: blur(20px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.04) inset;
    transform: translateX(320px) scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}
.notification.show {
    transform: translateX(0) scale(1);
    opacity: 1;
}
.notification.hide {
    transform: translateX(320px) scale(0.9);
    opacity: 0;
}
.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.notification-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95em;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}
.notification-close {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid #4a4a4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #b0b0b0;
    font-size: 0.85em;
    font-weight: bold;
    transition: all 0.2s ease;
    line-height: 1;
}
.notification-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #666;
    color: #fff;
}
.notification-text {
    color: #b0b0b0;
    font-size: 0.88em;
    line-height: 1.4;
}
.notification-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.notification-btn {
    flex: 1;
    padding: 7px 14px;
    border: none;
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.82em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.notification-btn:hover {
    transform: translateY(-1px);
}
.notification-btn-accept {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    color: #fff;
}
.notification-btn-accept:hover {
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.notification-btn-cancel {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid #4a4a4a;
    color: #b0b0b0;
}
.notification-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #666;
    color: #fff;
}
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 0 0 14px 14px;
    width: 100%;
    transform-origin: left;
    animation: progressBar 4s linear forwards;
}
@keyframes progressBar {
    0% { transform: scaleX(1); }
    100% { transform: scaleX(0); }
}
@keyframes siteModalIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}
