/* 风洞效果 */
.wind-tunnel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.wind-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 255, 204, 0.1) 20%,
        rgba(0, 179, 255, 0.2) 50%,
        rgba(0, 255, 204, 0.1) 80%,
        transparent);
    background-size: 200% 100%;
    animation: windFlow 15s linear infinite;
    opacity: 0.5;
}

@keyframes windFlow {
    0% { background-position: 200% 50%; }
    100% { background-position: -100% 50%; }
}

/* 玻璃面板效果 */
.glass-panel {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(136,146,176,0.15);
    box-shadow: 0 0 30px rgba(0,255,204,0.08);
    border-radius: 1rem;
}

/* 阻碍效果 */
.wind-obstacle {
    position: relative;
    overflow: hidden;
}

.wind-obstacle::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(
        circle at center,
        rgba(10, 25, 47, 0.9) 0%,
        rgba(10, 25, 47, 0.7) 50%,
        rgba(10, 25, 47, 0.4) 70%,
        transparent 90%
    );
    backdrop-filter: blur(10px);
    z-index: -1;
    border-radius: 2rem;
    pointer-events: none;
}

/* 表格样式 */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 12px 16px;
}

tr:not(:last-child) {
    border-bottom: 1px solid rgba(136, 146, 176, 0.1);
}

tr:hover {
    background-color: rgba(0, 255, 204, 0.05);
}

/* 操作按钮 */
.download-btn {
    padding: 6px 12px;
    background-color: rgba(0, 179, 255, 0.1);
    color: #00b3ff;
    border-radius: 4px;
    transition: all 0.3s;
}

.download-btn:hover {
    background-color: rgba(0, 179, 255, 0.2);
}

.delete-btn {
    padding: 6px 12px;
    background-color: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border-radius: 4px;
    transition: all 0.3s;
}

.delete-btn:hover {
    background-color: rgba(255, 71, 87, 0.2);
}