@font-face {
    font-family: "Space Grotesk";
    src: url("../assets/fonts/space-grotesk-latin.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 300 700;
}

@font-face {
    font-family: "IBM Plex Mono";
    src: url("../assets/fonts/ibm-plex-mono-latin.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "IBM Plex Mono";
    src: url("../assets/fonts/ibm-plex-mono-semibold-latin.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 600;
}

:root {
    --ink: #10161b;
    --muted: #6f7a80;
    --paper: #f2f8f3;
    --line: #cfd9dc;
    --portal: #70ea78;
    --portal-bright: #e5ffe7;
    --portal-deep: #279d4f;
    --violet: #57c9ff;
    --red: #ff536b;
    --yellow: #dff26d;
    --font-display: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
    --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    --gate-size: min(91vw, 77svh, 900px);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
    min-width: 320px;
    min-height: 100%;
    overflow: hidden;
    background: var(--paper);
}

body {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-width: 320px;
    min-height: 100svh;
    margin: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 47%, rgba(84, 225, 104, .11), transparent 33%),
        radial-gradient(circle at 82% 14%, rgba(87, 201, 255, .12), transparent 26%),
        radial-gradient(circle at 16% 88%, rgba(122, 231, 110, .07), transparent 27%),
        var(--paper);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--portal-deep);
    color: #fff;
}

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

button {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    border-radius: 999px;
    padding: 10px 15px;
    transform: translateY(-160%);
    background: var(--ink);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--portal);
    outline-offset: 3px;
}

.portal-page {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 0;
    place-items: center;
    padding: clamp(70px, 9svh, 96px) 10px clamp(60px, 7svh, 72px);
}

.portal-page::before,
.portal-page::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -2;
    border: 1px solid rgba(26, 52, 63, .065);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.portal-page::before {
    width: calc(var(--gate-size) * 1.18);
    aspect-ratio: 1;
    transform: translate(-50%, -46%);
}

.portal-page::after {
    width: calc(var(--gate-size) * 1.36);
    aspect-ratio: 1;
    transform: translate(-50%, -46%);
    border-color: rgba(26, 52, 63, .032);
}

.gate-stage {
    position: relative;
    width: var(--gate-size);
    aspect-ratio: 1;
    isolation: isolate;
    container-type: inline-size;
}

.gate-aura {
    position: absolute;
    inset: 5%;
    z-index: -1;
    border-radius: 50%;
    opacity: .46;
    background: radial-gradient(circle, rgba(99, 235, 255, .25), rgba(50, 169, 201, .09) 44%, transparent 71%);
    filter: blur(30px);
    transform: scale(.93);
    transition: opacity .8s ease, transform 1s var(--ease);
}

.gate-stage.is-charging .gate-aura,
.gate-stage.is-water-filled .gate-aura {
    opacity: .9;
    transform: scale(1.04);
}

.portal-window {
    position: absolute;
    inset: 17.7%;
    z-index: 1;
    overflow: hidden;
    border-radius: 50%;
    background: #061116;
    box-shadow:
        inset 0 0 0 2px rgba(166, 241, 255, .2),
        inset 0 0 70px rgba(10, 74, 94, .45);
}

.portal-depth {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(37, 180, 210, .18), transparent 8%),
        repeating-radial-gradient(circle at 50% 50%, rgba(83, 225, 247, .08) 0 2px, transparent 3px 28px),
        radial-gradient(circle, #102f3d 0, #07161d 48%, #03090c 100%);
    animation: depth-breathe 4.8s ease-in-out infinite alternate;
}

.slide-stack,
.game-slide {
    position: absolute;
    inset: 0;
}

.slide-stack {
    z-index: 1;
}

.game-slide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.035);
    filter: saturate(.7) brightness(.7);
    pointer-events: none;
    transition:
        opacity .55s ease,
        transform 1.2s var(--ease),
        filter .7s ease,
        visibility 0s linear .8s;
}

.game-slide.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    filter: none;
    pointer-events: auto;
    transition-delay: 0s;
}

.gate-stage.is-transitioning .game-slide.is-active:not(.is-entering) {
    opacity: .12;
    transform: scale(1.09);
    filter: saturate(.25) brightness(.48) blur(1.5px);
}

.game-slide.is-entering {
    opacity: 1 !important;
    visibility: visible;
    filter: none !important;
    animation: game-arrival .72s var(--ease) both;
}

.portal-game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.005);
    transition: transform 5s linear;
}

.game-slide.is-active .portal-game-image {
    transform: scale(1.07);
}

.portal-image-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, transparent 42%, rgba(1, 8, 12, .34) 100%),
        linear-gradient(180deg, rgba(2, 9, 13, .12) 24%, rgba(2, 8, 12, .2) 48%, rgba(2, 7, 11, .96) 100%);
    pointer-events: none;
}

.portal-badges {
    position: absolute;
    top: 12.5%;
    right: 18%;
    left: 18%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
    font-family: var(--font-mono);
    font-size: clamp(.43rem, 1.2cqi, .68rem);
    font-weight: 600;
    letter-spacing: .08em;
}

.destination-rank,
.destination-rating {
    display: inline-flex;
    align-items: center;
    min-height: clamp(22px, 4.2cqi, 35px);
    border: 1px solid rgba(192, 242, 250, .5);
    border-radius: 999px;
    padding: 4px clamp(8px, 1.8cqi, 14px);
    background: rgba(3, 16, 22, .62);
    box-shadow: inset 0 0 18px rgba(77, 225, 248, .08);
    backdrop-filter: blur(10px);
}

.destination-rating b {
    margin-right: 5px;
    color: var(--portal);
}

.portal-game-copy {
    position: absolute;
    right: 17%;
    bottom: 10.5%;
    left: 17%;
    z-index: 2;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .7);
}

.destination-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    gap: 12px;
    margin: 0 0 clamp(5px, 1.2cqi, 9px);
    color: var(--portal-bright);
    font-family: var(--font-mono);
    font-size: clamp(.43rem, 1.15cqi, .67rem);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.destination-kicker span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.destination-kicker span:last-child {
    color: rgba(255, 255, 255, .66);
    text-align: center;
}

.portal-game-copy h2 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #fff;
    font-size: clamp(1rem, 4.6cqi, 2.65rem);
    font-weight: 650;
    letter-spacing: -.048em;
    line-height: .98;
    text-wrap: balance;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.destination-description {
    display: -webkit-box;
    margin: clamp(6px, 1.3cqi, 11px) 0 clamp(8px, 1.5cqi, 13px);
    overflow: hidden;
    color: rgba(255, 255, 255, .73);
    font-size: clamp(.56rem, 1.4cqi, .83rem);
    line-height: 1.42;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .85);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.play-link {
    display: grid;
    grid-template-columns: minmax(0, auto) auto;
    align-items: center;
    max-width: 100%;
    width: fit-content;
    min-height: clamp(35px, 6.5cqi, 52px);
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 999px;
    padding: 5px 6px 5px clamp(12px, 2.1cqi, 18px);
    margin-inline: auto;
    background: rgba(7, 19, 25, .76);
    color: #fff;
    font-size: clamp(.53rem, 1.35cqi, .79rem);
    font-weight: 700;
    text-shadow: none;
    backdrop-filter: blur(12px);
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s var(--ease);
}

.play-link:hover {
    transform: translateY(-2px);
    border-color: var(--portal-bright);
    background: var(--portal-bright);
    color: #061116;
}

.play-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.play-link b {
    display: grid;
    width: clamp(25px, 4.6cqi, 38px);
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: var(--portal-deep);
    color: #fff;
    font-size: clamp(.75rem, 1.8cqi, 1rem);
}

.portal-water {
    position: absolute;
    inset: -2%;
    z-index: 4;
    overflow: hidden;
    border-radius: 50%;
    opacity: 0;
    clip-path: circle(0 at 50% 50%);
    pointer-events: none;
    transform: scale(.82);
    transition: opacity .45s ease, transform .8s var(--ease), clip-path .75s var(--ease);
    mix-blend-mode: screen;
}

.gate-stage.is-water-filled .portal-water {
    opacity: .94;
    clip-path: circle(74% at 50% 50%);
    transform: scale(1);
}

.gate-stage.is-gate-open:not(.is-water-filled) .portal-water {
    opacity: .2;
    clip-path: circle(74% at 50% 50%);
    transform: scale(1);
}

.water-core,
.water-current,
.water-caustics {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.water-core {
    background:
        radial-gradient(circle at 50% 48%, rgba(235, 255, 255, .98) 0 2%, rgba(106, 242, 255, .9) 9%, rgba(19, 177, 218, .72) 29%, rgba(11, 101, 157, .56) 55%, rgba(3, 46, 80, .86) 100%),
        conic-gradient(from 45deg, #54f2ff, #087ba7, #b7ffff, #1464b8, #54f2ff);
    animation: water-core-spin 4.6s linear infinite;
}

.water-current {
    inset: 7%;
    border: clamp(8px, 2.3cqi, 20px) solid rgba(205, 255, 255, .42);
    border-right-color: rgba(43, 126, 207, .25);
    border-bottom-color: rgba(60, 220, 247, .68);
    border-radius: 42% 58% 51% 49% / 57% 43% 56% 44%;
    filter: blur(2px);
}

.water-current--one {
    animation: water-current-one 2.2s linear infinite;
}

.water-current--two {
    inset: 18%;
    opacity: .7;
    border-width: clamp(7px, 1.7cqi, 15px);
    animation: water-current-two 1.8s linear infinite reverse;
}

.water-current--three {
    inset: 31%;
    opacity: .82;
    border-width: clamp(5px, 1.2cqi, 11px);
    animation: water-current-one 1.3s linear infinite;
}

.water-caustics {
    opacity: .55;
    background:
        repeating-radial-gradient(ellipse at 48% 52%, transparent 0 12px, rgba(226, 255, 255, .38) 14px 17px, transparent 20px 31px),
        repeating-conic-gradient(from 20deg, transparent 0 8deg, rgba(220, 255, 255, .22) 10deg 13deg, transparent 16deg 24deg);
    filter: url(#portal-water-distort) blur(.6px);
    animation: water-caustics 3s ease-in-out infinite alternate;
}

.portal-flash {
    position: absolute;
    inset: 25%;
    z-index: 5;
    border-radius: 50%;
    opacity: 0;
    background: #eaffff;
    box-shadow: 0 0 80px 35px rgba(104, 239, 255, .85);
    pointer-events: none;
}

.gate-stage.is-water-filled .portal-flash {
    animation: portal-flash .78s var(--ease) both;
}

.gate-frame {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.gate-panel-cuts {
    opacity: .82;
}

.gate-dial {
    transform-box: view-box;
    transform-origin: 500px 500px;
    animation: gate-dial-rotation 38s linear infinite;
    animation-play-state: paused;
}

.gate-stage.is-ant-running .gate-dial {
    animation-play-state: running;
}

.gate-glyph {
    color: #111719;
    opacity: .72;
    transition: color .3s ease, opacity .3s ease;
}

.gate-stage.is-ant-running .gate-glyph {
    color: #d59a59;
    opacity: 1;
    animation: glyph-pulse .62s ease-in-out infinite alternate;
}

.chevron-core {
    transition: fill .35s ease, stroke .35s ease, filter .35s ease;
}

.gate-chevron--0 { --lock: 0; }
.gate-chevron--1 { --lock: 1; }
.gate-chevron--2 { --lock: 2; }
.gate-chevron--3 { --lock: 3; }
.gate-chevron--4 { --lock: 4; }
.gate-chevron--5 { --lock: 5; }
.gate-chevron--6 { --lock: 6; }
.gate-chevron--7 { --lock: 7; }
.gate-chevron--8 { --lock: 8; }

.chevron-spark {
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
}

.gate-stage.is-charging .gate-chevron .chevron-core {
    animation: chevron-lock .46s var(--ease) forwards;
    animation-delay: calc(var(--lock) * 70ms);
}

.gate-stage.is-charging .gate-chevron .chevron-spark {
    animation: chevron-spark .46s var(--ease) forwards;
    animation-delay: calc(var(--lock) * 70ms);
}

.gate-stage.is-gate-open .chevron-core {
    fill: url(#chevron-active);
    stroke: #ffd59a;
    filter: url(#chevron-glow);
}

.gate-stage.is-gate-open .chevron-spark {
    opacity: .9;
    filter: url(#chevron-glow);
}

.ant-runner {
    position: absolute;
    top: -15.4%;
    left: 18.5%;
    z-index: 6;
    width: 63%;
    overflow: visible;
    pointer-events: none;
}

/* Two far-side legs sit below the Stargate frame so the metal rim occludes them. */
.ant-runner--behind {
    z-index: 2;
}

.ant-body,
.ant-leg,
.ant-antennae,
.ant-mandible {
    transform-box: fill-box;
}

.ant-body {
    transform-origin: center bottom;
    animation: ant-idle 2.6s ease-in-out infinite alternate;
}

.ant-antennae {
    transform-origin: right bottom;
    animation: antenna-scan 2.1s ease-in-out infinite alternate;
}

.ant-mandible {
    transform-origin: right center;
    animation: mandible-watch 2.7s ease-in-out infinite;
}

.ant-mandible--lower {
    animation-delay: -1.35s;
}

.ant-leg {
    transform-origin: 50% 8%;
}

.gate-stage.is-ant-running .ant-body {
    animation: ant-run .32s ease-in-out infinite alternate;
}

.gate-stage.is-ant-running .ant-antennae {
    animation: antenna-run .38s ease-in-out infinite alternate;
}

.gate-stage.is-ant-running .ant-leg.gait-a {
    animation: ant-gait-a .32s ease-in-out infinite alternate;
}

.gate-stage.is-ant-running .ant-leg.gait-b {
    animation: ant-gait-b .32s ease-in-out infinite alternate;
}

.gate-readout {
    position: absolute;
    top: 20.6%;
    left: 50%;
    z-index: 7;
    width: min(42%, 220px);
    max-width: 42%;
    margin: 0;
    overflow: visible;
    transform: translate(-50%, 2.6em);
    color: rgba(224, 252, 255, .88);
    font-family: var(--font-mono);
    font-size: clamp(.42rem, 1.15cqi, .68rem);
    font-weight: 600;
    letter-spacing: .11em;
    line-height: 1.28;
    text-align: center;
    text-shadow: 0 0 12px rgba(80, 235, 255, .72);
    white-space: normal;
    pointer-events: none;
}

.gate-readout span {
    display: block;
}

.gate-readout span + span {
    margin-top: .28em;
    font-size: .9em;
    letter-spacing: .16em;
}

.site-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 37px;
    gap: 20px;
    border-top: 1px solid rgba(136, 238, 255, .14);
    padding: 5px 16px;
    background: #091116;
    color: rgba(220, 242, 246, .68);
    font-family: var(--font-mono);
    font-size: .57rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.site-strip span:nth-child(2) {
    color: rgba(183, 215, 221, .43);
}

.site-strip a {
    justify-self: end;
    color: #e8fdff;
}

.site-strip a:hover {
    color: var(--portal);
}

.catalog-error {
    display: grid;
    max-width: 500px;
    justify-items: center;
    text-align: center;
}

.catalog-error h2 {
    margin: 18px 0 8px;
    letter-spacing: -.04em;
}

.catalog-error p {
    margin: 0;
    color: var(--muted);
}

@keyframes gate-dial-rotation {
    to { transform: rotate(-360deg); }
}

@keyframes glyph-pulse {
    from { opacity: .55; }
    to { opacity: 1; }
}

@keyframes chevron-lock {
    0% { fill: url(#chevron-idle); stroke: #34291f; filter: none; }
    42% { fill: #fff2ce; stroke: #fff7dc; filter: url(#chevron-glow); }
    100% { fill: url(#chevron-active); stroke: #ffd59a; filter: url(#chevron-glow); }
}

@keyframes chevron-spark {
    0% { opacity: 0; transform: scale(.45); }
    45% { opacity: 1; transform: scale(1.12); filter: url(#chevron-glow); }
    100% { opacity: .9; transform: scale(1); filter: url(#chevron-glow); }
}

@keyframes depth-breathe {
    from { transform: scale(.98); opacity: .78; }
    to { transform: scale(1.04); opacity: 1; }
}

@keyframes game-arrival {
    0% { clip-path: circle(0 at 50% 50%); transform: scale(1.15); }
    55% { clip-path: circle(48% at 50% 50%); }
    100% { clip-path: circle(74% at 50% 50%); transform: scale(1); }
}

@keyframes water-core-spin {
    to { transform: rotate(360deg) scale(1.08); }
}

@keyframes water-current-one {
    0% { transform: rotate(0) scale(.93); border-radius: 42% 58% 51% 49% / 57% 43% 56% 44%; }
    50% { transform: rotate(180deg) scale(1.04); border-radius: 58% 42% 45% 55% / 43% 57% 47% 53%; }
    100% { transform: rotate(360deg) scale(.93); border-radius: 42% 58% 51% 49% / 57% 43% 56% 44%; }
}

@keyframes water-current-two {
    0% { transform: rotate(0) scale(1.03); }
    50% { transform: rotate(180deg) scale(.9); }
    100% { transform: rotate(360deg) scale(1.03); }
}

@keyframes water-caustics {
    from { transform: rotate(-8deg) scale(1.04); opacity: .36; }
    to { transform: rotate(11deg) scale(1.13); opacity: .72; }
}

@keyframes portal-flash {
    0%, 100% { opacity: 0; transform: scale(.1); }
    36% { opacity: .92; transform: scale(.8); }
    64% { opacity: .45; transform: scale(1.7); }
}

@keyframes ant-idle {
    from { transform: translateY(0) rotate(-.25deg); }
    to { transform: translateY(-2px) rotate(.25deg); }
}

@keyframes ant-run {
    from { transform: translateY(1px) rotate(-.7deg); }
    to { transform: translateY(-6px) rotate(.7deg); }
}

@keyframes ant-gait-a {
    from { transform: rotate(-10deg) translateX(-3px); }
    to { transform: rotate(11deg) translateX(6px); }
}

@keyframes ant-gait-b {
    from { transform: rotate(10deg) translateX(5px); }
    to { transform: rotate(-11deg) translateX(-5px); }
}

@keyframes antenna-scan {
    from { transform: rotate(-4deg); }
    to { transform: rotate(7deg); }
}

@keyframes antenna-run {
    from { transform: rotate(-2deg) translateY(0); }
    to { transform: rotate(3deg) translateY(2px); }
}

@keyframes mandible-watch {
    0%, 38%, 100% { transform: rotate(0); }
    52%, 67% { transform: rotate(-5deg); }
}

@media (max-width: 640px) {
    :root {
        --gate-size: min(95vw, 67svh);
    }

    .portal-page {
        padding: 55px 6px 52px;
    }

    .portal-page::before,
    .portal-page::after {
        display: none;
    }

   .ant-runner {
        top: -14.7%;
        left: 17%;
        width: 66%;
    }

    .portal-game-copy {
        right: 15.5%;
        bottom: 10%;
        left: 15.5%;
    }

    .destination-kicker span:last-child,
    .destination-description {
        display: none;
    }

    .portal-game-copy h2 {
        font-size: clamp(.94rem, 5.4cqi, 1.25rem);
    }

    .play-link {
        min-height: 32px;
        margin-top: 7px;
        font-size: .52rem;
    }

    /* On phones the gate status sits below the Stargate instead of over its ring/content. */
    .gate-readout {
        top: calc(100% + 8px);
        width: min(78%, 260px);
        max-width: 78%;
        transform: translateX(-50%);
        color: #245667;
        font-size: clamp(.54rem, 2.45vw, .66rem);
        line-height: 1.25;
        text-shadow: none;
    }

    .site-strip {
        grid-template-columns: 1fr auto;
        min-height: 35px;
        padding-inline: 11px;
        font-size: .48rem;
    }

    .site-strip span:nth-child(2) {
        display: none;
    }
}

@media (max-height: 650px) and (min-width: 641px) {
    :root {
        --gate-size: min(87vw, 65svh);
    }

    .portal-page {
        padding: 31px 7px 47px;
    }

   .ant-runner {
        top: -14.2%;
        left: 19%;
        width: 62%;
    }

    .portal-game-copy {
        right: 15%;
        bottom: 9%;
        left: 15%;
    }

    .destination-kicker span:last-child,
    .destination-description {
        display: none;
    }

    .portal-game-copy h2 {
        font-size: .72rem;
        line-height: 1;
        -webkit-line-clamp: 1;
    }

    .play-link {
        min-height: 24px;
        margin-top: 5px;
        padding-block: 3px;
        font-size: .43rem;
    }

    .play-link b {
        width: 19px;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    .gate-dial,
    .ant-body,
    .ant-leg,
    .ant-antennae,
    .ant-mandible,
    .portal-depth,
    .water-core,
    .water-current,
    .water-caustics {
        animation: none !important;
    }

    .game-slide.is-active .portal-game-image {
        transform: none;
    }
}

@media print {
    body {
        display: block;
        overflow: visible;
    }

    .portal-page {
        min-height: 850px;
    }

    .gate-dial,
    .ant-body,
    .ant-leg,
    .ant-antennae,
    .ant-mandible,
    .portal-depth,
    .portal-water {
        animation: none !important;
    }
}
