body.has-site-chrome {
    padding-top: 92px;
    padding-bottom: 34px;
}

.site-chrome {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8800;
    background: rgba(2, 8, 16, .94);
    border-bottom: 1px solid rgba(126, 233, 255, .18);
    color: #e6f7ff;
    font-family: "IBM Plex Mono", monospace;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
}

.site-chrome__bar {
    height: 92px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto;
}

.site-chrome__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    min-width: 0;
}

.site-chrome__brand img {
    width: 256px;
    max-height: 68px;
    object-fit: contain;
}

.site-chrome__brand-text {
    display: none;
    color: #fff;
    font-family: "Bebas Neue", system-ui, sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0;
}

.site-chrome__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.site-chrome__nav::-webkit-scrollbar {
    display: none;
}

.site-chrome__nav a,
.site-chrome__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 11px;
    border-radius: 6px;
    color: #b9d8ea;
    text-decoration: none;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.site-chrome__nav a:hover,
.site-chrome__action:hover {
    color: #fff;
    background: rgba(126, 233, 255, .1);
}

.site-chrome__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.site-chrome__action {
    border: 1px solid rgba(126, 233, 255, .18);
    background: rgba(126, 233, 255, .07);
}

.site-chrome__action--live {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
    box-shadow: 0 8px 24px rgba(239, 68, 68, .25);
}

.site-chrome__ticker {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8801;
    height: 34px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    overflow: hidden;
    border-top: 1px solid rgba(126, 233, 255, .12);
    border-bottom: 0;
    background: rgba(0, 0, 0, .24);
}

.site-chrome__ticker-label {
    height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    background: rgba(239, 68, 68, .96);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.site-chrome__ticker-track {
    overflow: hidden;
    min-width: 0;
}

.site-chrome__ticker-inner {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    min-width: max-content;
    animation: siteChromeTicker 52s linear infinite;
}

.site-chrome__ticker-track:hover .site-chrome__ticker-inner {
    animation-play-state: paused;
}

.site-chrome__ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d9efff;
    text-decoration: none;
    white-space: nowrap;
    font-size: 12px;
    line-height: 34px;
}

.site-chrome__ticker-item span {
    color: #7fe9ff;
    font-weight: 900;
    text-transform: uppercase;
}

@keyframes siteChromeTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

body.has-site-chrome .home-topbar,
body.has-site-chrome .home-ticker,
body.has-site-chrome #story-ticker {
    display: none !important;
}

@media (max-width: 900px) {
    body.has-site-chrome {
        padding-top: 94px;
    }

    .site-chrome__bar {
        height: 94px;
        grid-template-columns: 1fr auto;
        gap: 10px;
        align-items: start;
        padding-top: 8px;
    }

    .site-chrome__brand img {
        width: 224px;
        max-height: 60px;
    }

    .site-chrome__nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        order: 3;
        width: 100%;
        padding-bottom: 6px;
    }

    .site-chrome__actions {
        position: absolute;
        top: 8px;
        right: 8px;
        align-self: start;
    }

    .site-chrome__action:not(.site-chrome__action--live) {
        display: none;
    }

    .site-chrome__action--live {
        display: none;
    }

    .site-chrome__ticker {
        height: 34px;
    }
}

@media (max-width: 560px) {
    body.has-site-chrome {
        padding-top: 82px;
    }

    .site-chrome__bar {
        height: 82px;
    }

    .site-chrome__bar {
        width: calc(100% - 16px);
    }

    .site-chrome__brand img {
        width: 184px;
        max-height: 50px;
    }

    .site-chrome__nav a {
        padding: 0 9px;
        font-size: 10px;
    }

    .site-chrome__ticker-label {
        padding: 0 10px;
    }

}
