/*
============================================================================
AuraNotify - 通知系统样式 (银潮风格)
============================================================================
*/

/* 通知容器 */
.aura-notice-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}

/* 基础通知样式 */
.aura-notice {
    position: relative;
    background: rgba(20, 30, 48, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(0, 200, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
    padding: 16px 20px;
    min-width: 300px;
    max-width: 400px;
    border-left: 5px solid #00e5ff;
    pointer-events: auto;
    overflow: hidden;
    color: #e0e0e0;
}

/* 通知内容布局 */
.aura-notice-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* 图标样式 */
.aura-notice-icon {
    flex-shrink: 0;
    font-size: 20px;
    line-height: 1;
    margin-top: 2px;
    color: #00e5ff;
}

/* 标题样式 */
.aura-notice-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    color: #00e5ff;
    line-height: 1.3;
    text-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
}

/* 消息内容样式 */
.aura-notice-message {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.5;
    word-break: break-word;
}

/* 关闭按钮 */
.aura-notice-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: transparent;
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 4px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #00e5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
}

.aura-notice-close:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00e5ff;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

/* 通知类型颜色 */
.aura-notice-info {
    border-left-color: #00e5ff;
}

.aura-notice-success {
    border-left-color: #00ff95;
}

.aura-notice-warn,
.aura-notice-warning {
    border-left-color: #ffaa00;
}

.aura-notice-error {
    border-left-color: #ff3d00;
}

.aura-notice-alert {
    border-left-color: #ff3d00;
}

.aura-notice-trophy {
    border-left-color: #ffd700;
}

.aura-notice-tips {
    border-left-color: #9b59b6;
}

/* 动画效果 */
.aura-notice-enter {
    animation: aura-notice-slide-in 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.aura-notice-exit {
    animation: aura-notice-slide-out 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes aura-notice-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes aura-notice-slide-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .aura-notice-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .aura-notice {
        min-width: auto;
        width: 100%;
        max-width: none;
    }
}

/* 无障碍支持 */
.aura-notice-close:focus {
    outline: 2px solid #00e5ff;
    outline-offset: 2px;
}