.netdisk-header {
    margin-bottom: 2rem;
}

.netdisk-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.netdisk-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.netdisk-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.netdisk-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.netdisk-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.netdisk-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.netdisk-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}


.baidu-icon {
    background: linear-gradient(135deg, #2382E2, #21A5F7);
}

.aliyun-icon {
    background: linear-gradient(135deg, #FF6700, #FF9A3C);
}

.tencent-icon {
    background: linear-gradient(135deg, #12B7F5, #48C7F9);
}

.onedrive-icon {
    background: linear-gradient(135deg, #0078D4, #25A1F0);
}

.天翼云-icon {
    background: linear-gradient(135deg, #00C2F3, #5FD3F3);
}


.back-button {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    transform: translateX(-3px);
    background-color: rgba(255, 255, 255, 0.25);
}


@media (max-width: 768px) {
    .netdisk-title {
        font-size: 1.75rem;
    }
    
    .netdisk-description {
        font-size: 1rem;
    }
    
    .netdisk-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    
    .netdisk-card {
        padding: 1.5rem;
    }
    
    .netdisk-name {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .netdisk-title {
        font-size: 1.5rem;
    }
    
    .netdisk-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .netdisk-card {
        padding: 1.25rem;
    }
}


#custom-netdisk {
    animation: pulse-subtle 2s infinite;
}

@keyframes pulse-subtle {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 99, 255, 0.3);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(108, 99, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(108, 99, 255, 0);
    }
}