.button {
    appearance: none;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    transition: 180ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
}

.button--primary {
    background: linear-gradient(180deg, var(--color-brand) 0%, #8570ca 100%);
    color: white;
    padding: 0.95rem 1.25rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.button--primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 0.8rem 1rem;
}

.button--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

.button--full {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.terminal-frame {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #0c0f14;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: var(--shadow-lg);
}

.terminal-frame__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.terminal-frame__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.12) 100%);
}