/* ===========================
   BASE LAYOUT (Hybrid Style)
   =========================== */

.log-entry {
    padding: 6px 0;
    font-size: 0.9rem;
}
:root {
    --bg: #000;
    --text: #fff;
    --card: #111;
    --accent: #ff3366;
    --link: #8ec5ff;
    --link-hover: #b6d9ff;
}

/* Reset-ish */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* ===========================
   NAVIGATION BAR
   =========================== */

.nav-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--nav-bg, var(--card));
    padding: 14px 10px;
    border-bottom: 2px solid var(--border-subtle, rgba(255,255,255,0.08));
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-item {
    text-decoration: none;
    color: var(--link, var(--accent));
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 10px;
    border-radius: var(--radius-btn, 6px);
}

.nav-item:hover {
    background: rgba(255,255,255,0.09);
    color: var(--link-hover, var(--link, var(--accent)));
}

/* ===========================
   MAIN CONTENT
   =========================== */

main.content a:not(.btn):not(.btn-secondary):not(.nav-item):not(.social-icon) {
    color: var(--link, var(--accent));
    text-decoration: underline;
    text-underline-offset: 2px;
}

main.content a:not(.btn):not(.btn-secondary):not(.nav-item):not(.social-icon):hover {
    color: var(--link-hover, var(--link, var(--accent)));
}

/* Home hero / top banner image */
.block.hero {
    max-width: 100%;
    overflow: hidden;
}
.block.hero img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===========================
   CARDS (Hybrid: clean + bold)
   =========================== */

.card {
    background: var(--card);
    padding: 16px;
    border-radius: var(--radius-card, 14px);
    margin-bottom: 20px;
    border: 1px solid var(--border-subtle, rgba(255,255,255,0.08));
    box-shadow: 0px 3px 6px rgba(0,0,0,0.35);
}

/* Title inside cards */
.card h2, 
.card h3 {
    margin-top: 0;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: var(--radius-btn, 8px);
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn:hover {
    opacity: 0.85;
}

.btn-secondary {
    background: var(--card);
    border: 1px solid var(--accent);
    color: var(--accent);
}

/* Homepage: block row as one large CTA (Homepage builder “Button” mode) */
.block.hp-block-button {
    margin: 1rem 0 1.35rem;
    padding: 0 8px;
}
.hp-block-button__link {
    display: block;
    width: 100%;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    line-height: 1.35;
    box-sizing: border-box;
}

.block-section-heading.announcement-block__section-title {
    text-align: center;
    margin: 0 0 0.65rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.block.hp-block-button--emoji {
    margin: 1.25rem 0 1.5rem;
}

.hp-block-button__link--emoji {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.15;
    padding: 1.35rem 1.5rem;
    border-radius: 1rem;
    max-width: 12rem;
    box-sizing: border-box;
}

.hp-block-button__link--emoji-caption {
    max-width: min(28rem, 100%);
}

.hp-block-button__emoji {
    font-size: 3.25rem;
    line-height: 1;
}

.hp-block-button__caption {
    display: block;
    margin-top: 0.45rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
}

/* Homepage builder: per-button custom fill (text color set inline for contrast) */
.hp-block-button__link--custom {
    border: none;
}
.hp-block-button__link--custom:hover {
    opacity: 0.92;
    filter: brightness(1.06);
}
.hp-block-button__link--custom .hp-block-button__emoji,
.hp-block-button__link--custom .hp-block-button__caption {
    color: inherit;
}
.hp-btn-shape-pill { border-radius: 9999px !important; }
.hp-btn-shape-rounded { border-radius: 10px !important; }
.hp-btn-shape-soft { border-radius: 16px !important; }
.hp-btn-shape-bubble { border-radius: 24px !important; }
.hp-btn-shape-square { border-radius: 6px !important; }
.hp-btn-shape-sharp { border-radius: 0 !important; }
.hp-btn-shape-stadium { border-radius: 2.25rem !important; }
.hp-btn-shape-arch { border-radius: 50% 50% 14px 14px !important; }
.hp-btn-shape-squircle { border-radius: 22% !important; }

.hp-featured-event .hp-event-actions {
    margin-top: 0.75rem;
}

/* ===========================
   FORMS
   =========================== */

input, select, textarea {
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-input, 8px);
    border: 2px solid var(--border-subtle, rgba(255,255,255,0.15));
    background: var(--card);
    color: var(--text);
    margin-bottom: 14px;
    font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent);
}

/* Labels */
label {
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

/* ===========================
   GRIDS / FLEX
   =========================== */

.grid {
    display: grid;
    grid-gap: 16px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===========================
   IMAGES
   =========================== */

img.responsive {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ===========================
   TABLES
   =========================== */

table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

th, td {
    padding: 10px;
    text-align: left;
}

tr:nth-child(even) {
    background: rgba(255,255,255,0.05);
}

/* ===========================
   MISC
   =========================== */

hr {
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin: 24px 0;
}

.small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.center {
    text-align: center;
}

/* ===========================
   MOBILE RESPONSIVE
   =========================== */

@media (max-width: 600px) {

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .nav-bar {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* SoniqBarBuddy 2 shell (header / footer / social) */
.top {
    padding: 14px 16px;
    text-align: center;
    background: var(--header-bg, var(--card));
    border-bottom: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
}

.top h1 {
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}

.top-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.site-logo {
    max-height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.welcome-intro {
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.home-intro {
    text-align: center;
    margin: 0 auto 1.5rem;
    max-width: 42rem;
}

.home-intro__bar-name {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.home-intro__banner-title {
    margin: 0 0 0.35rem;
    font-size: 1.75rem;
}

.home-intro__banner-subtitle {
    margin: 0 0 0.75rem;
    opacity: 0.92;
    font-size: 1.05rem;
}

.home-intro__banner-image-wrap {
    margin: 0.75rem 0 1rem;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-card, 14px);
}

.home-intro__banner-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.home-intro__welcome-headline {
    margin: 0.5rem 0 0.35rem;
    font-size: 1.35rem;
}

.home-intro__welcome-tagline {
    margin: 0 0 0.5rem;
    opacity: 0.92;
}

.welcome-intro h2 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
}

.welcome-tagline {
    margin: 0;
    opacity: 0.92;
}

main.content {
    padding: 16px 16px 28px;
    max-width: var(--content-max, 960px);
    margin: 0 auto;
}

.site-footer {
    padding: 20px 16px 28px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.75;
    border-top: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
    margin-top: 32px;
}

.site-footer .footer-links {
    margin-bottom: 10px;
}

.site-footer .footer-links a,
.site-footer .footer-link-btn {
    color: var(--link, var(--accent));
    margin: 0 8px;
    text-decoration: none;
}

.site-footer .footer-link-btn {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    opacity: 0.95;
}

.site-footer .footer-links a:hover,
.site-footer .footer-link-btn:hover {
    color: var(--link-hover, var(--link, var(--accent)));
}

.site-footer-brand {
    margin-top: 4px;
}

.site-footer-brand__line {
    margin: 0.2rem 0;
    line-height: 1.4;
}

.site-footer-brand__line--sub {
    font-size: 0.78rem;
    opacity: 0.85;
}

.sbb-brand-credit {
    margin-top: 1.25rem;
    padding-top: 0.75rem;
    text-align: center;
    font-size: 0.82rem;
    opacity: 0.65;
    line-height: 1.45;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sbb-brand-credit p {
    margin: 0.15rem 0;
}

.social-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px 0;
}

.social-bar .social-icon {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    color: var(--link, var(--text));
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
}

.social-bar .social-icon:hover {
    color: var(--link-hover, var(--link, var(--accent)));
}

.hp-sp {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hp-sp-img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 6px;
}
.staff-picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.staff-pick-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
}
.staff-pick-img {
    width: 100%;
    border-radius: 8px;
    display: block;
    margin-bottom: 10px;
}
.staff-pick-name {
    margin: 0 0 4px;
    font-size: 1.05rem;
}
.staff-pick-role {
    margin: 0 0 8px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}
.staff-pick-bio {
    margin: 0 0 10px;
}
.staff-pick-qa {
    margin: 0;
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
}
.staff-pick-qa dt {
    margin-top: 8px;
    font-weight: 600;
    opacity: 0.95;
}
.staff-pick-qa dd {
    margin: 4px 0 0;
    padding: 0;
    opacity: 0.88;
}

/* ---------- Mobile-first shell (header + menu) ---------- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.top-inner--shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
    text-align: left;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.top-brand {
    min-width: 0;
    flex: 1;
}

.top-brand__link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-width: 0;
    flex: 1;
    color: inherit;
    text-decoration: none;
}

.top-brand__link:focus-visible {
    outline: 2px solid var(--accent, #ff3366);
    outline-offset: 3px;
    border-radius: 6px;
}

.top-brand h1 {
    margin: 0;
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shell-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.shell-login {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--radius-btn, 8px);
    text-decoration: none;
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.2));
    color: var(--link, var(--accent));
    background: rgba(255, 255, 255, 0.06);
}

.shell-login:hover {
    color: var(--link-hover, var(--link, var(--accent)));
    background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 10px;
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.2));
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    color: var(--text);
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 2px;
}

.nav-shell {
    position: relative;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 80;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 320px);
    height: 100vh;
    height: 100dvh;
    background: var(--nav-bg, var(--card));
    z-index: 90;
    display: flex;
    flex-direction: column;
    padding: calc(14px + env(safe-area-inset-top)) 16px 24px;
    gap: 4px;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
}

.nav-drawer .nav-item {
    display: block;
    padding: 14px 12px;
    border-radius: 10px;
    font-size: 1.05rem;
}

.nav-bar-desktop {
    display: flex;
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 899px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-bar-desktop {
        display: none !important;
    }

    .nav-drawer {
        transform: translateX(100%);
        transition: transform 0.22s ease;
        visibility: visible;
    }

    .nav-drawer.is-open {
        transform: translateX(0);
    }

    .nav-backdrop {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s;
    }

    .nav-backdrop.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (min-width: 900px) {
    .nav-toggle {
        display: none !important;
    }

    .nav-drawer,
    .nav-backdrop {
        display: none !important;
    }

    .nav-bar-desktop {
        display: flex !important;
    }
}

.sbb-live-energy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin: 0 auto;
    max-width: var(--content-max, 960px);
    padding: 8px 16px 10px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text, #fff);
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.2),
        rgba(255, 255, 255, 0.07),
        rgba(0, 0, 0, 0.2)
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sbb-live-energy__dot {
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ae374;
    box-shadow: 0 0 10px rgba(58, 227, 116, 0.55);
}

@media (prefers-reduced-motion: no-preference) {
    .sbb-live-energy__dot {
        animation: sbb-live-dot 2.2s ease-in-out infinite;
    }
}

@keyframes sbb-live-dot {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.12);
    }
}

.sbb-live-energy__text {
    flex: 1;
    min-width: 0;
    text-align: center;
    line-height: 1.35;
    opacity: 0.96;
    transition: opacity 140ms ease, transform 180ms ease, filter 180ms ease;
    display: inline-block;
    white-space: nowrap;
}

.sbb-live-energy__slot {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-align: center;
}

.sbb-live-energy--custom-style {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sbb-live-energy--scroll .sbb-live-energy__slot {
    text-align: left;
}

.sbb-live-energy--marquee .sbb-live-energy__text {
    animation: sbb-live-marquee 14s linear infinite;
    padding-left: 100%;
}

@keyframes sbb-live-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.sbb-live-energy.is-transition-fade.is-live-transitioning .sbb-live-energy__text {
    opacity: 0.18;
}

.sbb-live-energy.is-transition-blend.is-live-transitioning .sbb-live-energy__text {
    opacity: 0.35;
    filter: blur(1px);
}

.sbb-live-energy.is-transition-slide.is-live-transitioning .sbb-live-energy__text {
    opacity: 0.35;
    transform: translateY(-0.25rem);
}

.sbb-live-energy.is-transition-slip.is-live-transitioning .sbb-live-energy__text {
    opacity: 0.35;
    transform: translateX(0.3rem);
}

@media (prefers-reduced-motion: reduce) {
    .sbb-live-energy__dot {
        animation: none;
    }
    .sbb-live-energy__text {
        transition: none;
    }
    .sbb-live-energy--marquee .sbb-live-energy__text {
        animation: none;
        padding-left: 0;
    }
}

.footer-sep {
    opacity: 0.45;
    margin: 0 2px;
}

.install-banner {
    position: sticky;
    bottom: 0;
    z-index: 40;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65) 20%);
}

.install-banner-inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--card);
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.install-banner-title {
    margin: 0 0 6px;
    font-size: 1rem;
}

.install-banner-text {
    margin: 0 0 12px;
    font-size: 0.9rem;
    line-height: 1.45;
    opacity: 0.95;
}

.install-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.install-banner-actions .install-banner-primary {
    flex: 1 1 100%;
    max-width: 100%;
}

@media (min-width: 400px) {
    .install-banner-actions .install-banner-primary {
        flex: 1 1 auto;
        max-width: none;
    }
}

.sbb-trivia-resume-toast {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9500;
    width: min(92vw, 360px);
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(22, 28, 36, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
.sbb-trivia-resume-toast__title,
.sbb-trivia-resume-toast__body {
    margin: 0 0 0.45rem;
    line-height: 1.35;
}
.sbb-trivia-resume-toast__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.55rem;
}

/* Home — quick announcement (promo block) */
.announcement-block {
    margin: 0.75rem 0 1rem;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--card);
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
}
.announcement-block__inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.announcement-block__icon {
    flex-shrink: 0;
    font-size: 2.75rem;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}
.announcement-block__body {
    flex: 1;
    min-width: 0;
}
.announcement-block__title {
    margin: 0 0 6px;
    font-size: 1.2rem;
    line-height: 1.25;
}
.announcement-block__subtitle {
    margin: 0 0 8px;
    opacity: 0.95;
    font-size: 1rem;
}
.announcement-block__desc {
    margin: 0 0 10px;
    line-height: 1.45;
    opacity: 0.92;
}
.announcement-block__timer {
    margin: 0 0 10px;
    color: rgba(255, 200, 120, 0.95);
}
.announcement-block__cta {
    margin: 0;
}

/* Soniq platform operator support mode (portal impersonation) */
.sbb-platform-impersonate-banner {
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 0.55rem 1rem;
    background: linear-gradient(90deg, #5a1030, #8b2252);
    color: #fff;
    font-size: 0.88rem;
    text-align: center;
    border-bottom: 2px solid #ff5a82;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.sbb-platform-impersonate-banner a {
    color: #ffd4e0;
    font-weight: 600;
    margin: 0 0.35rem;
}
.sbb-platform-impersonate-banner a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Subscription status (managed tenants) */
.sbb-sub-banner {
    padding: 0.5rem 1rem;
    font-size: 0.86rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.sbb-sub-banner--info {
    background: rgba(40, 80, 140, 0.92);
    color: #e8f0ff;
}
.sbb-sub-banner--warn {
    background: rgba(120, 80, 10, 0.92);
    color: #fff8e6;
}
.sbb-sub-banner--error {
    background: rgba(120, 20, 30, 0.95);
    color: #ffe8ec;
}

/* Tier lock (customer-facing premium features) */
.sbb-tier-lock {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    padding: 1.25rem 1rem;
}
.sbb-tier-lock__icon {
    font-size: 2rem;
    margin-bottom: 0.35rem;
}
.sbb-tier-lock__title {
    margin: 0 0 0.5rem;
}
.sbb-tier-lock__msg {
    opacity: 0.9;
    margin: 0 0 0.75rem;
}
.sbb-tier-badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.sbb-tier-badge--premium { background: #3d5a80; color: #e8f0ff; }
.sbb-tier-badge--gold { background: #6b4e00; color: #ffeaa7; }

/* Admin plan banner + subscription page */
.sbb-admin-sub-banner {
    padding: 0.5rem 0.75rem;
    margin: 0 0 1rem;
    background: rgba(120, 40, 20, 0.85);
    color: #ffe8e0;
    font-size: 0.88rem;
    border-radius: 8px;
}
.sbb-admin-sub-banner a {
    color: #ffd4a8;
    font-weight: 600;
    margin-left: 0.35rem;
}
.sbb-sub-drift {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}
.sbb-sub-drift li {
    padding: 0.45rem 0.65rem;
    margin: 0.35rem 0;
    border-radius: 6px;
    font-size: 0.88rem;
}
.sbb-sub-drift li--error { background: rgba(180, 40, 50, 0.25); }
.sbb-sub-drift li--warn { background: rgba(180, 120, 20, 0.25); }
.sbb-sub-drift li--info { background: rgba(60, 80, 140, 0.25); }
.sbb-sub-entitlements {
    display: grid;
    gap: 0.35rem;
    margin: 0.75rem 0 0;
}
.sbb-sub-entitlements span {
    font-size: 0.9rem;
}
.sbb-sub-entitlements .yes { color: #7dffb2; }
.sbb-sub-entitlements .no { color: #ffb4b4; opacity: 0.85; }