:root {
    --accent: #0FAE63;
    --accent2: #13c372;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    overscroll-behavior: none;
}

#scrollWrap{
  position: static;
  overflow: visible;
  transform: none;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  #scrollWrap{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    will-change: transform;
  }
}


.scroll-wrap {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-wrap {
        transform: none !important;
    }
}

.noise::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    opacity: .18;
    pointer-events: none;
}

.reveal {
    opacity: 0;
    transform: translateY(22px) scale(.985);
    filter: blur(6px);
    transition:
        opacity 1.05s cubic-bezier(.16, 1, .3, 1),
        transform 1.05s cubic-bezier(.16, 1, .3, 1),
        filter 1.05s cubic-bezier(.16, 1, .3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
}

.btn-framer {
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, .35) inset,
        0 12px 34px rgba(0, 0, 0, .45);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition:
        transform .45s cubic-bezier(.16, 1, .3, 1),
        box-shadow .45s cubic-bezier(.16, 1, .3, 1),
        background-color .25s ease;
}

.btn-framer::before {
    content: "";
    position: absolute;
    inset: -45% -35%;
    opacity: .65;
    pointer-events: none;
    transition: opacity .45s cubic-bezier(.16, 1, .3, 1);
}

.btn-framer:hover {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .22) inset,
        0 22px 70px rgba(15, 174, 99, .32);
    transform: translateY(-2px);
}

.btn-framer:hover::before {
    opacity: .9;
}

.stat-box {
    position: relative;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, .35) inset,
        0 18px 60px rgba(0, 0, 0, .55);
    transition:
        transform .6s cubic-bezier(.16, 1, .3, 1),
        box-shadow .6s cubic-bezier(.16, 1, .3, 1),
        border-color .35s ease;
    overflow: hidden;
}

.stat-box::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 25% 15%, rgba(15, 174, 99, .26), transparent 55%);
    opacity: .55;
    pointer-events: none;
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 174, 99, .45);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .14) inset,
        0 28px 90px rgba(15, 174, 99, .14),
        0 30px 90px rgba(0, 0, 0, .55);
}

.card-glow {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .10) inset,
        0 24px 70px rgba(0, 0, 0, .55);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marqueeReverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.marquee-track {
    width: max-content;
    display: flex;
    gap: 18px;
    will-change: transform;
    animation: marquee 94s linear infinite;
}

.marquee-track.reverse {
    animation: marqueeReverse 98s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.bottom-blur {
    position: fixed;
    inset: auto 0 0 0;
    height: min(20vh, 200px);
    pointer-events: none;
    z-index: 80;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.20) 35%,
            rgba(0, 0, 0, 0.00) 100%);
    -webkit-mask-image: linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, .85) 22%,
            rgba(0, 0, 0, .25) 60%,
            rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, .85) 22%,
            rgba(0, 0, 0, .25) 60%,
            rgba(0, 0, 0, 0) 100%);
}

.bottom-blur::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 50% 110%, rgba(255, 255, 255, 0), transparent 65%);
    opacity: .95;
}

.game-card {
    transition:
        transform .75s cubic-bezier(.16, 1, .3, 1),
        box-shadow .75s cubic-bezier(.16, 1, .3, 1),
        border-color .4s ease;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 174, 99, .45);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .10) inset,
        0 28px 90px rgba(15, 174, 99, .10),
        0 24px 70px rgba(0, 0, 0, .60);
}

@keyframes btnShimmer {
    0% {
        transform: translateX(-160%) skewX(-18deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateX(260%) skewX(-18deg);
        opacity: 0;
    }
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: 9999px;
    border: 1px solid rgba(15, 174, 99, .38);
    color: rgba(255, 255, 255, .92);
    background:
        radial-gradient(120% 140% at 20% 20%, rgba(255, 255, 255, .10), transparent 55%),
        linear-gradient(180deg, rgba(15, 174, 99, .18), rgba(15, 174, 99, .08));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, .45) inset,
        0 10px 30px rgba(0, 0, 0, .50);
    transition:
        transform .55s cubic-bezier(.16, 1, .3, 1),
        box-shadow .55s cubic-bezier(.16, 1, .3, 1),
        border-color .35s ease,
        background .35s ease;
    overflow: hidden;
    transform: translateZ(0);
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 120% at 30% 0%, rgba(255, 255, 255, .14), transparent 55%);
    opacity: .75;
    pointer-events: none;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -40%;
    width: 38%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
    filter: blur(.3px);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-160%) skewX(-18deg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 174, 99, .55);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .10) inset,
        0 22px 70px rgba(15, 174, 99, .20),
        0 18px 55px rgba(0, 0, 0, .55);
    background:
        radial-gradient(120% 140% at 20% 20%, rgba(255, 255, 255, .12), transparent 55%),
        linear-gradient(180deg, rgba(15, 174, 99, .24), rgba(15, 174, 99, .10));
}

.btn-primary:hover::after {
    animation: btnShimmer .95s cubic-bezier(.16, 1, .3, 1);
}

.btn-primary.sm {
    padding: .55rem 1.05rem;
    font-size: .75rem;
    letter-spacing: .08em;
    font-weight: 700;
}

.btn-primary.md {
    padding: .85rem 1.45rem;
    font-size: .85rem;
    letter-spacing: .06em;
    font-weight: 800;
}

.btn-primary.lg {
    padding: 1rem 1.8rem;
    font-size: .9rem; 
    letter-spacing: .06em;
    font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {

    .btn-primary,
    .btn-primary:hover {
        transform: none;
    }

    .btn-primary:hover::after {
        animation: none;
    }
}

img {
    user-select: none;
    -webkit-user-drag: none;
}

::selection {
    background-color: black;
}

.grecaptcha-badge { 
    visibility: hidden !important;
}