@font-face {
    font-family: "DMSansLocal";
    src: url("./fonts/dm-sans-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "DMSansLocal";
    src: url("./fonts/dm-sans-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "OutfitLocal";
    src: url("./fonts/outfit-semibold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "OutfitLocal";
    src: url("./fonts/outfit-extrabold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --hb-bg-deep: #0b0b0d;
    --hb-bg-panel: #141418;
    --hb-bg-raised: #1c1c22;
    --hb-border: #2a2a32;
    --hb-orange: #ff5a1f;
    --hb-orange-hot: #ff7a2e;
    --hb-orange-dim: rgba(255, 90, 31, 0.14);
    --hb-text: #f4f4f6;
    --hb-text-muted: #9a9aa8;
    --hb-radius: 12px;
    --hb-radius-sm: 8px;
    --hb-topbar-h: 64px;
    --hb-menubar-h: 52px;
    --hb-font-body: "DMSansLocal", system-ui, sans-serif;
    --hb-font-display: "OutfitLocal", "DMSansLocal", system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.hb-shell {
    font-family: var(--hb-font-body);
    font-size: 15px;
    line-height: 1.55;
    color: var(--hb-text);
    background: var(--hb-bg-deep);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hb-viewport {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ---- top bar ---- */
.hb-topbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(11, 11, 13, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--hb-border);
}

.hb-topbar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 20px;
    min-height: var(--hb-topbar-h);
}

.hb-brand {
    justify-self: start;
}

.hb-brand__link {
    display: inline-flex;
    align-items: center;
}

.hb-brand__img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.hb-brand__text {
    font-family: var(--hb-font-display);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    color: var(--hb-orange-hot);
    text-transform: uppercase;
}

.hb-auth {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: var(--hb-radius-sm);
    font-family: var(--hb-font-display);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    white-space: nowrap;
}

.hb-btn--ghost {
    background: transparent;
    border: 1px solid var(--hb-border);
    color: var(--hb-text);
}

.hb-btn--ghost:hover {
    border-color: var(--hb-text-muted);
}

.hb-btn--fire {
    background: linear-gradient(180deg, var(--hb-orange-hot) 0%, var(--hb-orange) 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 18px rgba(255, 90, 31, 0.35);
}

.hb-btn--fire:hover {
    filter: brightness(1.08);
}

.hb-btn--slot {
    flex: none;
    width: 100%;
    padding: 10px 12px;
    font-size: 0.72rem;
    min-width: 0;
}

.hb-btn--slot-demo {
    background: var(--hb-bg-raised);
    border: 1px solid var(--hb-border);
    color: var(--hb-text);
}

.hb-btn--slot-play {
    background: linear-gradient(180deg, var(--hb-orange-hot), var(--hb-orange));
    border: none;
    color: #fff;
}

/* ---- horizontal menu (desktop) ---- */
.hb-menubar {
    background: var(--hb-bg-panel);
    border-bottom: 1px solid var(--hb-border);
}

.hb-menubar__track {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    align-items: stretch;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hb-menubar__track::-webkit-scrollbar {
    display: none;
}

.hb-menulink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    color: var(--hb-text-muted);
    font-family: var(--hb-font-display);
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.hb-menulink:hover {
    color: var(--hb-text);
    background: rgba(255, 255, 255, 0.03);
}

.hb-menulink.is-active {
    color: var(--hb-orange-hot);
    border-bottom-color: var(--hb-orange);
    background: var(--hb-orange-dim);
}

.hb-menulink__glyph {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: currentColor;
}

/* ---- mobile burger (right) ---- */
.hb-drawer-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: var(--hb-bg-raised);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius-sm);
    cursor: pointer;
    justify-self: end;
    grid-column: 3;
}

.hb-drawer-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--hb-text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.hb-drawer-toggle.is-open .hb-drawer-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hb-drawer-toggle.is-open .hb-drawer-toggle__bar:nth-child(2) {
    opacity: 0;
}

.hb-drawer-toggle.is-open .hb-drawer-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hb-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 950;
}

.hb-drawer-overlay.is-visible {
    display: block;
}

.hb-drawer-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100vh;
    background: var(--hb-bg-panel);
    border-left: 1px solid var(--hb-border);
    z-index: 960;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    padding: 20px 16px 32px;
}

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

.hb-drawer-panel__brand {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hb-border);
}

.hb-drawer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hb-drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--hb-radius-sm);
    color: var(--hb-text-muted);
    font-weight: 600;
}

.hb-drawer-link.is-active,
.hb-drawer-link:hover {
    color: var(--hb-orange-hot);
    background: var(--hb-orange-dim);
}

.hb-drawer-link__glyph {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ---- main stage ---- */
.hb-stage {
    flex: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
}

/* ---- breadcrumbs ---- */
.hb-crumbtrail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.82rem;
    color: var(--hb-text-muted);
}

.hb-crumbtrail__link {
    color: var(--hb-text-muted);
}

.hb-crumbtrail__link:hover {
    color: var(--hb-orange-hot);
}

.hb-crumbtrail__sep {
    opacity: 0.45;
}

/* ---- hero carousel ---- */
.hb-hero-zone {
    margin-bottom: 28px;
}

.hb-hero-carousel {
    position: relative;
    border-radius: var(--hb-radius);
    overflow: hidden;
    background: var(--hb-bg-raised);
    border: 1px solid var(--hb-border);
}

.hb-hero-viewport {
    overflow: hidden;
}

.hb-hero-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.hb-hero-slide {
    flex: 0 0 100%;
    position: relative;
}

.hb-hero-slide__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0e0e12;
    min-height: 160px;
}

.hb-hero-slide__visual picture {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hb-hero-slide__img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
}

.hb-hero-slide__body {
    padding: 18px 20px 22px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
}

.hb-hero-slide__title {
    font-family: var(--hb-font-display);
    font-weight: 800;
    font-size: clamp(1.1rem, 2.5vw, 1.55rem);
    margin-bottom: 8px;
    line-height: 1.25;
}

.hb-hero-slide__desc {
    color: var(--hb-text-muted);
    font-size: 0.92rem;
    margin-bottom: 14px;
}

.hb-hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 14px;
}

.hb-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--hb-border);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.hb-hero-dot.is-active {
    background: var(--hb-orange);
    transform: scale(1.2);
}

/* ---- game sections ---- */
.hb-games-block {
    margin-bottom: 36px;
}

.hb-games-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.hb-games-block__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hb-font-display);
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hb-games-block__label-icon {
    width: 22px;
    height: 22px;
    fill: var(--hb-orange);
}

.hb-games-block__more {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--hb-text-muted);
    border: 1px solid var(--hb-border);
    padding: 8px 14px;
    border-radius: var(--hb-radius-sm);
    transition: color 0.2s, border-color 0.2s;
}

.hb-games-block__more:hover {
    color: var(--hb-orange-hot);
    border-color: var(--hb-orange);
}

.hb-games-scroll {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--hb-border) transparent;
    padding-bottom: 6px;
}

.hb-games-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(140px, 168px);
    gap: 14px;
}

.hb-slot-card {
    display: flex;
    flex-direction: column;
    background: var(--hb-bg-panel);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.hb-slot-card:hover {
    border-color: rgba(255, 90, 31, 0.45);
    transform: translateY(-2px);
}

.hb-slot-card__thumb {
    position: relative;
    background: #0e0e12;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    overflow: hidden;
}

.hb-slot-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.25s;
}

.hb-slot-card__actions {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    background: rgba(11, 11, 13, 0.84);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s;
}

@media (hover: hover) {
    .hb-slot-card:hover .hb-slot-card__actions {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .hb-slot-card:hover .hb-slot-card__img {
        transform: scale(1.04);
    }
}

.hb-slot-card.is-revealed .hb-slot-card__actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hb-slot-card__name {
    padding: 0 10px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    color: var(--hb-text-muted);
}

/* ---- bonuses ---- */
.hb-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
    margin: 0 auto 32px;
    max-width: 1200px;
    padding: 0 20px;
}

.hb-bonus-grid__title {
    grid-column: 1 / -1;
    font-family: var(--hb-font-display);
    font-weight: 800;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hb-text);
    margin-bottom: 4px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--hb-orange-dim);
}

.hb-bonus-grid__title::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--hb-orange-hot), transparent);
    margin-top: 10px;
}

.hb-bonus-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--hb-bg-panel);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s;
}

.hb-bonus-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 46, 0.35);
    box-shadow: 0 16px 40px rgba(255, 90, 31, 0.15);
}

.hb-bonus-tile__img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: cover;
    background: linear-gradient(180deg, #1a1a20 0%, #0e0e12 100%);
}

.hb-bonus-tile__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 16px;
    gap: 8px;
}

.hb-bonus-tile__name {
    font-family: var(--hb-font-display);
    font-weight: 700;
    font-size: 1.08rem;
    line-height: 1.3;
    color: var(--hb-text);
}

.hb-bonus-tile__desc {
    color: var(--hb-text-muted);
    font-size: 0.84rem;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hb-bonus-tile__value {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(255, 122, 46, 0.2), rgba(255, 90, 31, 0.08));
    border: 1px solid rgba(255, 122, 46, 0.3);
    border-radius: var(--hb-radius-sm);
    color: var(--hb-orange-hot);
    font-family: var(--hb-font-display);
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.hb-bonus-tile__badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 12px;
    background: var(--hb-bg-raised);
    color: var(--hb-orange-hot);
    border: 1px solid rgba(255, 122, 46, 0.25);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hb-bonus-tile__terms {
    margin-top: auto;
    padding: 10px 12px;
    background: var(--hb-bg-raised);
    border-radius: var(--hb-radius-sm);
    font-size: 0.74rem;
    line-height: 1.5;
    color: var(--hb-text-muted);
    border-left: 2px solid var(--hb-orange-dim);
}

/* ---- SEO text block (only place for h1-h3) ---- */
.hb-seo-copy {
    max-width: 920px;
    margin: 32px auto 40px;
    padding: 28px 28px 32px;
    background:
        radial-gradient(ellipse 70% 40% at 50% 0%, rgba(255, 90, 31, 0.05) 0%, transparent 55%),
        var(--hb-bg-panel);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hb-rich-text h1 {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.hb-rich-text h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--hb-orange-hot), transparent);
    border-radius: 2px;
}

.hb-seo-copy h1 {
    font-family: var(--hb-font-display);
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.25;
    color: var(--hb-text);
}

.hb-rich-text h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 10px 0 10px 14px;
    border-left: 3px solid var(--hb-orange);
}

.hb-seo-copy h2 {
    font-family: var(--hb-font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--hb-text);
}

.hb-rich-text h3 {
    color: var(--hb-orange-hot);
    font-family: var(--hb-font-display);
}

.hb-seo-copy h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 22px 0 10px;
}

.hb-rich-text p {
    line-height: 1.75;
}

.hb-seo-copy p {
    margin-bottom: 14px;
    color: var(--hb-text-muted);
}

.hb-rich-link {
    color: var(--hb-orange-hot);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 122, 46, 0.35);
    transition: color 0.2s, border-color 0.2s;
}

.hb-rich-link:hover {
    color: #fff;
    border-color: var(--hb-orange-hot);
}

.hb-seo-copy a {
    color: var(--hb-orange-hot);
    text-decoration: underline;
}

.hb-rich-text .hb-rich-list {
    margin: 16px 0 20px;
}

.hb-rich-list__ul,
.hb-rich-list__ol {
    padding: 14px 18px 14px 32px;
    background: var(--hb-bg-raised);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius-sm);
}

.hb-rich-list__ul li,
.hb-rich-list__ol li {
    margin-bottom: 8px;
    line-height: 1.65;
    color: var(--hb-text-muted);
}

.hb-rich-list__ul li::marker {
    color: var(--hb-orange);
}

.hb-rich-list__ol li::marker {
    color: var(--hb-orange-hot);
    font-weight: 700;
}

.hb-rich-table {
    border-color: rgba(255, 122, 46, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hb-rich-table__grid thead th {
    background: var(--hb-orange-dim);
    color: var(--hb-orange-hot);
    font-family: var(--hb-font-display);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hb-rich-table__grid tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.hb-rich-table__grid tbody tr:hover {
    background: rgba(255, 90, 31, 0.05);
}

.hb-page-bonus .hb-rich-text {
    max-width: 1200px;
    margin-top: 0;
}

.hb-seo-copy img {
    margin: 18px 0;
    border-radius: var(--hb-radius-sm);
}

.hb-seo-copy blockquote {
    margin: 18px 0;
    padding: 14px 18px;
    border-left: 3px solid var(--hb-orange);
    background: var(--hb-bg-raised);
    color: var(--hb-text-muted);
}

.hb-seo-copy ul,
.hb-seo-copy ol {
    margin: 14px 0 14px 22px;
    color: var(--hb-text-muted);
}

.hb-seo-copy li {
    margin-bottom: 6px;
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 18px 0;
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius-sm);
}

.table-wrapper table {
    width: 100%;
    min-width: 540px;
    border-collapse: collapse;
}

.table-wrapper th,
.table-wrapper td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--hb-border);
    text-align: left;
    font-size: 0.88rem;
}

.table-wrapper th {
    background: var(--hb-bg-raised);
    font-weight: 700;
    white-space: nowrap;
}

.table-wrapper caption {
    padding: 10px 14px;
    font-weight: 600;
    text-align: left;
}

/* ---- FAQ / HowTo ---- */
.hb-faq-stack {
    margin: 18px 0;
}

.hb-faq-unit {
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
}

.hb-faq-unit__q {
    padding: 14px 16px;
    background: var(--hb-bg-raised);
    font-weight: 600;
}

.hb-faq-unit__a {
    padding: 14px 16px;
    color: var(--hb-text-muted);
}

.hb-guide-steps {
    list-style: none;
    counter-reset: hbstep;
    margin: 16px 0;
}

.hb-guide-steps li {
    counter-increment: hbstep;
    padding: 14px 14px 14px 44px;
    position: relative;
    background: var(--hb-bg-raised);
    border-radius: var(--hb-radius-sm);
    margin-bottom: 8px;
    border: 1px solid var(--hb-border);
}

.hb-guide-steps li::before {
    content: counter(hbstep);
    position: absolute;
    left: 14px;
    top: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--hb-orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hb-guide-steps strong {
    display: block;
    margin-bottom: 6px;
}

/* ---- app table ---- */
.hb-app-sheet {
    max-width: 720px;
    margin: 20px auto 28px;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 122, 46, 0.5) 0%, rgba(255, 90, 31, 0.15) 50%, rgba(255, 122, 46, 0.35) 100%);
    border-radius: calc(var(--hb-radius) + 2px);
    box-shadow: 0 20px 60px rgba(255, 90, 31, 0.12);
}

.hb-app-sheet .table-wrapper {
    border-radius: var(--hb-radius);
    border: none;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 90, 31, 0.14) 0%, transparent 55%),
        var(--hb-bg-panel);
    overflow: hidden;
}

.hb-app-sheet .table-wrapper table {
    min-width: 0;
}

.hb-app-sheet table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.hb-app-sheet tbody tr:first-child td {
    border-bottom: 1px solid var(--hb-border);
}

.hb-app-sheet tbody tr:first-child td:first-child {
    display: none;
}

.hb-app-sheet tbody tr:first-child td:last-child {
    padding: 28px 24px 24px;
    text-align: center;
}

.hb-app-sheet tbody tr:not(:first-child):not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hb-app-sheet tbody tr:not(:first-child):not(:last-child):hover {
    background: rgba(255, 90, 31, 0.04);
}

.hb-app-sheet td {
    padding: 14px 18px;
    vertical-align: middle;
    color: var(--hb-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hb-app-sheet td:first-child {
    width: 52px;
    text-align: center;
    vertical-align: middle;
    padding-left: 20px;
}

.hb-app-sheet tbody tr:last-child td {
    padding: 20px 24px 28px;
    text-align: center;
}

.hb-app-sheet tbody tr:last-child td:first-child {
    display: none;
}

.hb-app-info-icon {
    width: 22px;
    height: 22px;
    color: var(--hb-orange-hot);
    padding: 6px;
    box-sizing: content-box;
    background: var(--hb-orange-dim);
    border-radius: 10px;
}

.hb-app-name-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hb-app-name-row img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 18px;
    padding: 10px;
    background: var(--hb-bg-raised);
    border: 1px solid var(--hb-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hb-app-name-row span {
    font-family: var(--hb-font-display);
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--hb-text);
    letter-spacing: 0.02em;
}

.hb-app-sheet tbody tr:not(:first-child):not(:last-child) td:last-child {
    color: var(--hb-text);
    font-weight: 500;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hb-app-sheet tbody tr:nth-child(3) td:last-child,
.hb-app-sheet tbody tr:nth-child(4) td:last-child,
.hb-app-sheet tbody tr:nth-child(5) td:last-child,
.hb-app-sheet tbody tr:nth-child(6) td:last-child {
    font-family: var(--hb-font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--hb-orange-hot);
}

.hb-app-sheet tbody tr:last-child .hb-btn--fire {
    min-width: 220px;
    padding: 14px 32px;
    font-size: 0.88rem;
    box-shadow: 0 8px 28px rgba(255, 90, 31, 0.4);
}

/* ---- footer ---- */
.hb-foot {
    position: relative;
    margin-top: auto;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 90, 31, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, var(--hb-bg-panel) 0%, var(--hb-bg-deep) 100%);
    border-top: 1px solid var(--hb-border);
    padding: 0 0 28px;
    overflow: hidden;
}

.hb-foot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--hb-orange) 35%, var(--hb-orange-hot) 50%, var(--hb-orange) 65%, transparent 100%);
    opacity: 0.85;
}

.hb-foot__shell {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.hb-foot__payzone {
    margin: 28px 0 32px;
    padding: 18px 20px;
    background: var(--hb-bg-raised);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hb-foot__payzone-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.hb-foot__payzone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--hb-orange-dim);
    color: var(--hb-orange-hot);
}

.hb-foot__payzone-title {
    font-family: var(--hb-font-display);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hb-text);
}

.hb-foot__payzone-track {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hb-foot__paychip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 96px;
    flex: 1 1 96px;
    max-width: 130px;
    padding: 12px 10px;
    background: var(--hb-bg-panel);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius-sm);
    transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.hb-foot__paychip:hover {
    border-color: rgba(255, 122, 46, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 31, 0.12);
}

.hb-foot__paychip img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
}

.hb-foot__paychip span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--hb-text-muted);
    letter-spacing: 0.03em;
}

.hb-foot__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 32px 28px;
    margin-bottom: 32px;
}

.hb-foot__brand-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hb-foot__brand {
    margin-bottom: 0;
}

.hb-foot__brand img {
    height: 36px;
    width: auto;
}

.hb-foot__brand span {
    font-family: var(--hb-font-display);
    font-weight: 800;
    color: var(--hb-orange-hot);
    font-size: 1.25rem;
    letter-spacing: 0.04em;
}

.hb-foot__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hb-foot__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: var(--hb-radius-sm);
    font-family: var(--hb-font-display);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}

.hb-foot__cta--primary {
    background: linear-gradient(180deg, var(--hb-orange-hot) 0%, var(--hb-orange) 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 90, 31, 0.3);
}

.hb-foot__cta--primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.hb-foot__cta--secondary {
    background: transparent;
    border: 1px solid var(--hb-border);
    color: var(--hb-text);
}

.hb-foot__cta--secondary:hover {
    border-color: var(--hb-text-muted);
}

.hb-foot__cta--accent {
    background: var(--hb-orange-dim);
    border: 1px solid rgba(255, 122, 46, 0.35);
    color: var(--hb-orange-hot);
}

.hb-foot__cta--accent:hover {
    background: rgba(255, 90, 31, 0.22);
}

.hb-foot__col-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hb-font-display);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hb-text);
    margin-bottom: 14px;
}

.hb-foot__col-title::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hb-orange);
    box-shadow: 0 0 8px rgba(255, 90, 31, 0.6);
    flex-shrink: 0;
}

.hb-foot__links {
    list-style: none;
}

.hb-foot__links li {
    margin-bottom: 9px;
}

.hb-foot__links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--hb-text-muted);
    font-size: 0.86rem;
    transition: color 0.2s, transform 0.15s;
}

.hb-foot__links a::before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--hb-orange-hot);
    transition: width 0.2s;
}

.hb-foot__links a:hover,
.hb-foot__links a.is-active {
    color: var(--hb-orange-hot);
    transform: translateX(3px);
}

.hb-foot__links a:hover::before,
.hb-foot__links a.is-active::before {
    width: 10px;
}

.hb-foot__social {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hb-foot__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 14px;
    background: var(--hb-bg-raised);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius-sm);
    transition: border-color 0.2s, background 0.2s;
}

.hb-foot__social-link:hover {
    border-color: rgba(255, 122, 46, 0.4);
    background: var(--hb-orange-dim);
}

.hb-foot__social-img {
    max-height: 24px;
    width: auto;
}

.hb-foot__base {
    padding-top: 24px;
    border-top: 1px solid var(--hb-border);
    text-align: center;
}

.hb-foot__safe-head {
    font-family: var(--hb-font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hb-text-muted);
    margin-bottom: 14px;
}

.hb-foot__safe {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    list-style: none;
}

.hb-foot__safe-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hb-foot__safe-link,
.hb-foot__safe-item--static {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 48px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius-sm);
    transition: opacity 0.2s, border-color 0.2s;
}

.hb-foot__safe-link:hover {
    border-color: rgba(255, 255, 255, 0.15);
    opacity: 1;
}

.hb-foot__safe img {
    max-height: 36px;
    width: auto;
    opacity: 0.9;
}

.hb-foot__legal {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 720px;
    margin: 0 auto;
}

.hb-foot__legal-copy {
    font-size: 0.78rem;
    color: var(--hb-text-muted);
}

.hb-foot__legal-note {
    font-size: 0.72rem;
    color: rgba(154, 154, 168, 0.75);
    line-height: 1.5;
}

/* ---- 404 ---- */
.hb-missing-page {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - var(--hb-topbar-h) - var(--hb-menubar-h) - 120px);
    padding: 48px 20px 72px;
    isolation: isolate;
}

.hb-missing-page::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: min(420px, 80vw);
    height: min(420px, 80vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 90, 31, 0.22) 0%, rgba(255, 90, 31, 0.06) 45%, transparent 70%);
    z-index: -1;
    animation: hb-missing-glow 4s ease-in-out infinite;
}

.hb-missing-page::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
    width: min(280px, 70vw);
    height: min(280px, 70vw);
    border: 1px dashed rgba(255, 122, 46, 0.25);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

@keyframes hb-missing-glow {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

.hb-missing-page__code {
    font-family: var(--hb-font-display);
    font-size: clamp(5rem, 18vw, 9rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff 0%, var(--hb-orange-hot) 55%, var(--hb-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 8px 32px rgba(255, 90, 31, 0.45));
    letter-spacing: -0.04em;
}

.hb-missing-page__title {
    font-family: var(--hb-font-display);
    font-size: clamp(1.15rem, 3.2vw, 1.55rem);
    font-weight: 700;
    color: var(--hb-text);
    margin-bottom: 12px;
    max-width: 520px;
}

.hb-missing-page__text {
    color: var(--hb-text-muted);
    margin-bottom: 32px;
    max-width: 440px;
    font-size: 0.92rem;
    line-height: 1.6;
}

.hb-missing-page .hb-btn--fire {
    min-width: 200px;
    padding: 14px 28px;
    font-size: 0.85rem;
    box-shadow: 0 8px 28px rgba(255, 90, 31, 0.4);
}

/* ---- contact page ---- */
.hb-contact-shell {
    max-width: 760px;
    margin: 0 auto;
    padding: 8px 20px 40px;
}

.hb-page-contact .hb-contact-shell .hb-seo-copy {
    position: relative;
    max-width: none;
    margin-top: 16px;
    padding: 36px 32px 32px;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 90, 31, 0.1) 0%, transparent 60%),
        var(--hb-bg-panel);
    border: 1px solid rgba(255, 122, 46, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.hb-page-contact .hb-contact-shell .hb-seo-copy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hb-orange), var(--hb-orange-hot), var(--hb-orange));
}

.hb-page-contact .hb-contact-shell .hb-seo-copy h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #fff 30%, var(--hb-orange-hot) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hb-page-contact .hb-contact-shell .hb-seo-copy > p:first-of-type {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 28px;
    color: var(--hb-text);
}

.hb-page-contact .hb-contact-shell .hb-seo-copy h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hb-orange-hot);
    margin: 32px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--hb-border);
}

.hb-page-contact .hb-contact-shell .hb-seo-copy h2::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hb-orange);
    box-shadow: 0 0 10px rgba(255, 90, 31, 0.5);
    flex-shrink: 0;
}

.hb-page-contact .hb-contact-shell .hb-seo-copy h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--hb-font-display);
    font-size: 1rem;
    color: var(--hb-text);
    margin: 0;
    padding: 16px 18px 0;
    background: var(--hb-bg-raised);
    border: 1px solid var(--hb-border);
    border-bottom: none;
    border-radius: var(--hb-radius-sm) var(--hb-radius-sm) 0 0;
}

.hb-page-contact .hb-contact-shell .hb-seo-copy h3::before {
    content: "";
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--hb-orange-dim);
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}

.hb-page-contact .hb-contact-shell .hb-seo-copy h3:nth-of-type(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff7a2e' stroke-width='2'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='M4 8l8 5 8-5'/%3E%3C/svg%3E");
}

.hb-page-contact .hb-contact-shell .hb-seo-copy h3:nth-of-type(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff7a2e' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
}

.hb-page-contact .hb-contact-shell .hb-seo-copy h3 + p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 16px;
    padding: 14px 18px 18px;
    background: var(--hb-bg-raised);
    border: 1px solid var(--hb-border);
    border-top: 1px dashed rgba(255, 255, 255, 0.06);
    border-radius: 0 0 var(--hb-radius-sm) var(--hb-radius-sm);
    color: var(--hb-text-muted);
    line-height: 1.65;
}

.hb-page-contact .hb-contact-shell .hb-seo-copy h3 + p a {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    padding: 10px 18px;
    background: linear-gradient(180deg, var(--hb-orange-hot), var(--hb-orange));
    color: #fff;
    text-decoration: none;
    border-radius: var(--hb-radius-sm);
    font-family: var(--hb-font-display);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 16px rgba(255, 90, 31, 0.35);
    transition: filter 0.2s, transform 0.15s;
}

.hb-page-contact .hb-contact-shell .hb-seo-copy h3 + p a:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.hb-page-contact .hb-contact-shell .hb-seo-copy h2:last-of-type + p {
    padding: 18px 20px;
    background: var(--hb-bg-raised);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius-sm);
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--hb-text-muted);
}

/* ---- legal pages (privacy, rules) ---- */
.hb-doc-shell {
    max-width: 860px;
    margin: 0 auto;
    padding: 8px 20px 48px;
}

.hb-page-doc .hb-doc-shell .hb-seo-copy {
    position: relative;
    max-width: none;
    margin-top: 20px;
    padding: 36px 32px 36px;
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(255, 90, 31, 0.08) 0%, transparent 55%),
        var(--hb-bg-panel);
    border: 1px solid rgba(255, 122, 46, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hb-page-doc .hb-doc-shell .hb-seo-copy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--hb-orange-hot), transparent);
}

.hb-page-doc .hb-doc-shell .hb-seo-copy h1 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hb-border);
    color: var(--hb-text);
}

.hb-page-doc .hb-doc-shell .hb-seo-copy > p:first-of-type {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--hb-text-muted);
    margin-bottom: 8px;
}

.hb-page-doc .hb-doc-shell .hb-seo-copy h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    margin: 32px 0 14px;
    padding: 12px 16px;
    background: var(--hb-bg-raised);
    border-left: 3px solid var(--hb-orange);
    border-radius: 0 var(--hb-radius-sm) var(--hb-radius-sm) 0;
    color: var(--hb-text);
}

.hb-page-doc .hb-doc-shell .hb-seo-copy h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--hb-border), transparent);
    margin-left: 8px;
}

.hb-page-doc .hb-doc-shell .hb-seo-copy p {
    line-height: 1.75;
    color: var(--hb-text-muted);
}

.hb-page-doc .hb-doc-shell .hb-seo-copy ul,
.hb-page-doc .hb-doc-shell .hb-seo-copy ol {
    margin: 12px 0 20px;
    padding: 16px 20px 16px 36px;
    background: var(--hb-bg-raised);
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius-sm);
    list-style: none;
}

.hb-page-doc .hb-doc-shell .hb-seo-copy ul li,
.hb-page-doc .hb-doc-shell .hb-seo-copy ol li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 4px;
    color: var(--hb-text-muted);
    line-height: 1.6;
}

.hb-page-doc .hb-doc-shell .hb-seo-copy ul li::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hb-orange);
}

.hb-page-doc .hb-doc-shell .hb-seo-copy ol {
    counter-reset: hb-doc-step;
}

.hb-page-doc .hb-doc-shell .hb-seo-copy ol li {
    counter-increment: hb-doc-step;
}

.hb-page-doc .hb-doc-shell .hb-seo-copy ol li::before {
    content: counter(hb-doc-step);
    position: absolute;
    left: -24px;
    top: 0.1em;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hb-font-display);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--hb-orange-hot);
    background: var(--hb-orange-dim);
    border-radius: 50%;
}

.hb-page-doc .hb-doc-shell .hb-seo-copy a {
    color: var(--hb-orange-hot);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 122, 46, 0.4);
    transition: color 0.2s, border-color 0.2s;
}

.hb-page-doc .hb-doc-shell .hb-seo-copy a:hover {
    color: #fff;
    border-color: var(--hb-orange-hot);
}

.hb-page-doc .hb-doc-shell .hb-seo-copy blockquote {
    border-left-color: var(--hb-orange-hot);
    background: rgba(255, 90, 31, 0.06);
}

/* ---- responsive ---- */
@media (max-width: 992px) {
    .hb-topbar__inner {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
    }

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

    .hb-brand__img {
        height: 30px;
    }

    .hb-auth {
        display: flex;
        flex-shrink: 0;
        gap: 6px;
    }

    .hb-auth .hb-btn {
        padding: 8px 10px;
        font-size: 0.68rem;
        letter-spacing: 0.04em;
    }

    .hb-drawer-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .hb-menubar {
        display: none;
    }

    .hb-stage {
        padding: 14px;
    }

    .hb-games-row {
        grid-auto-columns: minmax(130px, 150px);
    }
}

@media (max-width: 1100px) {
    .hb-foot__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hb-foot__brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hb-app-sheet {
        margin-left: 0;
        margin-right: 0;
    }

    .hb-app-sheet .table-wrapper {
        overflow: visible;
    }

    .hb-app-sheet tbody tr:not(:first-child):not(:last-child) {
        display: flex;
        align-items: center;
    }

    .hb-app-sheet tbody tr:nth-child(2) {
        align-items: flex-start;
    }

    .hb-app-sheet tbody tr:not(:first-child):not(:last-child) td {
        display: block;
        border-bottom: none;
    }

    .hb-app-sheet tbody tr:not(:first-child):not(:last-child) td:first-child {
        width: auto;
        flex-shrink: 0;
        padding: 12px 0 12px 14px;
    }

    .hb-app-sheet tbody tr:not(:first-child):not(:last-child) td:last-child {
        flex: 1;
        min-width: 0;
        padding: 12px 14px 12px 8px;
        text-align: left;
    }

    .hb-app-sheet tbody tr:first-child td:last-child {
        padding: 20px 16px 16px;
    }

    .hb-app-sheet tbody tr:last-child td {
        padding: 16px 16px 24px;
    }

    .hb-app-sheet tbody tr:last-child .hb-btn--fire {
        min-width: 0;
        width: 100%;
        max-width: 300px;
    }

    .hb-app-name-row span {
        font-size: 1.2rem;
    }

    .hb-hero-slide__img {
        max-height: 280px;
    }

    .hb-seo-copy {
        padding: 16px;
    }

    .hb-foot__grid {
        grid-template-columns: 1fr;
    }

    .hb-foot__paychip {
        min-width: 80px;
        flex: 1 1 80px;
    }

    .hb-bonus-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .hb-auth .hb-btn {
        padding: 7px 8px;
        font-size: 0.6rem;
    }

    .hb-drawer-toggle {
        width: 38px;
        height: 38px;
        padding: 8px;
    }
}

@media (min-width: 993px) {
    .hb-drawer-panel,
    .hb-drawer-overlay {
        display: none !important;
    }

    .hb-auth {
        margin-left: 400px;
    }
}
