.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 300;
}

.status-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
}

.status-active {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.status-patching {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid #f59e0b;
    color: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

.status-discontinued {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
    opacity: 0.7;
}

.executor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
}

.executor-card:hover {
    transform: translateY(-5px);
    border-color: #d8b4fe;
    background: rgba(216, 180, 254, 0.05);
}

.executor-img {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 12px;
    filter: grayscale(0.5);
    transition: 0.3s;
}

.executor-card:hover .executor-img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    font-size: 0.825rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
}

.nav-cta:hover {
    background: rgba(216, 180, 254, 0.1);
    border-color: #d8b4fe;
    color: #d8b4fe;
}

pre[class*="language-"] {
    background: rgba(3, 5, 10, 0.5) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0.5rem;
    margin: 0 !important;
}

.action-copy-btn {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    padding: 0.5rem 1.25rem;
    font-size: 0.825rem;
    border-radius: 9999px;
    transition: 0.25s;
    cursor: pointer;
}

.action-copy-btn:hover {
    border-color: #d8b4fe;
    color: #d8b4fe;
    background: rgba(216, 180, 254, 0.05);
}

.line-separator {
    width: 3rem;
    height: 1px;
    background-color: rgba(216, 180, 254, 0.5);
    margin: 1rem auto;
}