.tutorial-section {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 35px 20px;
    margin-top: 37px;
    font-family: "Quicksand", sans-serif;
    color: #334155;
}

.tutorial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.tutorial-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #1e293b;
}

.tutorial-content {
    max-width: 980px;
    margin: 0 auto;
}

.tutorial-list p {
    margin-bottom: 15px;
}

.tutorial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.tutorial-card {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tutorial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-color: #94a3b8;
}

.tutorial-card h4 {
    margin: 0 0 10px 0;
    color: #0f1724;
}

.tutorial-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

.tutorial-step {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e2e8f0;
}

.step-progress {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 10px;
}

.tutorial-step h4 {
    margin: 0 0 20px 0;
    font-size: 1.25rem;
    color: #1e293b;
}

.step-body {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
}

.step-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.step-body li {
    margin-bottom: 8px;
}

.step-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.tutorial-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background 0.2s;
}

.tutorial-btn.primary {
    background: #3b82f6;
    color: white;
}

.tutorial-btn.primary:hover {
    background: #2563eb;
}

.tutorial-btn.secondary {
    background: #e2e8f0;
    color: #475569;
}

.tutorial-btn.secondary:hover {
    background: #cbd5e1;
}

.tutorial-btn.success {
    background: #22c55e;
    color: white;
}

.tutorial-close-btn {
    background: transparent;
    border: 1px solid #cbd5e1;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    color: #64748b;
}

.tutorial-close-btn:hover {
    background: #f1f5f9;
    color: #334155;
}

.tutorial-feedback {
    padding: 15px;
    border-radius: 6px;
    font-weight: 500;
    display: none;
}

.tutorial-feedback.success {
    display: block;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.tutorial-feedback.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.tutorial-complete {
    text-align: center;
    padding: 40px;
}

/* Highlight Effect */
@keyframes pulse-highlight {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.tutorial-highlight {
    position: relative;
    z-index: 50;
    animation: pulse-highlight 2s infinite;
    border-radius: 4px;
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}
