body {
    background: #f5f7fb;
    color: #1f2937;
}
.hero-card {
    background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
    border: 1px solid #e5eaf2;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}
.git-logo {
    width: 110px;
    height: 110px;
    margin-left: auto;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: linear-gradient(135deg, #111827, #374151);
    color: #fff;
    font-size: 58px;
    box-shadow: 0 15px 30px rgba(17, 24, 39, .18);
}
.modern-card {
    border: 1px solid #e5eaf2;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    overflow: hidden;
}
.workflow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.workflow-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 135px;
}
.workflow-item small {
    display: block;
    color: #6b7280;
}
.workflow-icon {
    width: 45px;
    height: 45px;
    border-radius: 13px;
    background: #eef4ff;
    color: #2563eb;
    display: grid;
    place-items: center;
    font-size: 20px;
}
.workflow-arrow {
    color: #9ca3af;
    font-size: 22px;
}
.server-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px dashed #e5e7eb;
}
.server-row:last-child {
    border-bottom: 0;
}
.tree {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 14px;
}
.tree ul {
    list-style: none;
    padding-left: 22px;
    margin: 4px 0;
}
.tree li {
    padding: 5px 0;
}
.tree i {
    color: #64748b;
    margin-right: 5px;
}
.tree-folder > i {
    color: #f59e0b;
}
.tree-root {
    font-weight: 700;
}
.commit-list {
    position: relative;
}
.commit-item {
    position: relative;
    display: flex;
    gap: 14px;
    padding: 14px 0 14px 4px;
    border-bottom: 1px solid #eef0f4;
}
.commit-item:last-child {
    border-bottom: 0;
}
.commit-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #2563eb;
    margin-top: 6px;
    flex: 0 0 auto;
}
.empty-state {
    min-height: 160px;
    display: grid;
    place-content: center;
    text-align: center;
    color: #9ca3af;
}
.empty-state i {
    font-size: 40px;
    margin-bottom: 8px;
}
.command-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.command-grid > div {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    background: #fafafa;
}
.command-grid code {
    display: block;
    margin-bottom: 5px;
    color: #2563eb;
}
.command-grid span {
    font-size: 13px;
    color: #6b7280;
}
@media (max-width: 991px) {
    .workflow-arrow {
        display: none;
    }
    .workflow {
        justify-content: flex-start;
    }
    .command-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 575px) {
    .git-logo {
        margin: 0 auto;
    }
    .command-grid {
        grid-template-columns: 1fr;
    }
}
