:root {
    --bs-primary: #6f42c1;
    --bs-primary-rgb: 111, 66, 193;
}

.hero-section {
    background: linear-gradient(135deg, #6f42c1 0%, #0d6efd 100%);
    color: white;
    padding: 10px 0;
    margin-bottom: 40px;
}

.step-card {
    transition: transform 0.3s;
    height: 100%;
    border-left: 4px solid var(--bs-primary);
}

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

.code-block {
    background-color: #282c34;
    border-radius: 5px;
    padding: 15px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    margin: 15px 0;
    color: #abb2bf;
    overflow-x: auto;
}

.installation-method {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.method-header {
    background-color: var(--bs-primary);
    color: white;
    padding: 15px 20px;
    font-weight: bold;
}

.method-content {
    padding: 20px;
    background-color: #f8f9fa;
}

.example-preview {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 20px;
    margin: 15px 0;
    background-color: white;
}

.nav-tabs .nav-link.active {
    background-color: var(--bs-primary);
    color: white;
    border-color: var(--bs-primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(111, 66, 193, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
