.live-pill,
.coming-soon-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35em;
    color: #fff;
    font-size: 0.25em;
    font-weight: 300;
    letter-spacing: 0.08em;
    padding: 0.5em 0.8em 0.45em;
    border-radius: 999px;
    margin-left: 0.4em;
    text-transform: lowercase;
    line-height: 1;
    position: relative;
    top: -2em;
    white-space: nowrap;
}

.live-pill { background: #16a34a; }
.coming-soon-pill { background: #eab308; }

/* breathing dot */
.live-pill::before,
.coming-soon-pill::before {
    content: "";
    display: inline-block;
    width: 0.55em;
    height: 0.55em;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    animation: live-pulse 1.6s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.booster-check {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    margin: 1rem 0;
}

@media (max-width: 600px) {
    .booster-check {
        row-gap: 1rem;
    }
    .booster-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }
}

.booster-check input {
    width: 480px;
    max-width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 16px;
    border: 1px solid var(--sidebar-spacer, #3b4556);
    border-radius: 6px;
    background: transparent;
    color: inherit;
    outline: none;
}

.booster-check input:focus {
    border-color: #16a34a;
}

.booster-check button {
    padding: 12px 22px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background: #16a34a;
    color: #fff;
    cursor: pointer;
}

.booster-check button:hover:not(:disabled) {
    background: #15803d;
}

.booster-check button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.booster-result {
    flex-basis: 100%;
    font-size: 16px;
    line-height: 1.4;
    min-height: 1.2em;
}

.booster-message {
    margin: 0;
}

.booster-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.booster-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
}

.booster-result[data-state="error"] { color: #dc2626; }
.booster-result[data-state="success"] { color: #16a34a; }
.booster-result[data-state="empty"] { opacity: 0.7; }
.booster-result[data-state="loading"] { opacity: 0.7; }

.nav-live-pill {
    display: inline-flex;
    align-items: center;
    background: #16a34a;
    color: #fff;
    font-size: 0.55em;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.35em 0.6em;
    border-radius: 999px;
    margin-left: 0.5em;
    text-transform: uppercase;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
}
