﻿:root {
    --gazo-shell-bg: rgba(7, 10, 20, 0.88);
    --gazo-shell-line: rgba(255, 255, 255, 0.2);
    --gazo-shell-cyan: #39f7ff;
    --gazo-shell-gold: #ffd257;
    --gazo-shell-text: #eef5ff;
}

.with-gazo-bar {
    padding-top: 72px;
}

.gazo-arcade-bar {
    position: fixed;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 1200;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.gazo-arcade-pill {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gazo-shell-text);
    background:
        linear-gradient(145deg, rgba(57, 247, 255, 0.1), rgba(255, 210, 87, 0.12)),
        var(--gazo-shell-bg);
    border: 1px solid var(--gazo-shell-line);
    border-radius: 999px;
    min-height: 44px;
    padding: 8px 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.gazo-arcade-pill:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.gazo-chip {
    font-size: 0.67rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #08212f;
    background: linear-gradient(135deg, var(--gazo-shell-cyan), #95fff6);
    border-radius: 999px;
    padding: 6px 8px;
}

.gazo-label {
    font-size: 0.92rem;
    line-height: 1.1;
}

@media (max-width: 680px) {
    .with-gazo-bar {
        padding-top: 84px;
    }

    .gazo-arcade-pill {
        width: 100%;
        justify-content: center;
    }

    .gazo-label {
        font-size: 0.84rem;
    }
}
