/* views/assets/css/step-by-step-2.css */

.step-page {
    padding-top: 100px;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

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

.page-header h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.page-header p {
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    color: #888;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 4rem;
}

.column {
    background: #111;
    border: 1px solid #272727;
    border-radius: 8px;
    overflow: hidden;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 28px;
    background: #0a0a0a;
    border-bottom: 1px solid #272727;
}

.section-title .badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: #e8521a;
    background: rgba(232, 82, 26, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

.section-title h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.step-list {
    padding: 24px 28px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.step:last-of-type {
    margin-bottom: 0;
}

.step-number {
    width: 36px;
    height: 36px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e8521a;
    flex-shrink: 0;
}

.step-info {
    flex: 1;
}

.step-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 8px 0;
}

.step-info p {
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #aaa;
    margin: 0 0 16px 0;
}

.step-img {
    margin-top: 12px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #272727;
}

.step-img img {
    width: 100%;
    display: block;
}

.step-note {
    display: flex;
    gap: 12px;
    background: #0a0a0a;
    border: 1px solid #272727;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 24px;
}

.step-note .note-icon {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: #e8521a;
}

.step-note p {
    font-family: 'Barlow', sans-serif;
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

.commands-list {
    padding: 24px 28px;
}

.command {
    margin-bottom: 32px;
}

.command:last-of-type {
    margin-bottom: 0;
}

.command-header {
    margin-bottom: 12px;
}

.command-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    color: #e8521a;
    background: rgba(232, 82, 26, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
}

.command p {
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #aaa;
    margin: 0 0 12px 0;
}

.command-img {
    margin-top: 12px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #272727;
}

.command-img img {
    width: 100%;
    display: block;
}

.command-tip {
    display: flex;
    gap: 16px;
    background: #0a0a0a;
    border-left: 3px solid #e8521a;
    padding: 16px 20px;
    margin-top: 32px;
    border-radius: 0 8px 8px 0;
}

.tip-line {
    display: none;
}

.tip-content h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #e8521a;
    margin: 0 0 6px 0;
}

.tip-content p {
    font-family: 'Barlow', sans-serif;
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

.tip-content code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #e8521a;
    background: rgba(232, 82, 26, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
}

@media (max-width: 900px) {
    .two-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .step-page {
        padding-top: 80px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .step-list, .commands-list {
        padding: 20px;
    }
    
    .section-title {
        padding: 18px 20px;
    }
    
    .step {
        gap: 12px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}