/* ============================================
   使用教程页面样式
   ============================================ */

.tutorial-section {
    padding-top: var(--space-2xl);
}

/* 步骤卡片网格 */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.step-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.step-card:hover {
    border-color: var(--border-neon);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--neon-cyan-glow);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 8px var(--neon-cyan-glow));
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-desc a {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan-glow);
}

/* 教程详情块 */
.tutorial-block {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.tutorial-block:hover {
    border-color: var(--border-neon);
}

.tutorial-block-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(0, 245, 255, 0.03);
}

.tutorial-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px var(--neon-cyan-glow));
}

.tutorial-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.tutorial-content {
    padding: var(--space-lg) var(--space-xl);
}

.tutorial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.tutorial-tips {
    list-style: none;
    margin: 0;
}

.tutorial-tips li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
}

.tutorial-tips li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-size: 0.7rem;
    top: 4px;
    text-shadow: 0 0 5px var(--neon-cyan-glow);
}

.tutorial-tips li strong {
    color: var(--text-primary);
}

/* 故障排除网格 */
.troubleshoot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.troubleshoot-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.troubleshoot-card:hover {
    border-color: var(--border-neon);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.troubleshoot-icon {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.troubleshoot-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.troubleshoot-card ul {
    list-style: none;
}

.troubleshoot-card ul li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: var(--space-md);
    position: relative;
}

.troubleshoot-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

/* 更多帮助 */
.tutorial-more-help {
    text-align: center;
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid var(--border-neon);
    border-radius: var(--radius-md);
}

.tutorial-more-help p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.tutorial-more-help a {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan-glow);
    transition: all var(--transition-fast);
}

.tutorial-more-help a:hover {
    text-shadow: 0 0 10px var(--neon-cyan-glow);
}

/* CTA */
.cta-section {
    padding: var(--space-3xl) 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 20px var(--neon-cyan-glow);
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* 响应式 */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .troubleshoot-grid {
        grid-template-columns: 1fr;
    }

    .tutorial-block-header {
        padding: var(--space-md);
    }

    .tutorial-content {
        padding: var(--space-md);
    }

    .cta-title {
        font-size: 1.5rem;
    }
}
