:root {
    --primary-color: #2c3e50;
    /*--secondary-color: #3498db;*/
    --accent-color: #f39c12;
    --success-color: #27ae60;
    --light-bg: #f8f9fa;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a6491 100%);
    color: white;
    padding: 10px 0;
    margin-bottom: 40px;
    border-radius: 0 0 20px 20px;
}

.section-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    border: none;
    transition: transform 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
}

.command-card {
    border-left: 4px solid var(--secondary-color);
    height: 100%;
}

.format-card {
    border-left: 4px solid var(--accent-color);
    height: 100%;
}

.filter-card {
    border-left: 4px solid var(--success-color);
    height: 100%;
}

.code-block {
    background-color: #2c3e50;
    color: #ecf0f1;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    overflow-x: auto;
    margin: 15px 0;
    position: relative;
}

.code-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px 8px 0 0;
}

.command-example {
    background-color: #34495e;
    color: #f39c12;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    display: inline-block;
    margin: 5px 0;
}

.log-output {
    background-color: #1a1a1a;
    color: #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    overflow-x: auto;
    margin: 15px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.commit-hash {
    color: #f39c12;
}

.branch-label {
    color: #3498db;
    font-weight: bold;
}

.commit-message {
    color: #ecf0f1;
}

.author {
    color: #27ae60;
}

.date {
    color: #95a5a6;
}

.workflow-step {
    text-align: center;
    padding: 20px 10px;
}

.workflow-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step-1 .workflow-icon {
    background-color: var(--secondary-color);
}

.step-2 .workflow-icon {
    background-color: var(--accent-color);
}

.step-3 .workflow-icon {
    background-color: var(--success-color);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
}


.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.note {
    background-color: #e8f4fd;
    border-left: 4px solid var(--secondary-color);
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.tip {
    background-color: #fff9e6;
    border-left: 4px solid var(--accent-color);
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.branch-visual {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

    .workflow-step {
        margin-bottom: 20px;
    }
}
