/* 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: 280px;
    background: linear-gradient(145deg, rgba(15, 8, 0, 0.98), rgba(35, 18, 0, 0.95));
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 15px;
    padding: 15px;
    backdrop-filter: blur(25px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.6),
        inset 0 2px 8px rgba(255, 140, 0, 0.1);
    transform: translateX(300px) scale(0.8);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}
.notification::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 140, 0, 0.6) 0%, 
        rgba(255, 165, 0, 0.4) 50%, 
        rgba(255, 140, 0, 0.6) 100%);
    border-radius: 17px;
    z-index: -1;
    animation: notificationBorder 3s ease-in-out infinite;
}
.notification.show {
    transform: translateX(0) scale(1);
    opacity: 1;
}
.notification.hide {
    transform: translateX(300px) scale(0.8);
    opacity: 0;
}
.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.notification-title {
    font-family: 'Orbitron', monospace;
    font-size: 1em;
    font-weight: 700;
    color: #ff8c00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
    animation: titleGlow 2s ease-in-out infinite alternate;
}
.notification-close {
    width: 24px;
    height: 24px;
    background: linear-gradient(145deg, rgba(255, 140, 0, 0.2), rgba(255, 165, 0, 0.1));
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ff8c00;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.notification-close:hover {
    background: linear-gradient(145deg, rgba(255, 140, 0, 0.4), rgba(255, 165, 0, 0.3));
    border-color: rgba(255, 140, 0, 0.6);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}
.notification-text {
    color: #fff5e6;
    font-size: 0.9em;
    line-height: 1.3;
    opacity: 0.9;
}
.notification-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}
.notification-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: linear-gradient(145deg, rgba(20, 10, 0, 0.95), rgba(40, 20, 0, 0.8));
    border: 2px solid rgba(255, 140, 0, 0.3);
    color: #fff5e6;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 2px 8px rgba(255, 140, 0, 0.1);
}
.notification-btn:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(255, 140, 0, 0.5);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.5),
        inset 0 2px 8px rgba(255, 140, 0, 0.15);
}
.notification-btn-accept {
    background: linear-gradient(145deg, rgba(20, 10, 0, 0.95), rgba(40, 20, 0, 0.8));
    border: 2px solid rgba(255, 140, 0, 0.3);
    color: #fff5e6;
}
.notification-btn-accept:hover {
    background: linear-gradient(145deg, rgba(30, 15, 0, 0.95), rgba(50, 25, 0, 0.8));
    border-color: rgba(255, 140, 0, 0.5);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.5),
        inset 0 2px 8px rgba(255, 140, 0, 0.15);
}
.notification-btn-cancel {
    background: linear-gradient(145deg, rgba(20, 10, 0, 0.95), rgba(40, 20, 0, 0.8));
    border: 2px solid rgba(255, 140, 0, 0.3);
    color: #fff5e6;
}
.notification-btn-cancel:hover {
    background: linear-gradient(145deg, rgba(30, 15, 0, 0.95), rgba(50, 25, 0, 0.8));
    border-color: rgba(255, 140, 0, 0.5);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.5),
        inset 0 2px 8px rgba(255, 140, 0, 0.15);
}
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff8c00, #ffa500);
    border-radius: 0 0 13px 13px;
    width: 100%;
    transform-origin: left;
    animation: progressBar 4s linear forwards;
}
@keyframes notificationBorder {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
} 