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

.button--primary {
    background: rgba(255, 255, 255, 0.94);
    color: #111318;
    padding: 0.95rem 1.25rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 18px 56px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button--primary:hover {
    transform: translateY(-1px);
    background: #ffffff;
}

.button--ghost {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 0.8rem 1rem;
}

.button--ghost:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.16);
}

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

.terminal-frame {
    position: relative;
    overflow: hidden;
    border-radius: 22px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)),
        rgba(8, 10, 14, 0.34);

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.28);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.terminal-frame__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.012) 0%,
            rgba(0, 0, 0, 0) 32%,
            rgba(0, 0, 0, 0.10) 100%);
}