:root {
    --up-ink: #06081a;
    --up-ink-2: #0b0f2b;
    --up-ink-3: #121741;
    --up-violet: #7c4dff;
    --up-violet-soft: #a78bfa;
    --up-cyan: #22d3ee;
    --up-magenta: #e879f9;
    --up-amber: #fbbf24;
    --up-white: #f4f6ff;
    --up-muted: #a2a9d0;
    --up-line: rgba(255, 255, 255, .09);
    --up-glass: rgba(255, 255, 255, .045);
    --up-radius: 20px;
    --up-radius-sm: 14px;
    --up-shadow: 0 28px 70px -28px rgba(4, 6, 24, .95);
    --up-display: "Sora", system-ui, sans-serif;
    --up-body: "Plus Jakarta Sans", system-ui, sans-serif;
    --up-container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--up-ink);
    color: var(--up-white);
    font-family: var(--up-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.up-locked {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .25s ease, opacity .25s ease;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
}

::selection {
    background: var(--up-violet);
    color: #fff;
}

.container {
    max-width: var(--up-container);
    padding-left: 20px;
    padding-right: 20px;
}

.up-gradient {
    background: linear-gradient(100deg, var(--up-cyan) 0%, var(--up-violet-soft) 45%, var(--up-magenta) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.up-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--up-display);
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .01em;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
}

.up-btn i {
    font-size: .88em;
}

.up-btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.up-btn--primary {
    color: #fff;
    background: linear-gradient(120deg, var(--up-violet) 0%, #5b2ee0 40%, var(--up-magenta) 130%);
    box-shadow: 0 14px 34px -14px rgba(124, 77, 255, .95), inset 0 1px 0 rgba(255, 255, 255, .25);
}

.up-btn--primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 22px 46px -16px rgba(124, 77, 255, 1), inset 0 1px 0 rgba(255, 255, 255, .35);
}

.up-btn--ghost {
    color: var(--up-white);
    background: var(--up-glass);
    border-color: var(--up-line);
    backdrop-filter: blur(12px);
}

.up-btn--ghost:hover {
    color: #fff;
    border-color: rgba(167, 139, 250, .55);
    background: rgba(124, 77, 255, .16);
    transform: translateY(-3px);
}

.up-btn--outline {
    color: var(--up-white);
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .02);
}

.up-btn--outline:hover {
    color: #fff;
    border-color: var(--up-cyan);
    background: rgba(34, 211, 238, .12);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -22px rgba(34, 211, 238, .9);
}

.up-topbar {
    position: relative;
    z-index: 20;
    background: linear-gradient(90deg, #0a0d26 0%, #150f38 50%, #0a0d26 100%);
    border-bottom: 1px solid var(--up-line);
    font-size: .82rem;
}

.up-topbar::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 77, 255, .8), rgba(34, 211, 238, .6), transparent);
}

.up-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 46px;
    padding: 8px 0;
}

.up-topbar__notice {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9cfef;
    line-height: 1.45;
}

.up-topbar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    color: var(--up-amber);
    background: rgba(251, 191, 36, .14);
    border: 1px solid rgba(251, 191, 36, .28);
    font-size: .74rem;
}

.up-topbar__meta {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--up-muted);
    white-space: nowrap;
}

.up-topbar__meta li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.up-topbar__meta i {
    color: var(--up-violet-soft);
    font-size: .78rem;
}

.up-topbar__flag {
    padding: 3px 12px;
    border-radius: 999px;
    color: #e6e9ff;
    background: rgba(124, 77, 255, .16);
    border: 1px solid rgba(124, 77, 255, .34);
    font-weight: 600;
}

.up-topbar__flag i {
    color: var(--up-cyan);
}

.up-header {
    position: relative;
    z-index: 15;
    background: rgba(8, 11, 32, .92);
    border-bottom: 1px solid var(--up-line);
}

.up-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
}

.up-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex: 0 0 auto;
}

.up-logo__mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    color: #fff;
    font-size: 1.05rem;
    background: linear-gradient(140deg, var(--up-violet) 0%, #4324b8 55%, #1b1150 100%);
    box-shadow: 0 12px 28px -12px rgba(124, 77, 255, .95), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.up-logo__mark::after {
    content: "";
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--up-cyan), #0ea5b7);
    border: 2px solid #080b20;
}

.up-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.up-logo__name {
    font-family: var(--up-display);
    font-size: 1.42rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
}

.up-logo__name em {
    font-style: normal;
    background: linear-gradient(100deg, var(--up-cyan), var(--up-violet-soft) 70%, var(--up-magenta));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.up-logo__tag {
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--up-muted);
}

.up-logo--sm .up-logo__name {
    font-size: 1.24rem;
}

.up-logo--sm .up-logo__mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
}

.up-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.up-menu a {
    position: relative;
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-family: var(--up-display);
    font-size: .92rem;
    font-weight: 500;
    color: #c6cbee;
}

.up-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--up-cyan), var(--up-magenta));
    transition: width .28s ease;
}

.up-menu a:hover,
.up-menu a.is-active {
    color: #fff;
}

.up-menu a:hover::after,
.up-menu a.is-active::after {
    width: 22px;
}

.up-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.up-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 46px;
    padding: 0 12px;
    border-radius: 14px;
    border: 1px solid var(--up-line);
    background: var(--up-glass);
    cursor: pointer;
    transition: border-color .25s ease, background .25s ease;
}

.up-burger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform .3s ease, opacity .25s ease, width .3s ease;
}

.up-burger span:nth-child(1) {
    width: 22px;
}

.up-burger span:nth-child(2) {
    width: 16px;
}

.up-burger span:nth-child(3) {
    width: 22px;
}

.up-burger:hover {
    border-color: rgba(167, 139, 250, .5);
    background: rgba(124, 77, 255, .16);
}

.up-burger:hover span:nth-child(2) {
    width: 22px;
}

.up-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(4, 6, 20, .72);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}

.up-mobile-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.up-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    width: min(340px, 88vw);
    height: 100%;
    padding: 22px;
    overflow-y: auto;
    background: linear-gradient(170deg, #0d1030 0%, #080a20 55%, #0a0728 100%);
    border-left: 1px solid var(--up-line);
    box-shadow: -30px 0 70px -30px rgba(0, 0, 0, .9);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), visibility .4s;
}

.up-mobile-nav.is-open {
    transform: translateX(0);
    visibility: visible;
}

.up-mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--up-line);
}

.up-mobile-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: #fff;
    background: var(--up-glass);
    border: 1px solid var(--up-line);
    cursor: pointer;
    transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.up-mobile-nav__close:hover {
    background: rgba(232, 121, 249, .18);
    border-color: rgba(232, 121, 249, .45);
    transform: rotate(90deg);
}

.up-mobile-nav__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding-top: 18px;
}

.up-mobile-menu li+li {
    margin-top: 4px;
}

.up-mobile-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-family: var(--up-display);
    font-size: .98rem;
    font-weight: 500;
    color: #cdd2f2;
}

.up-mobile-menu a i {
    width: 20px;
    text-align: center;
    font-size: .92rem;
    color: var(--up-violet-soft);
    transition: color .25s ease;
}

.up-mobile-menu a:hover,
.up-mobile-menu a.is-active {
    color: #fff;
    background: rgba(124, 77, 255, .14);
    border-color: rgba(124, 77, 255, .32);
}

.up-mobile-menu a:hover i,
.up-mobile-menu a.is-active i {
    color: var(--up-cyan);
}

.up-mobile-nav__actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.up-mobile-nav__foot {
    margin-top: auto;
    padding-top: 22px;
}

.up-mobile-nav__foot p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 16px;
    font-size: .8rem;
    line-height: 1.5;
    color: var(--up-muted);
}

.up-mobile-nav__foot p i {
    margin-top: 3px;
    color: var(--up-amber);
}

.up-social {
    display: flex;
    gap: 8px;
}

.up-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: #cdd2f2;
    background: var(--up-glass);
    border: 1px solid var(--up-line);
    transition: color .25s ease, background .25s ease, transform .25s ease, border-color .25s ease;
}

.up-social a:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--up-violet), var(--up-magenta));
    border-color: transparent;
    transform: translateY(-3px);
}

.up-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 84px;
    background:
        radial-gradient(1100px 620px at 78% 8%, rgba(124, 77, 255, .26), transparent 62%),
        radial-gradient(880px 520px at 6% 92%, rgba(34, 211, 238, .16), transparent 60%),
        linear-gradient(180deg, #080b22 0%, #06081a 58%, #070a20 100%);
}

.up-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 78%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 78%);
    pointer-events: none;
}

.up-hero__aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.up-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .5;
    animation: upDrift 16s ease-in-out infinite;
}

.up-orb--violet {
    top: -90px;
    left: 8%;
    width: 340px;
    height: 340px;
    background: rgba(124, 77, 255, .55);
}

.up-orb--cyan {
    bottom: -120px;
    left: 34%;
    width: 300px;
    height: 300px;
    background: rgba(34, 211, 238, .4);
    animation-delay: -5s;
}

.up-orb--amber {
    top: 22%;
    right: 4%;
    width: 260px;
    height: 260px;
    background: rgba(232, 121, 249, .38);
    animation-delay: -9s;
}

@keyframes upDrift {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(28px, -34px, 0) scale(1.09);
    }
}

.up-hero__content {
    position: relative;
    max-width: 620px;
}

.up-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 14px;
    margin-bottom: 26px;
    border-radius: 999px;
    background: rgba(124, 77, 255, .12);
    border: 1px solid rgba(167, 139, 250, .32);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #ddd9ff;
    backdrop-filter: blur(10px);
}

.up-chip__pulse {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--up-cyan);
}

.up-chip__pulse::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(34, 211, 238, .55);
    animation: upPulse 2.1s ease-out infinite;
}

@keyframes upPulse {
    0% {
        transform: scale(.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.up-hero__title {
    margin: 0 0 22px;
    font-family: var(--up-display);
    font-size: clamp(2.4rem, 5vw, 3.85rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.028em;
}

.up-hero__text {
    max-width: 560px;
    margin-bottom: 26px;
    font-size: 1.06rem;
    color: #b6bce0;
}

.up-hero__list {
    display: grid;
    gap: 12px;
    margin-bottom: 34px;
}

.up-hero__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .96rem;
    color: #cfd4f0;
}

.up-hero__list i {
    margin-top: 5px;
    font-size: .9rem;
    color: var(--up-cyan);
}

.up-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 46px;
}

.up-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 22px 20px;
    border-radius: var(--up-radius);
    background: linear-gradient(140deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .015));
    border: 1px solid var(--up-line);
    box-shadow: var(--up-shadow);
    backdrop-filter: blur(14px);
}

.up-stat {
    position: relative;
    text-align: center;
}

.up-stat+.up-stat::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 12%;
    height: 76%;
    width: 1px;
    background: var(--up-line);
}

.up-stat__num {
    display: block;
    font-family: var(--up-display);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    background: linear-gradient(100deg, #fff, var(--up-violet-soft));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.up-stat__label {
    display: block;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--up-muted);
}

.up-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.up-hero__halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 78%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 77, 255, .5) 0%, rgba(232, 121, 249, .18) 45%, transparent 68%);
    filter: blur(38px);
    animation: upBreathe 7s ease-in-out infinite;
}

@keyframes upBreathe {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .85;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.up-hero__img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    filter: drop-shadow(0 40px 60px rgba(5, 6, 25, .8));
    animation: upFloat 6.5s ease-in-out infinite;
}

.up-hero__img.is-tilting {
    animation: none;
    transition: transform .2s ease-out;
}

@keyframes upFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.up-float {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--up-radius-sm);
    background: rgba(13, 17, 45, .82);
    border: 1px solid var(--up-line);
    box-shadow: var(--up-shadow);
    backdrop-filter: blur(16px);
    animation: upFloat 7.5s ease-in-out infinite;
}

.up-float strong {
    display: block;
    font-family: var(--up-display);
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.up-float small {
    display: block;
    font-size: .74rem;
    color: var(--up-muted);
}

.up-float__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: #fff;
    font-size: .92rem;
    background: linear-gradient(140deg, var(--up-violet), #4b23c9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28);
}

.up-float__icon--cyan {
    background: linear-gradient(140deg, var(--up-cyan), #0d94ad);
}

.up-float__icon--amber {
    background: linear-gradient(140deg, var(--up-amber), #d97706);
}

.up-float--one {
    top: 6%;
    left: -2%;
    animation-delay: -1.2s;
}

.up-float--two {
    bottom: 16%;
    right: -1%;
    animation-delay: -3.4s;
}

.up-float--three {
    bottom: 2%;
    left: 6%;
    animation-delay: -5.1s;
}

.up-hero__marquee {
    position: relative;
    margin-top: 72px;
    padding: 16px 0;
    border-top: 1px solid var(--up-line);
    border-bottom: 1px solid var(--up-line);
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.up-marquee__track {
    display: flex;
    width: max-content;
    animation: upSlide 34s linear infinite;
}

.up-hero__marquee:hover .up-marquee__track {
    animation-play-state: paused;
}

.up-marquee__group {
    display: flex;
    align-items: center;
    gap: 46px;
    padding-right: 46px;
}

.up-marquee__group span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-family: var(--up-display);
    font-size: .86rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: #b3b9dd;
}

.up-marquee__group i {
    color: var(--up-violet-soft);
    font-size: .84rem;
}

@keyframes upSlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.up-games-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 104px;
    background:
        radial-gradient(900px 520px at 12% 0%, rgba(124, 77, 255, .18), transparent 60%),
        linear-gradient(180deg, #070a20 0%, #05071a 100%);
}

.up-games-section__glow {
    position: absolute;
    right: -160px;
    bottom: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, .22), transparent 66%);
    filter: blur(60px);
    pointer-events: none;
}

.up-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: end;
    gap: 30px 56px;
    margin-bottom: 52px;
}

.up-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(34, 211, 238, .1);
    border: 1px solid rgba(34, 211, 238, .3);
    font-family: var(--up-display);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #b7f0fb;
}

.up-eyebrow i {
    font-size: .8rem;
    color: var(--up-cyan);
}

.up-section-title {
    margin: 0;
    font-family: var(--up-display);
    font-size: clamp(1.9rem, 3.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -.025em;
}

.up-section-text {
    margin-bottom: 16px;
    font-size: 1rem;
    color: #aeb4da;
}

.up-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--up-display);
    font-size: .92rem;
    font-weight: 600;
    color: var(--up-cyan);
}

.up-arrow-link i {
    transition: transform .3s ease;
}

.up-arrow-link:hover {
    color: #fff;
}

.up-arrow-link:hover i {
    transform: translateX(6px);
}

.up-arrow-link--sm {
    font-size: .84rem;
    color: var(--up-violet-soft);
}

.up-game {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--up-radius);
    overflow: hidden;
    background: linear-gradient(160deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .012));
    border: 1px solid var(--up-line);
    box-shadow: var(--up-shadow);
    backdrop-filter: blur(14px);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.up-game::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(140deg, rgba(34, 211, 238, .7), rgba(124, 77, 255, .55), transparent 60%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.up-game:hover {
    transform: translateY(-8px);
    border-color: rgba(167, 139, 250, .3);
    box-shadow: 0 36px 80px -30px rgba(124, 77, 255, .75);
}

.up-game:hover::after {
    opacity: 1;
}

.up-game__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.up-game__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}

.up-game:hover .up-game__media img {
    transform: scale(1.07);
}

.up-game__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 55%;
    background: linear-gradient(180deg, transparent, rgba(6, 8, 26, .92));
    pointer-events: none;
}

.up-game__badge,
.up-game__live {
    position: absolute;
    top: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 13px;
    border-radius: 999px;
    font-family: var(--up-display);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.up-game__badge {
    left: 14px;
    color: #e9e6ff;
    background: rgba(124, 77, 255, .3);
    border: 1px solid rgba(167, 139, 250, .45);
}

.up-game__badge i {
    font-size: .72rem;
    color: var(--up-cyan);
}

.up-game__live {
    right: 14px;
    color: #d6dbf6;
    background: rgba(8, 11, 30, .7);
    border: 1px solid var(--up-line);
}

.up-game__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, .22);
    animation: upBlink 2s ease-in-out infinite;
}

@keyframes upBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }
}

.up-game__overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 8, 34, .5);
    opacity: 0;
    transition: opacity .35s ease;
}

.up-game:hover .up-game__overlay,
.up-game__overlay:focus-visible {
    opacity: 1;
}

.up-game__play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.15rem;
    padding-left: 4px;
    background: linear-gradient(140deg, var(--up-violet), var(--up-magenta));
    box-shadow: 0 0 0 10px rgba(124, 77, 255, .18), 0 18px 40px -14px rgba(124, 77, 255, .95);
    transform: scale(.75);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.up-game:hover .up-game__play-icon {
    transform: scale(1);
}

.up-game__body {
    flex: 1 1 auto;
    padding: 22px 22px 6px;
}

.up-game__title {
    margin: 0 0 10px;
    font-family: var(--up-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

.up-game__title a {
    background-image: linear-gradient(90deg, var(--up-cyan), var(--up-magenta));
    background-repeat: no-repeat;
    background-size: 0% 2px;
    background-position: 0 100%;
    transition: background-size .35s ease, color .25s ease;
}

.up-game__title a:hover {
    color: #fff;
    background-size: 100% 2px;
}

.up-game__text {
    margin-bottom: 18px;
    font-size: .93rem;
    color: #a9b0d6;
}

.up-game__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.up-game__meta li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--up-line);
    font-size: .76rem;
    font-weight: 500;
    color: #c3c8e8;
}

.up-game__meta i {
    font-size: .74rem;
    color: var(--up-violet-soft);
}

.up-game__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 20px;
    padding: 18px 22px 22px;
    border-top: 1px solid var(--up-line);
}

.up-game__cta {
    padding: 11px 22px;
    font-size: .88rem;
}

.up-games-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 11px;
    max-width: 720px;
    margin: 46px auto 0;
    text-align: center;
    font-size: .86rem;
    color: var(--up-muted);
}

.up-games-note i {
    margin-top: 4px;
    color: var(--up-amber);
}

.up-section-head--center {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
}

.up-section-head--center .up-section-text {
    margin-top: 18px;
    margin-bottom: 0;
}

.up-eyebrow--amber {
    background: rgba(251, 191, 36, .1);
    border-color: rgba(251, 191, 36, .32);
    color: #ffdf9e;
}

.up-eyebrow--amber i {
    color: var(--up-amber);
}

.up-about {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(760px 480px at 88% 12%, rgba(232, 121, 249, .12), transparent 62%),
        linear-gradient(180deg, #05071a 0%, #070a20 100%);
}

.up-about__glow {
    position: absolute;
    top: 12%;
    left: -180px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 77, 255, .3), transparent 68%);
    filter: blur(70px);
    pointer-events: none;
}

.up-bento {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.up-bento__tile {
    padding: 26px 24px;
    border-radius: var(--up-radius);
    background: linear-gradient(155deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .015));
    border: 1px solid var(--up-line);
    box-shadow: var(--up-shadow);
    backdrop-filter: blur(14px);
    transition: transform .35s ease, border-color .35s ease;
}

.up-bento__tile:hover {
    transform: translateY(-6px);
    border-color: rgba(167, 139, 250, .34);
}

.up-bento__tile--wide {
    grid-column: span 2;
}

.up-bento__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    background: linear-gradient(140deg, var(--up-violet), #4623bf);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .26);
}

.up-bento__icon--cyan {
    background: linear-gradient(140deg, var(--up-cyan), #0d8ea6);
}

.up-bento__icon--amber {
    background: linear-gradient(140deg, var(--up-amber), #d97706);
}

.up-bento__icon--magenta {
    background: linear-gradient(140deg, var(--up-magenta), #a21caf);
}

.up-bento__tile strong {
    display: block;
    margin-bottom: 7px;
    font-family: var(--up-display);
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
}

.up-bento__tile p {
    font-size: .86rem;
    color: var(--up-muted);
}

.up-about__lead {
    margin: 22px 0 18px;
    font-size: 1.08rem;
    color: #ccd1ee;
}

.up-about__text {
    margin-bottom: 16px;
    font-size: .97rem;
    color: #a9b0d6;
}

.up-pillars {
    display: grid;
    gap: 18px;
    margin: 32px 0 36px;
}

.up-pillars li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.up-pillars__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    color: var(--up-cyan);
    font-size: .96rem;
    background: rgba(34, 211, 238, .1);
    border: 1px solid rgba(34, 211, 238, .26);
}

.up-pillars strong {
    display: block;
    margin-bottom: 4px;
    font-family: var(--up-display);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.up-pillars p {
    font-size: .9rem;
    color: var(--up-muted);
}

.up-features {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(820px 460px at 50% -6%, rgba(34, 211, 238, .12), transparent 62%),
        linear-gradient(180deg, #070a20 0%, #05071a 100%);
}

.up-feature {
    position: relative;
    height: 100%;
    padding: 32px 28px;
    border-radius: var(--up-radius);
    background: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .012));
    border: 1px solid var(--up-line);
    box-shadow: var(--up-shadow);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.up-feature::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 77, 255, .28), transparent 70%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.up-feature:hover {
    transform: translateY(-8px);
    border-color: rgba(167, 139, 250, .3);
    box-shadow: 0 36px 80px -34px rgba(124, 77, 255, .8);
}

.up-feature:hover::before {
    opacity: 1;
}

.up-feature__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 17px;
    color: #fff;
    font-size: 1.2rem;
    background: linear-gradient(140deg, var(--up-violet), #4623bf);
    box-shadow: 0 14px 30px -14px rgba(124, 77, 255, .9), inset 0 1px 0 rgba(255, 255, 255, .26);
}

.up-feature__icon--cyan {
    background: linear-gradient(140deg, var(--up-cyan), #0d8ea6);
    box-shadow: 0 14px 30px -14px rgba(34, 211, 238, .9), inset 0 1px 0 rgba(255, 255, 255, .26);
}

.up-feature__icon--amber {
    background: linear-gradient(140deg, var(--up-amber), #d97706);
    box-shadow: 0 14px 30px -14px rgba(251, 191, 36, .8), inset 0 1px 0 rgba(255, 255, 255, .26);
}

.up-feature__icon--magenta {
    background: linear-gradient(140deg, var(--up-magenta), #a21caf);
    box-shadow: 0 14px 30px -14px rgba(232, 121, 249, .8), inset 0 1px 0 rgba(255, 255, 255, .26);
}

.up-feature h3 {
    position: relative;
    margin: 0 0 12px;
    font-family: var(--up-display);
    font-size: 1.16rem;
    font-weight: 700;
    letter-spacing: -.015em;
    color: #fff;
}

.up-feature p {
    position: relative;
    font-size: .92rem;
    color: #a9b0d6;
}

.up-steps {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(180deg, #05071a 0%, #080b22 50%, #05071a 100%);
}

.up-steps__glow {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 760px;
    height: 340px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(124, 77, 255, .22), transparent 68%);
    filter: blur(70px);
    pointer-events: none;
}

.up-step {
    position: relative;
    height: 100%;
    padding: 34px 26px 30px;
    border-radius: var(--up-radius);
    background: linear-gradient(165deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .014));
    border: 1px solid var(--up-line);
    box-shadow: var(--up-shadow);
    backdrop-filter: blur(14px);
    transition: transform .35s ease, border-color .35s ease;
}

.up-step:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 211, 238, .34);
}

.up-step__num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: var(--up-display);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(167, 139, 250, .35);
}

.up-step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 16px;
    color: var(--up-cyan);
    font-size: 1.1rem;
    background: rgba(34, 211, 238, .1);
    border: 1px solid rgba(34, 211, 238, .28);
}

.up-step h3 {
    margin: 0 0 10px;
    font-family: var(--up-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.up-step p {
    font-size: .89rem;
    color: #a9b0d6;
}

.up-notice {
    padding: 0 0 100px;
    background: #05071a;
}

.up-notice__panel {
    position: relative;
    padding: 52px 48px 44px;
    border-radius: 28px;
    background:
        radial-gradient(620px 300px at 50% 0%, rgba(251, 191, 36, .12), transparent 66%),
        linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015));
    border: 1px solid rgba(251, 191, 36, .22);
    box-shadow: var(--up-shadow);
    overflow: hidden;
}

.up-notice__panel .up-section-head {
    margin-bottom: 40px;
}

.up-notice__card {
    height: 100%;
    padding: 30px 28px;
    border-radius: var(--up-radius);
    background: rgba(6, 9, 28, .55);
    border: 1px solid var(--up-line);
}

.up-notice__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 16px;
    color: #fff;
    font-size: 1.15rem;
    background: linear-gradient(140deg, var(--up-amber), #d97706);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
}

.up-notice__icon--cyan {
    background: linear-gradient(140deg, var(--up-cyan), #0d8ea6);
}

.up-notice__card h3 {
    margin: 0 0 14px;
    font-family: var(--up-display);
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
}

.up-notice__card p {
    margin-bottom: 14px;
    font-size: .92rem;
    color: #a9b0d6;
}

.up-notice__card p:last-child {
    margin-bottom: 0;
}

.up-notice__foot {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid var(--up-line);
    text-align: center;
}

.up-notice__foot p {
    display: inline-flex;
    align-items: flex-start;
    gap: 11px;
    max-width: 780px;
    font-size: .92rem;
    color: #b9bfe2;
    text-align: left;
}

.up-notice__foot i {
    margin-top: 4px;
    color: var(--up-amber);
}

.up-notice__foot a {
    color: var(--up-cyan);
    font-weight: 600;
    border-bottom: 1px solid rgba(34, 211, 238, .4);
}

.up-notice__foot a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.up-faq {
    padding: 0 0 110px;
    background: #05071a;
}

.up-faq__intro .up-section-title {
    margin-bottom: 18px;
}

.up-faq__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.up-accordion .accordion-item {
    margin-bottom: 12px;
    border: 1px solid var(--up-line);
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
    overflow: hidden;
    transition: border-color .3s ease;
}

.up-accordion .accordion-item:hover {
    border-color: rgba(167, 139, 250, .3);
}

.up-accordion .accordion-button {
    padding: 19px 22px;
    background: transparent;
    color: #e7eaff;
    font-family: var(--up-display);
    font-size: .99rem;
    font-weight: 600;
    line-height: 1.45;
    box-shadow: none;
}

.up-accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background: rgba(124, 77, 255, .16);
    box-shadow: none;
}

.up-accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.up-accordion .accordion-button::after {
    width: 1.05rem;
    height: 1.05rem;
    background-size: 1.05rem;
    filter: brightness(0) invert(1);
    opacity: .7;
}

.up-accordion .accordion-body {
    padding: 4px 22px 22px;
    font-size: .93rem;
    color: #a9b0d6;
}

.up-footer {
    position: relative;
    overflow: hidden;
    padding: 88px 0 0;
    background: linear-gradient(180deg, #070a20 0%, #04061a 100%);
    border-top: 1px solid var(--up-line);
}

.up-footer__glow {
    position: absolute;
    top: -160px;
    left: 50%;
    width: 900px;
    height: 420px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(124, 77, 255, .22), transparent 68%);
    filter: blur(80px);
    pointer-events: none;
}

.up-footer__alerts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 62px;
}

.up-footer__alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 26px 26px 24px;
    border-radius: var(--up-radius);
    background: linear-gradient(155deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .012));
    border: 1px solid var(--up-line);
}

.up-footer__alert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    background: linear-gradient(140deg, var(--up-amber), #d97706);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
}

.up-footer__alert-icon--cyan {
    background: linear-gradient(140deg, var(--up-cyan), #0d8ea6);
}

.up-footer__alert strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--up-display);
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
}

.up-footer__alert p {
    font-size: .87rem;
    color: var(--up-muted);
}

.up-footer__brand p {
    margin: 20px 0 22px;
    font-size: .91rem;
    color: var(--up-muted);
}

.up-footer__col h4 {
    margin: 0 0 20px;
    font-family: var(--up-display);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
}

.up-footer__col li+li {
    margin-top: 11px;
}

.up-footer__col a {
    display: inline-block;
    font-size: .9rem;
    color: var(--up-muted);
}

.up-footer__col a:hover {
    color: #fff;
    transform: translateX(4px);
}

.up-footer__ext a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.up-footer__ext i {
    font-size: .68rem;
    color: var(--up-cyan);
}

.up-footer__partners {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    margin-top: 62px;
    padding: 30px 32px;
    border-radius: var(--up-radius);
    background: rgba(255, 255, 255, .035);
    border: 1px solid var(--up-line);
}

.up-footer__partners-text h4 {
    margin: 0 0 10px;
    font-family: var(--up-display);
    font-size: 1.04rem;
    font-weight: 700;
    color: #fff;
}

.up-footer__partners-text p {
    max-width: 780px;
    font-size: .87rem;
    color: var(--up-muted);
}

.up-footer__partner-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 14px 22px;
    border-radius: var(--up-radius-sm);
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--up-line);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.up-footer__partner-logo img {
    max-height: 54px;
    width: auto;
    opacity: .92;
    transition: opacity .3s ease;
}

.up-footer__partner-logo:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, .4);
    background: rgba(124, 77, 255, .12);
}

.up-footer__partner-logo:hover img {
    opacity: 1;
}

.up-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 26px;
    margin-top: 54px;
    padding: 26px 0 30px;
    border-top: 1px solid var(--up-line);
}

.up-footer__copy {
    font-size: .86rem;
    color: var(--up-muted);
}

.up-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
}

.up-footer__legal a {
    font-size: .84rem;
    color: var(--up-muted);
}

.up-footer__legal a:hover {
    color: #fff;
}

.up-footer__stamp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(251, 191, 36, .12);
    border: 1px solid rgba(251, 191, 36, .3);
    font-family: var(--up-display);
    font-size: .78rem;
    font-weight: 600;
    color: #ffdf9e;
}

.up-footer__stamp i {
    color: var(--up-amber);
}

@media (max-width: 1199.98px) {
    .up-menu a {
        padding: 10px 10px;
        font-size: .88rem;
    }

    .up-hero__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .up-stat+.up-stat::before {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .up-menu {
        display: none;
    }

    .up-burger {
        display: flex;
    }

    .up-nav {
        min-height: 74px;
    }

    .up-topbar__meta {
        display: none;
    }

    .up-topbar__inner {
        justify-content: center;
        text-align: left;
    }

    .up-hero {
        padding: 64px 0 60px;
    }

    .up-hero__content {
        max-width: none;
        text-align: center;
        margin-inline: auto;
    }

    .up-hero__text {
        margin-inline: auto;
    }

    .up-hero__list {
        display: inline-grid;
        text-align: left;
    }

    .up-hero__cta {
        justify-content: center;
    }

    .up-hero__visual {
        max-width: 520px;
        margin: 10px auto 0;
    }

    .up-hero__marquee {
        margin-top: 52px;
    }

    .up-games-section {
        padding: 72px 0 78px;
    }

    .up-section-head {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .up-about,
    .up-features,
    .up-steps {
        padding: 74px 0;
    }

    .up-notice {
        padding: 0 0 74px;
    }

    .up-notice__panel {
        padding: 40px 30px 34px;
    }

    .up-faq {
        padding: 0 0 78px;
    }

    .up-footer {
        padding-top: 70px;
    }

    .up-footer__alerts {
        grid-template-columns: minmax(0, 1fr);
        margin-bottom: 48px;
    }

    .up-footer__partners {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 48px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .up-topbar {
        font-size: .76rem;
    }

    .up-logo__tag {
        display: none;
    }

    .up-logo__name {
        font-size: 1.28rem;
    }

    .up-float {
        padding: 10px 13px;
        gap: 10px;
    }

    .up-float__icon {
        width: 32px;
        height: 32px;
        font-size: .82rem;
    }

    .up-float strong {
        font-size: .8rem;
    }

    .up-float small {
        font-size: .68rem;
    }

    .up-float--one {
        top: 2%;
        left: -8px;
    }

    .up-float--two {
        bottom: 18%;
        right: -8px;
    }

    .up-float--three {
        display: none;
    }

    .up-hero__title {
        letter-spacing: -.02em;
    }

    .up-hero__cta .up-btn {
        width: 100%;
    }

    .up-hero__stats {
        padding: 18px 14px;
        gap: 16px 10px;
    }

    .up-stat__num {
        font-size: 1.34rem;
    }

    .up-marquee__group {
        gap: 30px;
        padding-right: 30px;
    }

    .up-game__body {
        padding: 20px 18px 4px;
    }

    .up-game__foot {
        padding: 16px 18px 20px;
    }

    .up-game__title {
        font-size: 1.2rem;
    }

    .up-games-note {
        justify-content: flex-start;
        text-align: left;
    }

    .up-bento {
        grid-template-columns: minmax(0, 1fr);
    }

    .up-bento__tile--wide {
        grid-column: span 1;
    }

    .up-feature {
        padding: 26px 22px;
    }

    .up-step {
        padding: 28px 22px;
    }

    .up-notice__panel {
        padding: 32px 20px 28px;
        border-radius: 22px;
    }

    .up-notice__card {
        padding: 24px 20px;
    }

    .up-accordion .accordion-button {
        padding: 16px 18px;
        font-size: .93rem;
    }

    .up-accordion .accordion-body {
        padding: 2px 18px 18px;
    }

    .up-footer__alert {
        padding: 22px 20px;
    }

    .up-footer__partners {
        padding: 24px 20px;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .up-topbar__notice {
        align-items: flex-start;
    }

    .up-hero {
        padding: 48px 0 52px;
    }

    .up-hero__title {
        font-size: clamp(2rem, 8.4vw, 2.5rem);
    }

    .up-games-section {
        padding: 56px 0 62px;
    }

    .up-game__foot {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .up-game__cta {
        width: 100%;
    }

    .up-arrow-link--sm {
        justify-content: center;
    }

    .up-about,
    .up-features,
    .up-steps {
        padding: 58px 0;
    }

    .up-notice {
        padding: 0 0 58px;
    }

    .up-faq {
        padding: 0 0 62px;
    }

    .up-faq__actions .up-btn {
        width: 100%;
    }

    .up-footer__alert {
        flex-direction: column;
        gap: 14px;
    }

    .up-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .up-orb,
    .up-hero__img,
    .up-float,
    .up-hero__halo,
    .up-marquee__track,
    .up-chip__pulse::after,
    .up-game__dot {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

body.up-consent-locked {
    overflow: hidden;
}

.up-age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}

.up-age-gate.is-visible {
    opacity: 1;
    visibility: visible;
}

.up-age-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 6, 20, .72);
    backdrop-filter: blur(3px);
}

.up-age-gate__dialog {
    position: relative;
    width: min(520px, 100%);
    padding: 38px;
    border: 1px solid rgba(167, 139, 250, .38);
    border-radius: 26px;
    background:
        radial-gradient(360px 180px at 50% 0%, rgba(124, 77, 255, .28), transparent 70%),
        linear-gradient(160deg, #111638, #080b22);
    box-shadow: 0 36px 100px rgba(0, 0, 0, .6);
    text-align: center;
}

.up-age-gate__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 20px;
    color: #fff;
    font-size: 1.35rem;
    background: linear-gradient(140deg, var(--up-violet), #4b23c9);
    box-shadow: 0 16px 36px -14px rgba(124, 77, 255, .95), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.up-age-gate.is-restricted .up-age-gate__icon {
    background: linear-gradient(140deg, var(--up-amber), #d97706);
}

.up-age-gate__eyebrow {
    display: block;
    margin-bottom: 10px;
    font-family: var(--up-display);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--up-cyan);
}

.up-age-gate h2 {
    margin: 0 0 14px;
    font-family: var(--up-display);
    font-size: clamp(1.55rem, 5vw, 2.05rem);
    font-weight: 800;
    letter-spacing: -.025em;
}

.up-age-gate p {
    color: #b6bce0;
}

.up-age-gate__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.up-age-gate__restricted[hidden],
.up-cookie[hidden] {
    display: none;
}

.up-cookie {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9000;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    width: min(760px, calc(100% - 48px));
    padding: 18px;
    border: 1px solid rgba(167, 139, 250, .34);
    border-radius: 20px;
    background: rgba(10, 13, 38, .96);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .55);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .3s ease, transform .3s ease;
}

.up-cookie.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.up-cookie__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: var(--up-amber);
    background: rgba(251, 191, 36, .12);
    border: 1px solid rgba(251, 191, 36, .28);
}

.up-cookie__copy strong {
    display: block;
    margin-bottom: 4px;
    font-family: var(--up-display);
    font-size: .94rem;
}

.up-cookie__copy p {
    font-size: .82rem;
    line-height: 1.5;
    color: var(--up-muted);
}

.up-cookie__copy a {
    color: var(--up-cyan);
    text-decoration: underline;
}

.up-cookie__actions {
    display: flex;
    gap: 8px;
}

.up-cookie__actions .up-btn {
    padding: 10px 16px;
    font-size: .8rem;
}

.up-inner-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 70px;
    text-align: center;
    background:
        radial-gradient(720px 360px at 50% 0%, rgba(124, 77, 255, .26), transparent 70%),
        linear-gradient(180deg, #080b22, #05071a);
}

.up-inner-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(140deg, var(--up-violet), #4b23c9);
    box-shadow: 0 18px 38px -16px rgba(124, 77, 255, .9);
}

.up-inner-hero h1 {
    max-width: 840px;
    margin: 0 auto 16px;
    font-family: var(--up-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
}

.up-inner-hero p {
    max-width: 740px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #b6bce0;
}

.up-content-page {
    padding: 80px 0 96px;
    background: #05071a;
}

.up-content-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.up-content-block {
    margin-bottom: 22px;
    padding: 30px;
    border: 1px solid var(--up-line);
    border-radius: var(--up-radius);
    background: linear-gradient(155deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012));
}

.up-content-block h2,
.up-content-block h3 {
    margin: 0 0 14px;
    font-family: var(--up-display);
    font-weight: 700;
    color: #fff;
}

.up-content-block h2 {
    font-size: 1.42rem;
}

.up-content-block h3 {
    margin-top: 20px;
    font-size: 1.05rem;
}

.up-content-block p,
.up-content-block li {
    color: #abb2d7;
}

.up-content-block p + p {
    margin-top: 12px;
}

.up-content-block ul {
    display: grid;
    gap: 9px;
    margin-top: 14px;
}

.up-content-block li {
    position: relative;
    padding-left: 22px;
}

.up-content-block li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--up-cyan);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: .8rem;
}

.up-content-block a {
    color: var(--up-cyan);
}

.up-contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 13px 18px;
    border-radius: 999px;
    color: #fff !important;
    background: rgba(124, 77, 255, .16);
    border: 1px solid rgba(167, 139, 250, .35);
    font-family: var(--up-display);
    font-weight: 600;
}

.up-game-stage {
    padding: 72px 0 92px;
    background:
        radial-gradient(800px 460px at 50% 10%, rgba(124, 77, 255, .18), transparent 68%),
        #05071a;
}

.up-game-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 24px;
    border: 1px solid rgba(167, 139, 250, .3);
    border-radius: 28px;
    background: rgba(8, 11, 34, .88);
    box-shadow: 0 38px 90px -34px rgba(124, 77, 255, .7);
}

.up-game-canvas {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    background: #080b22;
    touch-action: manipulation;
}

.up-game-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.up-game-status {
    font-family: var(--up-display);
    color: #cdd2f2;
}

.up-game-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.up-game-disclaimer {
    max-width: 980px;
    margin: 24px auto 0;
    padding: 20px 22px;
    border: 1px solid rgba(251, 191, 36, .25);
    border-radius: 16px;
    background: rgba(251, 191, 36, .06);
    color: #bfc5e5;
    font-size: .9rem;
}

.up-game-disclaimer i {
    margin-right: 8px;
    color: var(--up-amber);
}

@media (max-width: 767.98px) {
    .up-age-gate__dialog {
        padding: 30px 22px;
    }

    .up-age-gate__actions {
        grid-template-columns: minmax(0, 1fr);
    }

    .up-cookie {
        right: 12px;
        bottom: 12px;
        grid-template-columns: auto minmax(0, 1fr);
        width: calc(100% - 24px);
    }

    .up-cookie__actions {
        grid-column: 1 / -1;
    }

    .up-cookie__actions .up-btn {
        flex: 1;
    }

    .up-inner-hero {
        padding: 60px 0 54px;
    }

    .up-content-page,
    .up-game-stage {
        padding: 54px 0 64px;
    }

    .up-content-block {
        padding: 24px 20px;
    }

    .up-game-shell {
        padding: 12px;
        border-radius: 20px;
    }

    .up-game-canvas {
        border-radius: 14px;
    }
}
