* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 头部样式 */
.header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.logo-icon {
    font-size: 48px;
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(90deg, #6ee1f5, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 18px;
    color: #a0a0a0;
    letter-spacing: 2px;
}

/* 下载卡片 */
.download-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.plugin-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.plugin-name {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.version-badge {
    display: inline-block;
    background: linear-gradient(90deg, #6ee1f5, #00d4ff);
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.card-body {
    margin-bottom: 30px;
}

.plugin-desc {
    text-align: center;
    color: #c0c0c0;
    font-size: 16px;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-list li {
    background: rgba(110, 225, 245, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    color: #6ee1f5;
}

.card-footer {
    text-align: center;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #6ee1f5, #00d4ff);
    color: #1a1a2e;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(110, 225, 245, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(110, 225, 245, 0.5);
}

.btn-icon {
    font-size: 20px;
}

.file-info {
    margin-top: 15px;
    color: #808080;
    font-size: 13px;
}

/* 安装说明 */
.install-guide {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.install-guide h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #6ee1f5;
}

.install-guide ol {
    padding-left: 24px;
    color: #c0c0c0;
}

.install-guide li {
    margin-bottom: 12px;
    padding-left: 8px;
}

.install-guide code {
    background: rgba(110, 225, 245, 0.2);
    color: #6ee1f5;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
}

/* 底部 */
.footer {
    margin-top: auto;
    padding-top: 40px;
    text-align: center;
    color: #606060;
    font-size: 14px;
}

.footer .contact {
    margin-top: 8px;
    font-size: 12px;
}

/* 动画 */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* 响应式 */
@media (max-width: 600px) {
    .logo-text {
        font-size: 28px;
    }
    
    .download-card {
        padding: 25px;
    }
    
    .plugin-name {
        font-size: 22px;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .download-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}
