/* Tutorial Page Styling */
.tutorial-page {
    padding: 60px 0 100px;
    background: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.tutorial-header {
    text-align: center;
    margin-bottom: 60px;
}

.tutorial-content {
    max-width: 900px;
    margin: 0 auto;
}

.tutorial-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.tutorial-step:hover {
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.step-content h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.step-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.step-list {
    margin: 20px 0;
    padding-left: 24px;
}

.step-list li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.step-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.step-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.step-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.step-btn svg {
    width: 20px;
    height: 20px;
}

.info-box,
.warning-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    margin: 24px 0;
}

.info-box {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border-left: 4px solid var(--accent-cyan);
}

.warning-box {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-left: 4px solid var(--accent-orange);
}

.info-box svg,
.warning-box svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box p,
.warning-box p {
    margin: 0;
    font-size: 15px;
    color: var(--text-dark);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.feature-item .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-item .feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-item h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.resources-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #E5E7EB;
}

.resources-section h2 {
    font-size: 32px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
}

.resource-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.resource-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.resource-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.resource-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.resource-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tutorial-step {
        flex-direction: column;
        padding: 24px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .step-content h2 {
        font-size: 24px;
    }

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

    .step-actions {
        flex-direction: column;
    }

    .step-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .tutorial-page {
        padding: 40px 0 60px;
    }

    .tutorial-step {
        padding: 20px;
    }

    .step-content h2 {
        font-size: 20px;
    }

    .resource-cards {
        grid-template-columns: 1fr;
    }
}

