/**
 * EXE检测器样式
 */

.exe-detector-wrapper {
    position: relative;
    min-height: 400px;
}

.exe-not-installed {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.exe-prompt-content {
    max-width: 600px;
    margin: 0 auto;
}

.exe-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.exe-not-installed h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.exe-not-installed > .exe-prompt-content > p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.exe-download-section {
    margin: 30px 0;
}

.exe-download-btn {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.exe-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

.download-icon {
    margin-right: 8px;
    font-size: 20px;
}

.exe-install-steps {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
    backdrop-filter: blur(10px);
}

.exe-install-steps h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.exe-install-steps ol {
    margin: 0;
    padding-left: 20px;
}

.exe-install-steps li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.exe-status {
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 14px;
}

.status-icon {
    margin-right: 8px;
    font-size: 18px;
}

.status-text {
    opacity: 0.9;
}

.exe-content-wrapper {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .exe-not-installed {
        padding: 30px 20px;
    }
    
    .exe-not-installed h3 {
        font-size: 24px;
    }
    
    .exe-download-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .exe-icon {
        font-size: 48px;
    }
}

