:root {
    --gmbs-bg: #071426;
    --gmbs-panel: #0c1d34;
    --gmbs-panel-2: #102744;
    --gmbs-cream: #f8f2e8;
    --gmbs-gold: #d5ad4f;
    --gmbs-red: #b94848;
    --gmbs-line: rgba(213, 173, 79, 0.3);
}

.gmbh-stuffed-page {
    background: var(--gmbs-bg);
    color: var(--gmbs-cream);
}

.gmbs-main {
    overflow-x: clip;
    overflow-y: visible;
    background: var(--gmbs-cream);
}

.gmbs-hero {
    position: relative;
    display: flex;
    min-height: clamp(660px, 69vw, 820px);
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #050c16;
}

.gmbs-hero-bg,
.gmbs-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gmbs-hero-bg {
    object-fit: cover;
    object-position: center;
}

.gmbs-hero-overlay {
    background:
        linear-gradient(90deg, rgba(4, 11, 23, 0.97) 0%, rgba(4, 11, 23, 0.82) 45%, rgba(4, 11, 23, 0.2) 78%, rgba(4, 11, 23, 0.52) 100%),
        linear-gradient(0deg, rgba(4, 11, 23, 0.8), transparent 45%);
}

.gmbs-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
    gap: 40px;
    align-items: center;
    padding-top: 86px;
    padding-bottom: 76px;
}

.gmbs-hero-copy {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.gmbs-kicker,
.gmbs-file-label {
    color: var(--gmbs-gold);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.gmbs-hero h1 {
    margin: 0.3em 0 0.2em;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.92);
    forced-color-adjust: none;
}

.gmbs-hero-lead {
    color: #fff;
    font: 600 clamp(1.25rem, 2vw, 1.8rem) / 1.35 Lora, serif;
}

.gmbs-hero-copy > p:not(.gmbs-kicker):not(.gmbs-hero-lead) {
    max-width: 680px;
    color: rgba(248, 242, 232, 0.84);
    font-size: 1.08rem;
}

.gmbs-button-gold {
    background: var(--gmbs-gold) !important;
    color: #071426 !important;
}

.gmbs-cube-wrap {
    width: min(32vw, 330px);
    justify-self: center;
    filter: drop-shadow(0 0 40px rgba(255, 196, 40, 0.4));
    animation: gmbsCube 4s ease-in-out infinite;
}

.gmbs-cube-wrap img {
    width: 100%;
}

@keyframes gmbsCube {
    50% {
        transform: translateY(-12px) rotate(3deg);
        filter: drop-shadow(0 0 65px rgba(255, 196, 40, 0.62));
    }
}

/* Book-one briefing: intentionally stays in normal document flow at every width. */
.gmbs-brief {
    position: relative;
    z-index: 3;
    clear: both;
    margin: 0 !important;
    padding: 88px 0;
    overflow: visible;
    background: var(--gmbs-cream);
    color: #18223a;
}

.gmbs-brief-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(38px, 5vw, 70px);
    align-items: center;
    min-width: 0;
}

.gmbs-sketch-card {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 24px;
    border: 1px solid rgba(15, 36, 66, 0.12);
    background: #fff;
    box-shadow: 0 22px 50px rgba(8, 23, 43, 0.12);
    transform: rotate(-1deg);
}

.gmbs-sketch-card img {
    display: block;
    width: 100%;
    height: auto;
    filter: grayscale(1) contrast(1.08);
}

.gmbs-stamp {
    position: absolute;
    right: 24px;
    bottom: 24px;
    padding: 7px 12px;
    border: 3px solid rgba(153, 38, 38, 0.6);
    color: #8b2525;
    font-weight: 900;
    letter-spacing: 0.12em;
    transform: rotate(-8deg);
}

.gmbs-brief-copy {
    min-width: 0;
}

.gmbs-brief-copy h2 {
    color: #14274c;
    font-size: clamp(2.2rem, 4.2vw, 4rem);
}

.gmbs-files-section {
    background: radial-gradient(circle at 20% 0, rgba(42, 74, 116, 0.3), transparent 32%), #071426;
    color: #f8f2e8;
}

.gmbs-section-heading-dark h2,
.gmbs-section-heading-dark p {
    color: #f8f2e8 !important;
}

.gmbs-file-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.gmbs-file-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--gmbs-line);
    background: linear-gradient(180deg, #112846, #0a192d);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.gmbs-file-tab {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    background: #d9c9a7;
    color: #14213a;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
}

.gmbs-file-tab strong {
    color: #8f2929;
}

.gmbs-file-image {
    display: flex;
    height: 250px;
    align-items: flex-end;
    justify-content: center;
    padding: 10px 8px 0;
    background: radial-gradient(circle at 50% 35%, rgba(213, 173, 79, 0.12), transparent 52%);
}

.gmbs-file-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gmbs-file-copy {
    padding: 18px;
}

.gmbs-file-copy h3 {
    margin: 0 0 6px;
    color: #fff;
}

.gmbs-file-status {
    color: var(--gmbs-gold);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.gmbs-file-copy ul {
    margin: 12px 0 0;
    padding-left: 18px;
    color: rgba(248, 242, 232, 0.78);
    font-size: 0.87rem;
}

.gmbs-file-copy li + li {
    margin-top: 6px;
}

.gmbs-age-contrast {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 26px;
    align-items: center;
    margin-top: 42px;
    padding: 26px;
    border: 1px solid var(--gmbs-line);
    background: rgba(255, 255, 255, 0.035);
}

.gmbs-age-contrast > div {
    text-align: center;
}

.gmbs-age-contrast img {
    width: 100%;
    max-width: 390px;
    height: 290px;
    object-fit: contain;
}

.gmbs-age-contrast > span {
    color: var(--gmbs-gold);
    font-weight: 900;
    letter-spacing: 0.25em;
    writing-mode: vertical-rl;
}

.gmbs-evidence-section,
.gmbs-timeline-section,
.gmbs-origin-section,
.gmbs-merch-section,
.gmbs-amazon-section {
    background: var(--gmbs-cream);
    color: #18223a;
}

.gmbs-evidence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.gmbs-evidence-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.4fr) minmax(0, 0.6fr);
    gap: 24px;
    align-items: center;
    min-width: 0;
    padding: 28px;
    border: 1px solid rgba(15, 36, 66, 0.12);
    background: #fff;
    box-shadow: 0 15px 38px rgba(8, 23, 43, 0.09);
}

.gmbs-evidence-card > img,
.gmbs-card-art img {
    width: 100%;
    max-height: 330px;
    object-fit: contain;
}

.gmbs-card-art {
    display: grid;
    min-width: 0;
    place-items: center;
}

.gmbs-card-art img[hidden] {
    display: none;
}

.gmbs-evidence-card h3 {
    color: #14274c;
}

.gmbs-evidence-card dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 12px;
    font-size: 0.88rem;
}

.gmbs-evidence-card dt {
    font-weight: 800;
}

.gmbs-reveal-button {
    padding: 10px 18px;
    border: 1px solid #14274c;
    border-radius: 999px;
    background: #14274c;
    color: #fff;
    font-weight: 800;
}

.gmbs-hidden-message {
    margin-top: 14px;
    padding: 13px;
    border-left: 4px solid var(--gmbs-red);
    background: #f2ebe0;
    font: 700 1.05rem Lora, serif;
}

.gmbs-evidence-notes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.gmbs-evidence-notes span {
    padding: 14px;
    border: 1px dashed rgba(20, 39, 76, 0.35);
    background: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

.gmbs-sketch-section {
    background: linear-gradient(180deg, #0a1b31, #071426);
    color: #fff;
}

.gmbs-sketch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gmbs-archive-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--gmbs-line);
    background: #f7f1e7;
    color: #18223a;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.gmbs-archive-image {
    display: grid;
    height: 300px;
    place-items: center;
    overflow: hidden;
    padding: 18px;
    background: #fff;
}

.gmbs-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1) contrast(1.08);
}

.gmbs-archive-copy {
    padding: 22px;
}

.gmbs-archive-copy h3 {
    margin: 5px 0 10px;
    color: #14274c;
    font-size: 1.35rem;
}

.gmbs-archive-copy p:last-child {
    margin-bottom: 0;
    color: rgba(24, 34, 58, 0.76);
}

.gmbs-game-promo {
    background: #0a1b31;
    color: #fff;
}

.gmbs-game-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.gmbs-game-promo h2 {
    color: #fff;
}

.gmbs-game-promo p {
    color: rgba(255, 255, 255, 0.78);
}

.gmbs-game-screen {
    position: relative;
    display: flex;
    min-height: 370px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--gmbs-line);
    background: linear-gradient(145deg, #050b14, #122b4a);
    box-shadow: inset 0 0 0 12px #071426, 0 24px 50px rgba(0, 0, 0, 0.3);
}

.gmbs-game-screen img {
    position: absolute;
    right: 6%;
    bottom: 3%;
    width: 38%;
    filter: drop-shadow(0 0 18px rgba(65, 170, 255, 0.3));
}

.gmbs-monitor-wave {
    display: flex;
    width: 75%;
    height: 120px;
    align-items: center;
    gap: 10px;
}

.gmbs-monitor-wave i {
    flex: 1;
    height: 30px;
    background: #3bd3ef;
    box-shadow: 0 0 16px #3bd3ef;
    animation: gmbsWave 1.3s ease-in-out infinite;
}

.gmbs-monitor-wave i:nth-child(2n) { animation-delay: -0.4s; }
.gmbs-monitor-wave i:nth-child(3n) { animation-delay: -0.8s; }

@keyframes gmbsWave {
    50% { height: 100px; }
}

.gmbs-scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(255, 255, 255, 0.025) 5px 6px);
}

.gmbs-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.gmbs-timeline article {
    min-height: 220px;
    padding: 22px;
    border: 1px solid rgba(20, 39, 76, 0.15);
    background: #fff;
}

.gmbs-timeline span {
    display: block;
    color: var(--gmbs-gold);
    font-size: 2rem;
    font-weight: 900;
}

.gmbs-timeline h3 {
    font-size: 1.12rem;
}

.gmbs-timeline a {
    font-weight: 800;
}

.gmbs-timeline .is-classified {
    background: #132443;
    color: #f8f2e8;
}

.gmbs-timeline .is-classified h3 {
    color: #f8f2e8;
}

.gmbs-timeline .is-classified strong {
    display: inline-block;
    margin-top: 10px;
    padding: 5px;
    border: 2px solid currentColor;
    color: #e06b64;
    transform: rotate(-4deg);
}

.gmbs-origin-section {
    border-top: 1px solid rgba(20, 39, 76, 0.12);
    background:
        radial-gradient(circle at 90% 15%, rgba(213, 173, 79, 0.16), transparent 28%),
        #f8f2e8;
}

.gmbs-origin-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 44px;
}

.gmbs-origin-timeline::before {
    content: "";
    position: absolute;
    top: 31px;
    right: 5%;
    left: 5%;
    height: 2px;
    background: rgba(20, 39, 76, 0.18);
}

.gmbs-origin-timeline article {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding: 22px 18px;
    border: 1px solid rgba(20, 39, 76, 0.13);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 28px rgba(8, 23, 43, 0.08);
}

.gmbs-origin-timeline span {
    display: inline-grid;
    min-width: 64px;
    min-height: 34px;
    place-items: center;
    margin-bottom: 18px;
    border: 2px solid var(--gmbs-gold);
    border-radius: 999px;
    background: #fff;
    color: #14274c;
    font-weight: 900;
}

.gmbs-origin-timeline h3 {
    color: #14274c;
    font-size: 1.18rem;
}

.gmbs-origin-timeline p {
    margin-bottom: 0;
    color: rgba(24, 34, 58, 0.74);
    font-size: 0.92rem;
}

.gmbs-origin-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: stretch;
}

.gmbs-film-archive-card,
.gmbs-origin-note {
    min-width: 0;
    border: 1px solid rgba(20, 39, 76, 0.14);
    background: #fff;
    box-shadow: 0 18px 45px rgba(8, 23, 43, 0.1);
}

.gmbs-film-screen {
    display: grid;
    min-height: 270px;
    place-items: center;
    align-content: center;
    gap: 16px;
    background:
        repeating-linear-gradient(0deg, transparent 0 4px, rgba(255, 255, 255, 0.025) 5px 6px),
        radial-gradient(circle, rgba(65, 170, 255, 0.22), transparent 42%),
        #071426;
    color: #fff;
}

.gmbs-film-play {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    padding-left: 6px;
    border: 2px solid var(--gmbs-gold);
    border-radius: 50%;
    color: var(--gmbs-gold);
    font-size: 2rem;
}

.gmbs-film-screen small {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
    letter-spacing: 0.18em;
}

.gmbs-film-copy,
.gmbs-origin-note {
    padding: 30px;
}

.gmbs-film-copy h3,
.gmbs-origin-note h3 {
    color: #14274c;
}

.gmbs-origin-note blockquote {
    margin: 24px 0 18px;
    padding: 18px 20px;
    border-left: 4px solid var(--gmbs-gold);
    background: #f2ebe0;
    color: #14274c;
    font-family: Lora, serif;
    font-weight: 600;
}

.gmbs-origin-signature {
    color: #14274c;
    font-family: Lora, serif;
    font-weight: 700;
}

.gmbs-merch-card,
.gmbs-amazon-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.48fr) minmax(0, 0.52fr);
    gap: 46px;
    align-items: center;
    padding: 36px;
    border: 1px solid rgba(20, 39, 76, 0.14);
    background: #fff;
    box-shadow: 0 18px 45px rgba(8, 23, 43, 0.1);
}

.gmbs-merch-products {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 16px;
    align-items: end;
}

.gmbs-merch-products a {
    display: grid;
    min-width: 0;
    min-height: 260px;
    place-items: center;
    padding: 14px;
    border: 1px solid rgba(20, 39, 76, 0.1);
    background: #f7f4ef;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.gmbs-merch-products a:hover,
.gmbs-merch-products a:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(8, 23, 43, 0.14);
}

.gmbs-merch-products img {
    width: 100%;
    max-height: 330px;
    object-fit: contain;
}

.gmbs-amazon-section {
    padding-top: 0;
}

.gmbs-amazon-card {
    grid-template-columns: minmax(180px, 0.25fr) minmax(0, 0.75fr);
    background: #e8edf5;
}

.gmbs-amazon-card > img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 14px 14px rgba(20, 39, 76, 0.2));
}

@media (max-width: 1180px) {
    .gmbs-file-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .gmbs-origin-timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gmbs-origin-timeline::before {
        display: none;
    }
}

@media (max-width: 900px) {
    .gmbs-hero {
        min-height: 700px;
    }

    .gmbs-hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(160px, 0.28fr);
    }

    .gmbs-brief-grid,
    .gmbs-game-promo-grid,
    .gmbs-origin-grid,
    .gmbs-merch-card,
    .gmbs-amazon-card {
        grid-template-columns: 1fr;
    }

    .gmbs-sketch-card {
        width: min(100%, 520px);
        margin-inline: auto;
        transform: none;
    }

    .gmbs-brief-copy {
        text-align: center;
    }

    .gmbs-brief-copy .gmb-button-row {
        justify-content: center;
    }

    .gmbs-evidence-grid {
        grid-template-columns: 1fr;
    }

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

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

    .gmbs-origin-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gmbs-merch-products {
        width: min(100%, 650px);
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    .gmbs-hero {
        min-height: 720px;
        align-items: flex-end;
    }

    .gmbs-hero-bg {
        object-position: 68% center;
    }

    .gmbs-hero-overlay {
        background: linear-gradient(0deg, rgba(4, 11, 23, 0.98) 0%, rgba(4, 11, 23, 0.82) 55%, rgba(4, 11, 23, 0.35) 100%);
    }

    .gmbs-hero-inner {
        display: block;
        padding-top: 138px;
        padding-bottom: 44px;
    }

    .gmbs-hero-copy {
        padding: 20px 18px 22px;
        border: 1px solid rgba(213, 173, 79, 0.16);
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(4, 11, 23, 0.58), rgba(4, 11, 23, 0.92));
        box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
    }

    .gmbs-kicker {
        display: block;
        max-width: calc(100% - 16px);
        margin-bottom: 0.8rem;
        line-height: 1.55;
    }

    .gmbs-hero h1 {
        max-width: 12ch;
        margin-top: 0.16em;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        font-size: clamp(2.55rem, 12vw, 3.8rem);
        line-height: 1;
        text-shadow: 0 3px 20px rgba(0, 0, 0, 0.98), 0 0 2px rgba(255, 255, 255, 0.18);
        forced-color-adjust: none;
    }

    .gmbs-cube-wrap {
        position: absolute;
        z-index: 4;
        top: 10px;
        right: 2px;
        width: 112px;
        pointer-events: none;
    }

    .gmbs-brief {
        padding: 64px 0;
    }

    .gmbs-file-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gmbs-evidence-card {
        grid-template-columns: 1fr;
    }

    .gmbs-evidence-card > img,
    .gmbs-card-art img {
        max-height: 260px;
    }

    .gmbs-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .gmbs-age-contrast {
        grid-template-columns: 1fr 1fr;
    }

    .gmbs-age-contrast > span {
        grid-row: 1;
        grid-column: 1 / -1;
        writing-mode: horizontal-tb;
    }

    .gmbs-game-screen {
        min-height: 280px;
    }
}

@media (max-width: 560px) {
    .gmbs-file-grid,
    .gmbs-sketch-grid,
    .gmbs-timeline,
    .gmbs-origin-timeline,
    .gmbs-evidence-notes,
    .gmbs-merch-products {
        grid-template-columns: 1fr;
    }

    .gmbs-file-image {
        height: 280px;
    }

    .gmbs-age-contrast img {
        height: 230px;
    }

    .gmbs-archive-image {
        height: 280px;
    }

    .gmbs-merch-card,
    .gmbs-amazon-card,
    .gmbs-film-copy,
    .gmbs-origin-note {
        padding: 24px;
    }

    .gmbs-merch-products a {
        min-height: 220px;
    }

    .gmbs-hero .gmb-button-row {
        align-items: stretch;
    }

    .gmbs-hero .gmb-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .gmbs-hero-inner {
        padding-top: 126px;
    }

    .gmbs-cube-wrap {
        top: 4px;
        right: -4px;
        width: 100px;
    }

    .gmbs-hero-copy {
        padding: 18px 15px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gmbs-cube-wrap,
    .gmbs-monitor-wave i {
        animation: none !important;
    }

    .gmbs-merch-products a {
        transition: none;
    }
}

/* v3.5.0: restrained Rabbit/Bear surveillance peeks. */
.gmbs-peek-host {
    position: relative;
    isolation: isolate;
}

.gmbs-peek-host > *:not(.gmbs-creature-peek) {
    position: relative;
    z-index: 2;
}

.gmbs-creature-peek {
    position: absolute;
    z-index: 1;
    top: -132px;
    display: block;
    width: clamp(112px, 13vw, 176px);
    height: 142px;
    overflow: hidden;
    pointer-events: none;
}

.gmbs-creature-peek.is-left {
    left: clamp(10px, 4vw, 58px);
}

.gmbs-creature-peek.is-right {
    right: clamp(10px, 4vw, 58px);
}

.gmbs-creature-peek img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.42));
    transform: translateY(112%) rotate(-2deg);
    transform-origin: 50% 100%;
    transition: transform 0.58s cubic-bezier(.2,.78,.22,1);
}

.gmbs-creature-peek.is-right img {
    transform: translateY(112%) rotate(2deg) scaleX(-1);
}

.gmbs-creature-peek.is-watching img {
    transform: translateY(13%) rotate(1deg);
}

.gmbs-creature-peek.is-right.is-watching img {
    transform: translateY(13%) rotate(-1deg) scaleX(-1);
}

@media (max-width: 700px) {
    .gmbs-creature-peek {
        top: -104px;
        width: 116px;
        height: 112px;
    }
}

@media (max-width: 420px) {
    .gmbs-hero-inner {
        padding-top: 126px;
    }

    .gmbs-cube-wrap {
        top: 4px;
        right: -4px;
        width: 100px;
    }

    .gmbs-hero-copy {
        padding: 18px 15px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gmbs-creature-peek {
        display: none !important;
    }
}
