<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="image" imageSrcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=384&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75 2x"/><link rel="stylesheet" href="/_next/static/chunks/03471d1d36fb0e55.css" data-precedence="next"/><link rel="stylesheet" href="/_next/static/chunks/5dddd6ef38713c95.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/f57ce5d262f40de8.js"/><script src="/_next/static/chunks/580f66e19e950fdf.js" async="" type="890b2dc2617abaa612190437-text/javascript"></script><script src="/_next/static/chunks/09f83317d235cb51.js" async="" type="890b2dc2617abaa612190437-text/javascript"></script><script src="/_next/static/chunks/0bc06e1bdbdfa6dc.js" async="" type="890b2dc2617abaa612190437-text/javascript"></script><script src="/_next/static/chunks/f480b35e1e30107f.js" async="" type="890b2dc2617abaa612190437-text/javascript"></script><script src="/_next/static/chunks/turbopack-46fc940b4ee45150.js" async="" type="890b2dc2617abaa612190437-text/javascript"></script><script src="/_next/static/chunks/28051524027dafd7.js" async="" type="890b2dc2617abaa612190437-text/javascript"></script><script src="/_next/static/chunks/031f805928706ee1.js" async="" type="890b2dc2617abaa612190437-text/javascript"></script><script src="/_next/static/chunks/5280d65cbeb99e2c.js" async="" type="890b2dc2617abaa612190437-text/javascript"></script><script src="/_next/static/chunks/f7946854ed5d62e5.js" async="" type="890b2dc2617abaa612190437-text/javascript"></script><script src="/_next/static/chunks/7faf4bdd838f14de.js" async="" type="890b2dc2617abaa612190437-text/javascript"></script><script src="/_next/static/chunks/e328587926d47fe9.js" async="" type="890b2dc2617abaa612190437-text/javascript"></script><script src="/_next/static/chunks/7590de58962ae34d.js" async="" type="890b2dc2617abaa612190437-text/javascript"></script><meta name="next-size-adjust" content=""/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule="" type="890b2dc2617abaa612190437-text/javascript"></script></head><body class="antialiased rubik_fa1c0877-module__4N4qbW__variable rubikmedium_14d20564-module__yIYhia__variable komplekt_784b22ec-module__skU-Hq__variable komplektbold_82d04ae8-module__7mU_wG__variable"><div hidden=""><!--$?--><template id="B:0"></template><!--/$--></div><style>
:root {
  --bprogress-color: #2050FA;
  --bprogress-height: 2px;
  --bprogress-spinner-size: 18px;
  --bprogress-spinner-animation-duration: 400ms;
  --bprogress-spinner-border-size: 2px;
  --bprogress-box-shadow: 0 0 10px #2050FA, 0 0 5px #2050FA;
  --bprogress-z-index: 99999;
  --bprogress-spinner-top: 15px;
  --bprogress-spinner-bottom: auto;
  --bprogress-spinner-right: 15px;
  --bprogress-spinner-left: auto;
}

.bprogress {
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: var(--bprogress-z-index);
}

.bprogress .bar {
  background: var(--bprogress-color);
  position: fixed;
  z-index: var(--bprogress-z-index);
  top: 0;
  left: 0;
  width: 100%;
  height: var(--bprogress-height);
}

/* Fancy blur effect */
.bprogress .peg {
  display: block;
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: var(--bprogress-box-shadow);
  opacity: 1.0;
  transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
.bprogress .spinner {
  display: block;
  position: fixed;
  z-index: var(--bprogress-z-index);
  top: var(--bprogress-spinner-top);
  bottom: var(--bprogress-spinner-bottom);
  right: var(--bprogress-spinner-right);
  left: var(--bprogress-spinner-left);
}

.bprogress .spinner-icon {
  width: var(--bprogress-spinner-size);
  height: var(--bprogress-spinner-size);
  box-sizing: border-box;
  border: solid var(--bprogress-spinner-border-size) transparent;
  border-top-color: var(--bprogress-color);
  border-left-color: var(--bprogress-color);
  border-radius: 50%;
  -webkit-animation: bprogress-spinner var(--bprogress-spinner-animation-duration) linear infinite;
  animation: bprogress-spinner var(--bprogress-spinner-animation-duration) linear infinite;
}

.bprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.bprogress-custom-parent .bprogress .spinner,
.bprogress-custom-parent .bprogress .bar {
  position: absolute;
}

.bprogress .indeterminate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--bprogress-height);
  overflow: hidden;
}

.bprogress .indeterminate .inc,
.bprogress .indeterminate .dec {
  position: absolute;
  top: 0;
  height: 100%;
  background-color: var(--bprogress-color);
}

.bprogress .indeterminate .inc {
  animation: bprogress-indeterminate-increase 2s infinite;
}

.bprogress .indeterminate .dec {
  animation: bprogress-indeterminate-decrease 2s 0.5s infinite;
}

@-webkit-keyframes bprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes bprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes bprogress-indeterminate-increase {
  from { left: -5%; width: 5%; }
  to { left: 130%; width: 100%; }
}

@keyframes bprogress-indeterminate-decrease {
  from { left: -80%; width: 80%; }
  to { left: 110%; width: 10%; }
}
</style><!--$--><!--/$--><section class="Toastify" aria-live="polite" aria-atomic="false" aria-relevant="additions text" aria-label="Notifications Alt+T"></section><div class="w-screen max-w-screen min-h-screen overflow-hidden"><div class="w-full"><div class="flex flex-col w-full"><section class="panel min-w-full min-h-screen h-fit relative will-change-transform"><img alt="background" loading="lazy" decoding="async" data-nimg="fill" class="blur-md grayscale w-full h-full object-cover object-center absolute px-[1.25rem] pt-[1.25rem] rounded-t-[2.5rem]" style="position:absolute;height:100%;width:100%;left:0;top:0;right:0;bottom:0;color:transparent" sizes="100vw" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75 640w, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75 750w, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=828&amp;q=75 828w, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75 1080w, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1200&amp;q=75 1200w, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1920&amp;q=75 1920w, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=2048&amp;q=75 2048w, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=3840&amp;q=75 3840w" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=3840&amp;q=75"/><img alt="background_bottom_left" width="326" height="250" decoding="async" data-nimg="1" class="blur-md grayscale absolute bottom-[6.25rem] left-0 w-[40%] md:w-auto h-auto" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=384&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75"/><img alt="background_bottom_right" loading="lazy" width="281" height="158" decoding="async" data-nimg="1" class="blur-md grayscale absolute bottom-[6.25rem] right-0 w-[40%] md:w-auto h-auto" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=384&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75"/><img alt="background_bottom_right" loading="lazy" width="276" height="65" decoding="async" data-nimg="1" class="blur-md grayscale absolute left-12 top-12 w-[14rem] h-auto hidden sm:block" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=384&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75"/><img alt="background_bottom_right" loading="lazy" width="282" height="282" decoding="async" data-nimg="1" class="blur-md grayscale absolute right-[8%] top-[22%] w-0 sm:w-[14rem] md:w-[16rem] lg:w-[18rem] h-auto z-[2] rotate-[-42.25deg]" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=384&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75"/><div class="flex flex-col md:flex-row absolute bottom-0 w-full h-[6.25rem] bg-white border-none"><div class="font-rubik font-normal text-[1.25rem] md:text-[2rem] py-2 md:py-0 text-center flex justify-center items-center"><span class="whitespace-nowrap px-[2.5rem]">Trusted By</span></div><div class="w-full h-full flex items-center transition-all duration-500"></div></div><div class="absolute top-12 right-12 flex flex-row gap-3"><div class="w-[3.75rem] h-auto aspect-square border-white border-2 rounded-full flex items-center justify-center hover:cursor-pointer hover:scale-110 transition-all duration-500"><img alt="social_x" loading="lazy" width="24" height="24" decoding="async" data-nimg="1" class="blur-md grayscale object-contain" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=32&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=48&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=48&amp;q=75"/></div><div class="w-[3.75rem] h-auto aspect-square border-white border-2 rounded-full flex items-center justify-center hover:cursor-pointer hover:scale-110 transition-all duration-500"><img alt="social_x" loading="lazy" width="24" height="24" decoding="async" data-nimg="1" class="blur-md grayscale object-contain" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=32&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=48&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=48&amp;q=75"/></div></div><div class="absolute left-1/2 top-[15%] md:top-1/2 w-full uppercase flex flex-col justify-center items-center transform -translate-x-1/2 md:-translate-y-1/2 text-white font-komplektBold font-bold text-[2.5rem] md:text-[4rem] lg:text-[5rem] xl:text-[6.5625rem] cursor-default"><p class="whitespace-pre-line sm:whitespace-nowrap text-center">Focused Build</p><div class="flex flex-col lg:flex-row gap-3 items-center"><p>Positive Impact</p><img alt="onchain_logo" loading="lazy" width="547" height="123" decoding="async" data-nimg="1" class="blur-md grayscale object-contain w-auto h-[4rem] md:h-[5rem] lg:h-[5rem] xl:h-[7.5rem]" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1200&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1200&amp;q=75"/></div><button data-slot="button" class="inline-flex items-center justify-center gap-2 whitespace-nowrap disabled:pointer-events-none disabled:opacity-50 [&amp;_svg]:pointer-events-none [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 shrink-0 [&amp;_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive shadow-xs hover:bg-primary/90 py-2 has-[&gt;svg]:px-3 mt-[2rem] md:mt-[3rem] lg:mt-[5rem] h-[4rem] md:h-[3.375rem] uppercase rounded-full bg-btn-claim text-text-primary font-rubik font-bold text-[1.125rem] px-12 md:px-8 hover:cursor-pointer hover:scale-105 transition-all duration-200"><span class="">Enter portal</span></button></div><div class="flex flex-row gap-2 items-center absolute bottom-[14%] left-1/2 transform -translate-x-1/2 cursor-default"><img alt="base_logo" loading="lazy" width="32" height="32" decoding="async" data-nimg="1" class="blur-md grayscale" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=32&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=64&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=64&amp;q=75"/><span class="font-rubik font-medium text-base text-text-primary">Built on Base</span></div></section><section class="panel min-w-full min-h-screen h-fit relative z-[1]"><img alt="background_bottom_right" loading="lazy" width="435" height="435" decoding="async" data-nimg="1" class="blur-md grayscale absolute right-0 md:right-[12%] top-[0%] w-[6rem] mb:w-[10rem] sm:w-[12rem] md:w-[14rem] lg:w-[18rem] xl:w-[27rem] h-auto z-[1]" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75"/><div class="min-h-fit w-full md:w-[calc(100dvw_-14rem)] bg-brand-600 rounded-[2.5rem] relative mt-[12%] z-[2] mx-0 md:mx-[7rem] px-0 md:px-[1rem] lg:px-[2.5rem] pt-[5rem] pb-0 md:pb-[2.5rem] flex flex-col items-center overflow-hidden md:overflow-auto"><div class="flex flex-col items-center gap-2 text-center"><span class="font-komplektBold font-bold text-2xl text-light-cyan uppercase">Our Vision</span><div class="flex flex-col items-center font-komplektBold font-bold text-[3.75rem]/14 text-white uppercase mb-2"><p>BUILD THE INTERNET GAMEAI MARKET</p></div><span class="font-rubik font-normal text-2xl text-white opacity-70">We&#x27;re building the interconnected layer on Base where agents, gamers, builders, creators converge onchain.</span></div><div class="relative mt-6 md:mt-12 lg:mt-30"><img alt="background_bottom_right" loading="lazy" width="1609" height="920" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-auto" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1920&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=3840&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=3840&amp;q=75"/></div></div></section><section class="minikit-container mt-[5rem] min-h-fit max-w-[96dvw] md:w-[calc(100dvw_-14rem)] mx-auto bg-[#F3F3F3] border-[3px] border-[#00000008] rounded-[3.75rem] py-[2.75rem] md:py-[3.75rem] px-[1rem] md:px-[2.75rem]"><div class="flex flex-col items-center minikit-header"><img alt="logo_minikit" loading="lazy" width="467" height="117" decoding="async" data-nimg="1" class="blur-md grayscale w-[14rem] h-[5rem] md:w-[29.1875rem] md:h-[7.3125rem] " style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75"/></div><div class="minikit-header flex flex-col items-center my-[3rem] md:my-[4.1875rem] text-[#0051FF] font-bold font-komplektBold text-[2rem] md:text-[3.75rem] text-center leading-tight"><h1>Build. Publish. Grow. UptopiaKit</h1><h1>makes it simple fully onchain.</h1></div><div class="grid grid-cols-1 md:grid-cols-2 gap-[1rem] md:gap-[3.5625rem] list"><div class="feature-card bg-[#0051FF] rounded-[2.25rem] px-[2rem] md:px-[3.375rem] h-fit md:h-[534px] text-white py-[2rem] md:pb-0 md:pt-[4.9375rem] transition-transform duration-300 will-change-transform hover:scale-[1.02]"><div class="flex items-center gap-[1.5rem] justify-between"><img alt="icon" loading="lazy" width="55" height="55" decoding="async" data-nimg="1" class="blur-md grayscale w-[40px] h-[40px] md:w-[55px] md:h-[55px]" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=64&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=128&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=128&amp;q=75"/><div class="flex flex-col text-right"><p class="font-bold text-[1rem] md:text-[1.5625rem]">1 - 2 days</p><p class="text-[1rem] md:text-[1.125rem] font-normal">SHIP FAST</p></div></div><div class="mt-[2rem] md:mt-[4.8125rem]"><p class="font-bold text-[2rem] md:text-[2.1875rem]">Mini Apps Publishing</p><p class="font-normal text-[1.25rem] md:text-[1.5rem] mt-2">A comprehensive SDK solution. Bring your apps on-chain instantly with our simplified interface, no more pages of documentation. Just fill in the required parameters, and we’ll handle the rest.</p></div></div><div class="feature-card bg-[#0051FF] rounded-[2.25rem] px-[2rem] md:px-[3.375rem] h-fit md:h-[534px] text-white py-[2rem] md:pb-0 md:pt-[4.9375rem] transition-transform duration-300 will-change-transform hover:scale-[1.02]"><div class="flex items-center gap-[1.5rem] justify-between"><img alt="icon" loading="lazy" width="55" height="55" decoding="async" data-nimg="1" class="blur-md grayscale w-[40px] h-[40px] md:w-[55px] md:h-[55px]" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=64&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=128&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=128&amp;q=75"/><div class="flex flex-col text-right"><p class="font-bold text-[1rem] md:text-[1.5625rem]">70%+</p><p class="text-[1rem] md:text-[1.125rem] font-normal">NET RETURN</p></div></div><div class="mt-[2rem] md:mt-[4.8125rem]"><p class="font-bold text-[2rem] md:text-[2.1875rem]">Payment Onchain</p><p class="font-normal text-[1.25rem] md:text-[1.5rem] mt-2">Supports the X402 standard and seamless token transfers. Transparent revenue model and seamless cash flow. Providing the most optimized methods monetization on Base.</p></div></div><div class="feature-card bg-[#0051FF] rounded-[2.25rem] px-[2rem] md:px-[3.375rem] h-fit md:h-[534px] text-white py-[2rem] md:pb-0 md:pt-[4.9375rem] transition-transform duration-300 will-change-transform hover:scale-[1.02]"><div class="flex items-center gap-[1.5rem] justify-between"><img alt="icon" loading="lazy" width="55" height="55" decoding="async" data-nimg="1" class="blur-md grayscale w-[40px] h-[40px] md:w-[55px] md:h-[55px]" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=64&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=128&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=128&amp;q=75"/><div class="flex flex-col text-right"><p class="font-bold text-[1rem] md:text-[1.5625rem]">1 - 2 days</p><p class="text-[1rem] md:text-[1.125rem] font-normal">SHIP FAST</p></div></div><div class="mt-[2rem] md:mt-[4.8125rem]"><p class="font-bold text-[2rem] md:text-[2.1875rem]">Easy building &amp; Testing</p><p class="font-normal text-[1.25rem] md:text-[1.5rem] mt-2">Building should be convenient and fun, we provide Built-in testing environment. Get your whole team on the test and finessing your app before publishing.</p></div></div><div class="feature-card bg-[#0051FF] rounded-[2.25rem] px-[2rem] md:px-[3.375rem] h-fit md:h-[534px] text-white py-[2rem] md:pb-0 md:pt-[4.9375rem] transition-transform duration-300 will-change-transform hover:scale-[1.02]"><div class="flex items-center gap-[1.5rem] justify-between"><img alt="icon" loading="lazy" width="55" height="55" decoding="async" data-nimg="1" class="blur-md grayscale w-[40px] h-[40px] md:w-[55px] md:h-[55px]" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=64&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=128&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=128&amp;q=75"/><div class="flex flex-col text-right"><p class="font-bold text-[1rem] md:text-[1.5625rem]">70%+</p><p class="text-[1rem] md:text-[1.125rem] font-normal">NET RETURN</p></div></div><div class="mt-[2rem] md:mt-[4.8125rem]"><p class="font-bold text-[2rem] md:text-[2.1875rem]">Uptopia Care-package</p><p class="font-normal text-[1.25rem] md:text-[1.5rem] mt-2">Access Uptopia Network of 50+ titles, share an active user base and get your games featured on our Game Hub infra. Quality projects also receive Marketing supports and Launch event and more.</p></div></div></div></section><section class="panel min-w-full min-h-screen h-fit relative"><div class="bg-author absolute top-[5%] left-[70%] w-[20%] h-auto rounded-full aspect-square z-[-1] transition-all duration-2000"></div><div class="hidden sm:block absolute left-[75%] top-0 z-[3] transition-all duration-2000"><img alt="background_bottom_right" loading="lazy" width="368" height="368" decoding="async" data-nimg="1" class="blur-md grayscale w-[16rem] h-auto rotate-[-140deg]" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=384&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75"/></div><div class="flex flex-col items-center gap-2 my-[6rem] sm:my-[12rem] md:my-[20rem] lg:my-[24rem] xl:my-[27.25rem] relative z-[2]"><div class="flex flex-col w-full sm:w-auto px-4 sm:px-auto justify-center items-center text-center"><span class="font-komplektBold font-bold text-[3.75rem] text-brand-600 uppercase">A project by</span><div class="flex flex-row gap-2 sm:gap-8 md:gap-10 justify-center items-center"><img alt="background_bottom_right" loading="lazy" width="140" height="140" decoding="async" data-nimg="1" class="blur-md grayscale w-[8.75rem] h-auto" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=384&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=384&amp;q=75"/><img alt="background_bottom_right" loading="lazy" width="38" height="38" decoding="async" data-nimg="1" class="blur-md grayscale w-[2.375rem] h-auto" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=48&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=96&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=96&amp;q=75"/><img alt="background_bottom_right" loading="lazy" width="300" height="220" decoding="async" data-nimg="1" class="blur-md grayscale w-auto h-[6.875rem]" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=384&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75"/></div><div class="w-full grid grid-cols-1 sm:grid-cols-2 xl:grid-cols-4 gap-6 mt-[4.25rem]"><div class="h-[12rem] sm:h-[18.75rem] w-full sm:w-auto aspect-auto sm:aspect-square bg-brand-600 rounded-[2.5rem] px-[1rem] py-12 sm:py-auto flex flex-col items-center justify-center text-center cursor-pointer hover:scale-[1.1] transition-all duration-300 shadow-2xl"><span class="font-komplektBold font-bold text-[4.375rem] text-white">#2</span><p class="font-rubik font-normal text-2xl text-white">Ranked in worldwide downloads</p></div><div class="h-[12rem] sm:h-[18.75rem] w-full sm:w-auto aspect-auto sm:aspect-square bg-brand-600 rounded-[2.5rem] px-[1rem] py-12 sm:py-auto flex flex-col items-center justify-center text-center cursor-pointer hover:scale-[1.1] transition-all duration-300 shadow-2xl"><span class="font-komplektBold font-bold text-[4.375rem] text-white">$2M+</span><p class="font-rubik font-normal text-2xl text-white">Monthly revenue</p></div><div class="h-[12rem] sm:h-[18.75rem] w-full sm:w-auto aspect-auto sm:aspect-square bg-brand-600 rounded-[2.5rem] px-[1rem] py-12 sm:py-auto flex flex-col items-center justify-center text-center cursor-pointer hover:scale-[1.1] transition-all duration-300 shadow-2xl"><span class="font-komplektBold font-bold text-[4.375rem] text-white">25M+</span><p class="font-rubik font-normal text-2xl text-white">Monthly downloads</p></div><div class="h-[12rem] sm:h-[18.75rem] w-full sm:w-auto aspect-auto sm:aspect-square bg-brand-600 rounded-[2.5rem] px-[1rem] py-12 sm:py-auto flex flex-col items-center justify-center text-center cursor-pointer hover:scale-[1.1] transition-all duration-300 shadow-2xl"><span class="font-komplektBold font-bold text-[4.375rem] text-white">3B+</span><p class="font-rubik font-normal text-2xl text-white">Downloads on AppStore &amp; Google Play</p></div></div></div></div></section><section class="panel w-[calc(100%_-_2.5rem)] min-h-screen h-fit relative border-none z-[2] bg-dark-blue mx-5 rounded-t-[2.5rem] overflow-hidden will-change-transform"><div class="w-full h-full bg-dark-blue flex flex-col items-center justify-start mb-0 lg:mb-[13.75rem]"><span class="font-komplektBold font-bold text-[3rem] mt-8 lg:text-[4.375rem] text-blueberry uppercase text-center">from traditional gaming</span><div class="w-full px-[1rem] lg:px-[5.75rem] pt-12 flex flex-col gap-6 "><div class="game-item w-full cursor-pointer"><div class="flex flex-row justify-between w-full group"><div class="game-item-card h-fit lg:h-[10.25rem] rounded-[1.25rem] flex flex-row justify-between px-5 py-5 skew-x-0 lg:skew-x-[-4deg] transition-all duration-2000 bg-game-card" style="width:100%"><div class="skew-0 lg:skew-x-[4deg] w-full h-full flex flex-col lg:flex-row gap-4 lg:gap-0 justify-start lg:justify-between items-start lg:items-center"><div class="flex flex-row gap-2 items-center"><div class="aspect-square rounded-4xl overflow-hidden transition-all duration-2000 w-[7.5rem] !duration-1000"><img alt="Prison Survival ( 2021)" loading="lazy" width="120" height="120" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-cover" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=128&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75"/></div><div class="flex flex-col"><span class="font-rubik font-medium text-2xl transition-all duration-2000 text-lavender !duration-1000">#1 in US &amp; 75+ countries</span><span class="font-rubik font-medium text-[1.75rem] transition-all duration-2000 text-white !duration-1000">Prison Survival ( 2021)</span></div></div><div class="w-full h-[12rem] md:h-[16rem] rounded-2xl overflow-hidden transition-all duration-1000"><img alt="Prison Survival ( 2021)" loading="lazy" width="464" height="260" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-cover" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75"/></div><div class="flex flex-col items-center transition-all duration-2000 opacity-100 max-h-[200px] !duration-1000"><span class="font-rubik font-medium text-[1rem] xl:text-[1.125rem] text-white">Installs</span><span class="font-komplektBold font-bold text-4xl xl:text-6xl text-white">50M+</span></div></div></div></div></div><div class="game-item w-full cursor-pointer"><div class="flex flex-row justify-between w-full group"><div class="game-item-card h-fit lg:h-[10.25rem] rounded-[1.25rem] flex flex-row justify-between px-5 py-5 skew-x-0 lg:skew-x-[-4deg] transition-all duration-2000 bg-space-cadet" style="width:100%"><div class="skew-0 lg:skew-x-[4deg] w-full h-full flex flex-col lg:flex-row gap-4 lg:gap-0 justify-start lg:justify-between items-start lg:items-center"><div class="flex flex-row gap-2 items-center"><div class="aspect-square rounded-4xl overflow-hidden transition-all duration-2000 w-[5.625rem] !duration-1000"><img alt="Red Imposter (2020)" loading="lazy" width="120" height="120" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-cover grayscale-100" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=128&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75"/></div><div class="flex flex-col"><span class="font-rubik font-medium text-2xl transition-all duration-2000 text-light-cyan !duration-1000">#1 in US &amp; 20+ countries</span><span class="font-rubik font-medium text-[1.75rem] transition-all duration-2000 text-crayola !duration-1000">Red Imposter (2020)</span></div></div><div class="w-full h-[12rem] md:h-[16rem] rounded-2xl overflow-hidden transition-all duration-1000 !h-0"><img alt="Red Imposter (2020)" loading="lazy" width="464" height="260" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-cover" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75"/></div><div class="flex flex-col items-center transition-all duration-2000 opacity-0 max-h-0 overflow-hidden !duration-1000"><span class="font-rubik font-medium text-[1rem] xl:text-[1.125rem] text-white">Installs</span><span class="font-komplektBold font-bold text-4xl xl:text-6xl text-white">50M+</span></div></div></div></div></div><div class="game-item w-full cursor-pointer"><div class="flex flex-row justify-between w-full group"><div class="game-item-card h-fit lg:h-[10.25rem] rounded-[1.25rem] flex flex-row justify-between px-5 py-5 skew-x-0 lg:skew-x-[-4deg] transition-all duration-2000 bg-space-cadet" style="width:100%"><div class="skew-0 lg:skew-x-[4deg] w-full h-full flex flex-col lg:flex-row gap-4 lg:gap-0 justify-start lg:justify-between items-start lg:items-center"><div class="flex flex-row gap-2 items-center"><div class="aspect-square rounded-4xl overflow-hidden transition-all duration-2000 w-[5.625rem] !duration-1000"><img alt="Galaxy Attack: Alien Shooting (2016)" loading="lazy" width="120" height="120" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-cover grayscale-100" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=128&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75"/></div><div class="flex flex-col"><span class="font-rubik font-medium text-2xl transition-all duration-2000 text-light-cyan !duration-1000"></span><span class="font-rubik font-medium text-[1.75rem] transition-all duration-2000 text-crayola !duration-1000">Galaxy Attack: Alien Shooting (2016)</span></div></div><div class="w-full h-[12rem] md:h-[16rem] rounded-2xl overflow-hidden transition-all duration-1000 !h-0"><img alt="Galaxy Attack: Alien Shooting (2016)" loading="lazy" width="464" height="260" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-cover" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75"/></div><div class="flex flex-col items-center transition-all duration-2000 opacity-0 max-h-0 overflow-hidden !duration-1000"><span class="font-rubik font-medium text-[1rem] xl:text-[1.125rem] text-white">Installs</span><span class="font-komplektBold font-bold text-4xl xl:text-6xl text-white">200M+</span></div></div></div></div></div><div class="game-item w-full cursor-pointer"><div class="flex flex-row justify-between w-full group"><div class="game-item-card h-fit lg:h-[10.25rem] rounded-[1.25rem] flex flex-row justify-between px-5 py-5 skew-x-0 lg:skew-x-[-4deg] transition-all duration-2000 bg-space-cadet" style="width:100%"><div class="skew-0 lg:skew-x-[4deg] w-full h-full flex flex-col lg:flex-row gap-4 lg:gap-0 justify-start lg:justify-between items-start lg:items-center"><div class="flex flex-row gap-2 items-center"><div class="aspect-square rounded-4xl overflow-hidden transition-all duration-2000 w-[5.625rem] !duration-1000"><img alt="Wood nuts &amp; bolts Puzzle (2023)" loading="lazy" width="120" height="120" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-cover grayscale-100" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=128&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75"/></div><div class="flex flex-col"><span class="font-rubik font-medium text-2xl transition-all duration-2000 text-light-cyan !duration-1000"></span><span class="font-rubik font-medium text-[1.75rem] transition-all duration-2000 text-crayola !duration-1000">Wood nuts &amp; bolts Puzzle (2023)</span></div></div><div class="w-full h-[12rem] md:h-[16rem] rounded-2xl overflow-hidden transition-all duration-1000 !h-0"><img alt="Wood nuts &amp; bolts Puzzle (2023)" loading="lazy" width="464" height="260" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-cover" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75"/></div><div class="flex flex-col items-center transition-all duration-2000 opacity-0 max-h-0 overflow-hidden !duration-1000"><span class="font-rubik font-medium text-[1rem] xl:text-[1.125rem] text-white">Installs</span><span class="font-komplektBold font-bold text-4xl xl:text-6xl text-white">200M+</span></div></div></div></div></div><div class="game-item w-full cursor-pointer"><div class="flex flex-row justify-between w-full group"><div class="game-item-card h-fit lg:h-[10.25rem] rounded-[1.25rem] flex flex-row justify-between px-5 py-5 skew-x-0 lg:skew-x-[-4deg] transition-all duration-2000 bg-space-cadet" style="width:100%"><div class="skew-0 lg:skew-x-[4deg] w-full h-full flex flex-col lg:flex-row gap-4 lg:gap-0 justify-start lg:justify-between items-start lg:items-center"><div class="flex flex-row gap-2 items-center"><div class="aspect-square rounded-4xl overflow-hidden transition-all duration-2000 w-[5.625rem] !duration-1000"><img alt="Car Stunts 3d ( 2019)" loading="lazy" width="120" height="120" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-cover grayscale-100" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=128&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75"/></div><div class="flex flex-col"><span class="font-rubik font-medium text-2xl transition-all duration-2000 text-light-cyan !duration-1000"></span><span class="font-rubik font-medium text-[1.75rem] transition-all duration-2000 text-crayola !duration-1000">Car Stunts 3d ( 2019)</span></div></div><div class="w-full h-[12rem] md:h-[16rem] rounded-2xl overflow-hidden transition-all duration-1000 !h-0"><img alt="Car Stunts 3d ( 2019)" loading="lazy" width="464" height="260" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-cover" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=640&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=1080&amp;q=75"/></div><div class="flex flex-col items-center transition-all duration-2000 opacity-0 max-h-0 overflow-hidden !duration-1000"><span class="font-rubik font-medium text-[1rem] xl:text-[1.125rem] text-white">Installs</span><span class="font-komplektBold font-bold text-4xl xl:text-6xl text-white">200M+</span></div></div></div></div></div></div></div></section><section class="panel min-w-full min-h-screen h-fit relative will-change-transform"><div class="w-[calc(100%_-_2.5rem)] h-full mx-5 rounded-b-[2.5rem] bg-dark-blue flex flex-col items-center justify-center border-none pt-8"><span class="font-komplektBold font-bold text-[3rem] lg:text-[4.375rem] text-blueberry uppercase text-center">To flagship web3 titles</span><div class="w-full px-4 lg:px-[5.75rem] pb-[3.875rem] flex flex-col gap-3 relative mt-10"><div><div class="h-[8.125rem] transition-all duration-2000 !h-fit lg:!h-[40.625rem]"><div class="game-not-active absolute w-[calc(100%_-_2rem)] lg:w-[calc(100%_-_11.5rem)] h-[8.125rem] bg-space-cadet rounded-[1.25rem] skew-x-[-6deg] px-12 transition-all duration-2000 opacity-100 !opacity-0"><div class="w-full h-full flex flex-row justify-start gap-3 items-center transition-all duration-2000 translate-x-[50%]"><div class="w-[5.625rem] h-[5.625rem] aspect-square skew-x-[6deg]"><img alt="Legend of Base" loading="lazy" width="90" height="90" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-contain" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=96&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75"/></div><span class="font-rubik font-medium text-2xl text-crayola skew-x-[6deg]">Legend of Base</span></div></div><div class="game-active relative opacity-0 w-full h-full min-h-[40rem] skew-x-0 lg:skew-x-[-6deg] rounded-[1.25rem] overflow-hidden transition-all duration-2000 !opacity-100"><div class="h-full w-full absolute inset-0 flex items-center z-[1] opacity-100 transition-all duration-2000"><img alt="Legend of Base" loading="lazy" width="2048" height="1260" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-cover" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=2048&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=3840&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=3840&amp;q=75"/></div><div class="absolute inset-0 opacity-100 overlay-web3-game z-[2]"></div><div class="absolute z-[3] w-full h-full flex flex-col-reverse lg:flex-row items-center skew-x-0 lg:skew-x-[6deg] px-1 mb:px-[1rem] md:px-[4rem] py-6 lg:py-0 lg:pr-[3rem] xl:pr-[4rem] 2xl:pr-[4.6875rem]"><div class="relative flex flex-col w-full lg:w-[50%] pr-12 opacity-100 transition-all duration-2000"><div class="w-[10rem] lg:w-[21.375rem] h-auto aspect-square"><img alt="Legend of Base" loading="lazy" width="342" height="342" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-contain" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=384&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75"/></div><div class="flex flex-col font-rubik opacity-100 text-white transition-all duration-2000"><span class="font-medium text-[1.25rem] lg:text-4xl truncate">Legend of Base</span><p class="font-normal text-[1rem] lg:text-2xl">Onchain roguelike survival RPG where gamers complete quests, unlock legends, collect items, and earn rewards. Agent Realm assists casual and pro players with autonomous agent support.</p></div></div><div class="relative block w-full md:w-[90%] lg:w-[50%] h-[120%] lg:h-[60%] xl:h-[80%] transition-all duration-2000"><div class="w-[9rem] mb:w-[11rem] sm:w-[14rem] xl:w-[16rem] 2xl:w-[18.75rem] h-auto aspect-square rounded-[62.4375rem] bg-white/15 shadow-[inset_0px_0px_15px_0px_#FFF] backdrop-blur-[3.125rem] flex flex-col justify-center items-center text-white absolute left-0 top-0 lg:top-auto lg:bottom-0"><span class="font-komplektBold font-bold text-[2rem] md:text-4xl lg:text-6xl text-center">10K+</span><span class="font-rubik font-normal text-[0.75rem] md:text-[1rem] lg:text-[1.25rem] whitespace-pre-line text-center">User</span></div><div class="w-[9rem] mb:w-[11rem] sm:w-[14rem] xl:w-[16rem] 2xl:w-[18.75rem] h-auto aspect-square rounded-[62.4375rem] bg-white/15 shadow-[inset_0px_0px_15px_0px_#FFF] backdrop-blur-[3.125rem] flex flex-col justify-center items-center text-white absolute left-1/2 bottom-0 lg:bottom-auto lg:top-0 translate-x-[-50%]"><span class="font-komplektBold font-bold text-[2rem] md:text-4xl lg:text-6xl text-center">Top 15 Miniapp</span><span class="font-rubik font-normal text-[0.75rem] md:text-[1rem] lg:text-[1.25rem] whitespace-pre-line text-center">on Base</span></div><div class="w-[9rem] mb:w-[11rem] sm:w-[14rem] xl:w-[16rem] 2xl:w-[18.75rem] h-auto aspect-square rounded-[62.4375rem] bg-white/15 shadow-[inset_0px_0px_15px_0px_#FFF] backdrop-blur-[3.125rem] flex flex-col justify-center items-center text-white absolute right-0 top-0 lg:top-auto lg:bottom-0"><span class="font-komplektBold font-bold text-[2rem] md:text-4xl lg:text-6xl text-center">10K</span><span class="font-rubik font-normal text-[0.75rem] md:text-[1rem] lg:text-[1.25rem] whitespace-pre-line text-center">Monthly txns on Base</span></div></div></div></div></div></div><div><div class="h-[8.125rem] transition-all duration-2000"><div class="game-not-active absolute w-[calc(100%_-_2rem)] lg:w-[calc(100%_-_11.5rem)] h-[8.125rem] bg-space-cadet rounded-[1.25rem] skew-x-[-6deg] px-12 transition-all duration-2000 opacity-100"><div class="w-full h-full flex flex-row justify-start gap-3 items-center transition-all duration-2000"><div class="w-[5.625rem] h-[5.625rem] aspect-square skew-x-[6deg]"><img alt="Harvest Heist (2024)" loading="lazy" width="90" height="90" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-contain grayscale-100" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=96&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75"/></div><span class="font-rubik font-medium text-2xl text-crayola skew-x-[6deg]">Harvest Heist (2024)</span></div></div><div class="game-active relative opacity-0 w-full h-full min-h-[40rem] skew-x-0 lg:skew-x-[-6deg] rounded-[1.25rem] overflow-hidden transition-all duration-2000"><div class="h-full w-full absolute inset-0 flex items-center z-[1] opacity-100 transition-all duration-2000 !opacity-0"><img alt="Harvest Heist (2024)" loading="lazy" width="2048" height="1260" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-cover" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=2048&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=3840&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=3840&amp;q=75"/></div><div class="absolute inset-0 opacity-100 overlay-web3-game z-[2] !opacity-0"></div><div class="absolute z-[3] w-full h-full flex flex-col-reverse lg:flex-row items-center skew-x-0 lg:skew-x-[6deg] px-1 mb:px-[1rem] md:px-[4rem] py-6 lg:py-0 lg:pr-[3rem] xl:pr-[4rem] 2xl:pr-[4.6875rem]"><div class="relative flex flex-col w-full lg:w-[50%] pr-12 opacity-100 transition-all duration-2000 !opacity-0"><div class="w-[10rem] lg:w-[21.375rem] h-auto aspect-square"><img alt="Harvest Heist (2024)" loading="lazy" width="342" height="342" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-contain" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=384&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75"/></div><div class="flex flex-col font-rubik opacity-100 text-white transition-all duration-2000 opacity-0"><span class="font-medium text-[1.25rem] lg:text-4xl truncate">Harvest Heist (2024)</span><p class="font-normal text-[1rem] lg:text-2xl">Free-to-play farming where players join minigames &amp; collect crops to compete in global leaderboards</p></div></div><div class="relative block w-full md:w-[90%] lg:w-[50%] h-[120%] lg:h-[60%] xl:h-[80%] transition-all duration-2000 translate-x-[-100%]"><div class="w-[9rem] mb:w-[11rem] sm:w-[14rem] xl:w-[16rem] 2xl:w-[18.75rem] h-auto aspect-square rounded-[62.4375rem] bg-white/15 shadow-[inset_0px_0px_15px_0px_#FFF] backdrop-blur-[3.125rem] flex flex-col justify-center items-center text-white absolute left-0 top-0 lg:top-auto lg:bottom-0"><span class="font-komplektBold font-bold text-[2rem] md:text-4xl lg:text-6xl text-center">20K+</span><span class="font-rubik font-normal text-[0.75rem] md:text-[1rem] lg:text-[1.25rem] whitespace-pre-line text-center">DAU
(during peak)</span></div><div class="w-[9rem] mb:w-[11rem] sm:w-[14rem] xl:w-[16rem] 2xl:w-[18.75rem] h-auto aspect-square rounded-[62.4375rem] bg-white/15 shadow-[inset_0px_0px_15px_0px_#FFF] backdrop-blur-[3.125rem] flex flex-col justify-center items-center text-white absolute left-1/2 bottom-0 lg:bottom-auto lg:top-0 translate-x-[-50%]"><span class="font-komplektBold font-bold text-[2rem] md:text-4xl lg:text-6xl text-center">160K+</span><span class="font-rubik font-normal text-[0.75rem] md:text-[1rem] lg:text-[1.25rem] whitespace-pre-line text-center">Users</span></div><div class="w-[9rem] mb:w-[11rem] sm:w-[14rem] xl:w-[16rem] 2xl:w-[18.75rem] h-auto aspect-square rounded-[62.4375rem] bg-white/15 shadow-[inset_0px_0px_15px_0px_#FFF] backdrop-blur-[3.125rem] flex flex-col justify-center items-center text-white absolute right-0 top-0 lg:top-auto lg:bottom-0"><span class="font-komplektBold font-bold text-[2rem] md:text-4xl lg:text-6xl text-center">2M+</span><span class="font-rubik font-normal text-[0.75rem] md:text-[1rem] lg:text-[1.25rem] whitespace-pre-line text-center">Monthly txns on Base</span></div></div></div></div></div></div><div><div class="h-[8.125rem] transition-all duration-2000"><div class="game-not-active absolute w-[calc(100%_-_2rem)] lg:w-[calc(100%_-_11.5rem)] h-[8.125rem] bg-space-cadet rounded-[1.25rem] skew-x-[-6deg] px-12 transition-all duration-2000 opacity-100"><div class="w-full h-full flex flex-row justify-start gap-3 items-center transition-all duration-2000"><div class="w-[5.625rem] h-[5.625rem] aspect-square skew-x-[6deg]"><img alt="Summoners Arena: Idle RPG (2022)" loading="lazy" width="90" height="90" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-contain grayscale-100" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=96&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=256&amp;q=75"/></div><span class="font-rubik font-medium text-2xl text-crayola skew-x-[6deg]">Summoners Arena: Idle RPG (2022)</span></div></div><div class="game-active relative opacity-0 w-full h-full min-h-[40rem] skew-x-0 lg:skew-x-[-6deg] rounded-[1.25rem] overflow-hidden transition-all duration-2000"><div class="h-full w-full absolute inset-0 flex items-center z-[1] opacity-100 transition-all duration-2000 !opacity-0"><img alt="Summoners Arena: Idle RPG (2022)" loading="lazy" width="2048" height="1260" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-cover" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=2048&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=3840&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=3840&amp;q=75"/></div><div class="absolute inset-0 opacity-100 overlay-web3-game z-[2] !opacity-0"></div><div class="absolute z-[3] w-full h-full flex flex-col-reverse lg:flex-row items-center skew-x-0 lg:skew-x-[6deg] px-1 mb:px-[1rem] md:px-[4rem] py-6 lg:py-0 lg:pr-[3rem] xl:pr-[4rem] 2xl:pr-[4.6875rem]"><div class="relative flex flex-col w-full lg:w-[50%] pr-12 opacity-100 transition-all duration-2000 !opacity-0"><div class="w-[10rem] lg:w-[21.375rem] h-auto aspect-square"><img alt="Summoners Arena: Idle RPG (2022)" loading="lazy" width="342" height="342" decoding="async" data-nimg="1" class="blur-md grayscale w-full h-full object-contain" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=384&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75"/></div><div class="flex flex-col font-rubik opacity-100 text-white transition-all duration-2000 opacity-0"><span class="font-medium text-[1.25rem] lg:text-4xl truncate">Summoners Arena: Idle RPG (2022)</span><p class="font-normal text-[1rem] lg:text-2xl">An Idle RPG game where players assemble NFT heroes &amp; compete in PvP gameplay</p></div></div><div class="relative block w-full md:w-[90%] lg:w-[50%] h-[120%] lg:h-[60%] xl:h-[80%] transition-all duration-2000 translate-x-[-100%]"><div class="w-[9rem] mb:w-[11rem] sm:w-[14rem] xl:w-[16rem] 2xl:w-[18.75rem] h-auto aspect-square rounded-[62.4375rem] bg-white/15 shadow-[inset_0px_0px_15px_0px_#FFF] backdrop-blur-[3.125rem] flex flex-col justify-center items-center text-white absolute left-0 top-0 lg:top-auto lg:bottom-0"><span class="font-komplektBold font-bold text-[2rem] md:text-4xl lg:text-6xl text-center">15K+</span><span class="font-rubik font-normal text-[0.75rem] md:text-[1rem] lg:text-[1.25rem] whitespace-pre-line text-center">DAU
(during peak)</span></div><div class="w-[9rem] mb:w-[11rem] sm:w-[14rem] xl:w-[16rem] 2xl:w-[18.75rem] h-auto aspect-square rounded-[62.4375rem] bg-white/15 shadow-[inset_0px_0px_15px_0px_#FFF] backdrop-blur-[3.125rem] flex flex-col justify-center items-center text-white absolute left-1/2 bottom-0 lg:bottom-auto lg:top-0 translate-x-[-50%]"><span class="font-komplektBold font-bold text-[2rem] md:text-4xl lg:text-6xl text-center">100K+</span><span class="font-rubik font-normal text-[0.75rem] md:text-[1rem] lg:text-[1.25rem] whitespace-pre-line text-center">Users</span></div><div class="w-[9rem] mb:w-[11rem] sm:w-[14rem] xl:w-[16rem] 2xl:w-[18.75rem] h-auto aspect-square rounded-[62.4375rem] bg-white/15 shadow-[inset_0px_0px_15px_0px_#FFF] backdrop-blur-[3.125rem] flex flex-col justify-center items-center text-white absolute right-0 top-0 lg:top-auto lg:bottom-0"><span class="font-komplektBold font-bold text-[2rem] md:text-4xl lg:text-6xl text-center">$10M+</span><span class="font-rubik font-normal text-[0.75rem] md:text-[1rem] lg:text-[1.25rem] whitespace-pre-line text-center">NFT trading volume
across marketplaces</span></div></div></div></div></div></div></div></div></section><section class="panel w-full h-screen relative p-5"><div class="w-full h-full bg-laveder-blue rounded-[2.5rem] flex flex-col lg:flex-row gap-[1.12rem] justify-center items-center relative py-6 lg:py-0"><div class="group relative z-[1] w-[90%] lg:w-[40%] h-[45%] lg:h-[60%]"><div class="absolute left-[10%] top-[10%] z-[-1] transition-all duration-2000"><img alt="background_up_logo_5" loading="lazy" width="368" height="368" decoding="async" data-nimg="1" class="blur-md grayscale w-[16rem] h-auto rotate-[-15deg]" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=384&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75"/></div><div class="w-full h-full p-[3.5rem] bg-white hover:bg-brand-600 border border-solid border-grayscale-400 hover:border-none rounded-[2.5rem] flex flex-col gap-3 justify-center items-center text-center text-black hover:text-white transition duration-200 cursor-pointer"><span class="font-komplektBold font-bold text-[2.25rem] md:text-[3rem] lg:text-[4.375rem] whitespace-pre-line uppercase leading-8 md:leading-12 lg:leading-16">Stay
Updated</span><p class="font-rubik font-normal text-[1rem] lg:text-[1.25rem]">Subscribe to get latest news</p><div class="relative w-full mt-10"><input data-slot="input" class="file:text-foreground selection:bg-primary selection:text-primary-foreground dark:bg-input/30 flex w-full min-w-0 px-3 py-1 shadow-xs transition-[color,box-shadow] outline-none file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive subscribe-input rounded-full h-[3rem] bg-grayscale-50 border border-grayscale-300 group-hover:bg-white placeholder:text-grayscale-500 text-center font-rubik font-normal text-[1.25rem] text-black pr-12" placeholder="e.g: name@gmail.com" value=""/><div class="absolute right-4 top-1/2 -translate-y-1/2 w-6 h-6 flex items-center justify-center cursor-pointer opacity-50 !cursor-not-allowed"><img alt="arrow_right" loading="lazy" width="48" height="48" decoding="async" data-nimg="1" class="blur-md grayscale" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=48&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=96&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=96&amp;q=75"/></div></div></div></div><div class="group relative z-[1] w-[90%] lg:w-[40%] h-[45%] lg:h-[60%] cursor-pointer"><div class="absolute right-[10%] top-[10%] z-[-1] transition-all duration-2000"><img alt="background_up_logo_5" loading="lazy" width="368" height="368" decoding="async" data-nimg="1" class="blur-md grayscale w-[16rem] h-auto rotate-[15deg]" style="color:transparent" srcSet="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=384&amp;q=75 1x, https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75 2x" src="https://uptopia.xyz/_next/image?url=%2Fimages%2Fplaceholder%2F512x512.png&amp;w=750&amp;q=75"/></div><div class="w-full h-full p-[3.5rem] bg-white hover:bg-brand-600 border border-solid border-grayscale-400 hover:border-none rounded-[2.5rem] flex flex-col gap-3 justify-center items-center text-center text-black hover:text-white transition duration-200"><span class="font-komplektBold font-bold text-[2.25rem] md:text-[3rem] lg:text-[4.375rem] whitespace-pre-line uppercase leading-8 md:leading-12 lg:leading-16">Let’s
Team Up</span><p class="font-rubik font-normal text-[1rem] lg:text-[1.25rem] whitespace-pre-line">Interested in publishing your games on Uptopia?
Contact our team!</p><div class="relative w-full mt-4"><button data-slot="tooltip-trigger" class="inline-flex items-center justify-center gap-2 whitespace-nowrap transition-all disabled:pointer-events-none disabled:opacity-50 [&amp;_svg]:pointer-events-none [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 shrink-0 [&amp;_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive shadow-xs px-4 py-2 has-[&gt;svg]:px-3 bg-white border border-grayscale-300 text-brand-600 font-rubik font-medium text-sm sm:text-2xl rounded-full h-[3rem] hover:bg-white hover:cursor-pointer" data-state="closed"><span class=""><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="770702151b1e041f3702070318071e16590f0e0d">[email&#160;protected]</a></span></button></div></div></div><div class="absolute bottom-4 left-1/2 -translate-x-1/2 font-rubik font-normal text-[1rem] text-black"><span>© 2025 UPTOPIA</span><span class="mx-2">|</span><a class="hover:underline transition-colors" href="/terms-and-conditions">Terms &amp; Conditions</a></div></div></section></div></div></div><!--$?--><template id="B:1"></template><!--/$--><script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script type="890b2dc2617abaa612190437-text/javascript">requestAnimationFrame(function(){$RT=performance.now()});</script><script src="/_next/static/chunks/f57ce5d262f40de8.js" id="_R_" async="" type="890b2dc2617abaa612190437-text/javascript"></script><title>Home | Uptopia</title><meta name="description" content="BUILD THE INTERNET GAMEAI MARKET"/><meta name="application-name" content="Uptopia"/><link rel="manifest" href="/manifest.json"/><meta name="keywords" content="blockchain, gameFi, uptopia"/><meta name="format-detection" content="telephone=no, date=no, address=no, email=no"/><meta name="mobile-web-app-capable" content="yes"/><meta name="apple-mobile-web-app-title" content="Uptopia"/><link href="/icons/logo/256x256.png" rel="apple-touch-startup-image"/><meta name="apple-mobile-web-app-status-bar-style" content="black"/><meta property="og:title" content="Home | Uptopia"/><meta property="og:description" content="BUILD THE INTERNET GAMEAI MARKET"/><meta property="og:image" content="https://uptopia.xyz/images/seo/banner.png"/><meta name="twitter:card" content="summary_large_image"/><meta name="twitter:creator" content="@0xUptopia"/><meta name="twitter:title" content="Home | Uptopia"/><meta name="twitter:description" content="BUILD THE INTERNET GAMEAI MARKET"/><meta name="twitter:image" content="https://uptopia.xyz/images/seo/banner.png"/><link rel="icon" href="/favicon.ico?favicon.a554bb57.ico" sizes="32x32" type="image/x-icon"/><link rel="icon" href="/icons/logo/16x16.png" sizes="16x16" type="image/png"/><link rel="icon" href="/icons/logo/32x32.png" sizes="32x32" type="image/png"/><link rel="icon" href="/icons/logo/48x48.png" sizes="48x48" type="image/png"/><link rel="icon" href="/icons/logo/96x96.png" sizes="96x96" type="image/png"/><link rel="apple-touch-icon" href="/icons/logo/256x256.png"/><script type="890b2dc2617abaa612190437-text/javascript">document.querySelectorAll('body link[rel="icon"], body link[rel="apple-touch-icon"]').forEach(el => document.head.appendChild(el))</script><div hidden id="S:0"></div><script type="890b2dc2617abaa612190437-text/javascript">$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d||"/&"===d)if(0===h)break;else h--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data="$";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};
$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data="$~",$RB.push(a,b),2===$RB.length&&("number"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};$RC("B:0","S:0")</script><div hidden id="S:1"></div><script type="890b2dc2617abaa612190437-text/javascript">$RC("B:1","S:1")</script><script type="890b2dc2617abaa612190437-text/javascript">(self.__next_f=self.__next_f||[]).push([0])</script><script type="890b2dc2617abaa612190437-text/javascript">self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[2557,[\"/_next/static/chunks/28051524027dafd7.js\",\"/_next/static/chunks/031f805928706ee1.js\"],\"default\"]\n3:I[14390,[\"/_next/static/chunks/28051524027dafd7.js\",\"/_next/static/chunks/031f805928706ee1.js\"],\"default\"]\n5:I[58150,[\"/_next/static/chunks/5280d65cbeb99e2c.js\",\"/_next/static/chunks/f7946854ed5d62e5.js\",\"/_next/static/chunks/7faf4bdd838f14de.js\"],\"default\"]\n7:I[59707,[\"/_next/static/chunks/5280d65cbeb99e2c.js\",\"/_next/static/chunks/f7946854ed5d62e5.js\",\"/_next/static/chunks/7faf4bdd838f14de.js\",\"/_next/static/chunks/28051524027dafd7.js\",\"/_next/static/chunks/e328587926d47fe9.js\",\"/_next/static/chunks/7590de58962ae34d.js\"],\"default\"]\n8:I[29271,[\"/_next/static/chunks/28051524027dafd7.js\",\"/_next/static/chunks/031f805928706ee1.js\"],\"OutletBoundary\"]\n9:\"$Sreact.suspense\"\nb:I[29271,[\"/_next/static/chunks/28051524027dafd7.js\",\"/_next/static/chunks/031f805928706ee1.js\"],\"ViewportBoundary\"]\nd:I[29271,[\"/_next/static/chunks/28051524027dafd7.js\",\"/_next/static/chunks/031f805928706ee1.js\"],\"MetadataBoundary\"]\nf:I[38679,[],\"default\"]\n10:I[7552,[\"/_next/static/chunks/5280d65cbeb99e2c.js\",\"/_next/static/chunks/f7946854ed5d62e5.js\",\"/_next/static/chunks/7faf4bdd838f14de.js\"],\"default\"]\n11:I[41299,[\"/_next/static/chunks/5280d65cbeb99e2c.js\",\"/_next/static/chunks/f7946854ed5d62e5.js\",\"/_next/static/chunks/7faf4bdd838f14de.js\"],\"default\"]\n12:I[59124,[\"/_next/static/chunks/28051524027dafd7.js\",\"/_next/static/chunks/031f805928706ee1.js\"],\"IconMark\"]\n:HL[\"/_next/static/chunks/03471d1d36fb0e55.css\",\"style\"]\n:HL[\"/_next/static/chunks/5dddd6ef38713c95.css\",\"style\"]\n:HL[\"/_next/static/media/komplekt070_bold-s.p.054f0c92.ttf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/ttf\"}]\n:HL[\"/_next/static/media/komplekt070_medium-s.p.ccb638aa.ttf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/ttf\"}]\n:HL[\"/_next/static/media/rubik_medium-s.p.4f3f9e0a.ttf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/ttf\"}]\n:HL[\"/_next/static/media/rubik_regular-s.p.26342d03.ttf\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/ttf\"}]\n"])</script><script type="890b2dc2617abaa612190437-text/javascript">self.__next_f.push([1,"0:{\"P\":null,\"b\":\"teodv7KhgaB89tbwsfAlz\",\"c\":[\"\",\"manifest.json\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[[\"locale\",\"manifest.json\",\"d\"],{\"children\":[\"(main)\",{\"children\":[\"__PAGE__\",{}]}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[\"$L4\",[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/03471d1d36fb0e55.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/03471d1d36fb0e55.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/5dddd6ef38713c95.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/5280d65cbeb99e2c.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/f7946854ed5d62e5.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/7faf4bdd838f14de.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[\"$\",\"$L5\",null,{\"children\":[\"$\",\"body\",null,{\"className\":\"antialiased rubik_fa1c0877-module__4N4qbW__variable rubikmedium_14d20564-module__yIYhia__variable komplekt_784b22ec-module__skU-Hq__variable komplektbold_82d04ae8-module__7mU_wG__variable\",\"children\":\"$L6\"}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L7\",null,{}],[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/28051524027dafd7.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/e328587926d47fe9.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/7590de58962ae34d.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L8\",null,{\"children\":[\"$\",\"$9\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@a\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$Lb\",null,{\"children\":\"$@c\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Ld\",null,{\"children\":[\"$\",\"$9\",null,{\"name\":\"Next.Metadata\",\"children\":\"$@e\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$f\",[]],\"S\":false}\n"])</script><script type="890b2dc2617abaa612190437-text/javascript">self.__next_f.push([1,"4:[\"$\",\"h1\",null,{\"children\":\"Not Found\"}]\nc:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n6:[\"$\",\"$L10\",null,{\"formats\":\"$undefined\",\"locale\":\"en\",\"messages\":{\"HOME\":{\"TITLE\":\"Welcome to the Home Page\",\"DESCRIPTION\":\"This is the home page of our application.\"}},\"now\":\"$undefined\",\"timeZone\":\"UTC\",\"children\":[\"$\",\"$L11\",null,{\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]\n"])</script><script type="890b2dc2617abaa612190437-text/javascript">self.__next_f.push([1,"e:[[\"$\",\"title\",\"0\",{\"children\":\"Home | Uptopia\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"BUILD THE INTERNET GAMEAI MARKET\"}],[\"$\",\"meta\",\"2\",{\"name\":\"application-name\",\"content\":\"Uptopia\"}],[\"$\",\"link\",\"3\",{\"rel\":\"manifest\",\"href\":\"/manifest.json\",\"crossOrigin\":\"$undefined\"}],[\"$\",\"meta\",\"4\",{\"name\":\"keywords\",\"content\":\"blockchain, gameFi, uptopia\"}],[\"$\",\"meta\",\"5\",{\"name\":\"format-detection\",\"content\":\"telephone=no, date=no, address=no, email=no\"}],[\"$\",\"meta\",\"6\",{\"name\":\"mobile-web-app-capable\",\"content\":\"yes\"}],[\"$\",\"meta\",\"7\",{\"name\":\"apple-mobile-web-app-title\",\"content\":\"Uptopia\"}],[\"$\",\"link\",\"8\",{\"href\":\"/icons/logo/256x256.png\",\"media\":\"$undefined\",\"rel\":\"apple-touch-startup-image\"}],[\"$\",\"meta\",\"9\",{\"name\":\"apple-mobile-web-app-status-bar-style\",\"content\":\"black\"}],[\"$\",\"meta\",\"10\",{\"property\":\"og:title\",\"content\":\"Home | Uptopia\"}],[\"$\",\"meta\",\"11\",{\"property\":\"og:description\",\"content\":\"BUILD THE INTERNET GAMEAI MARKET\"}],[\"$\",\"meta\",\"12\",{\"property\":\"og:image\",\"content\":\"https://uptopia.xyz/images/seo/banner.png\"}],[\"$\",\"meta\",\"13\",{\"name\":\"twitter:card\",\"content\":\"summary_large_image\"}],[\"$\",\"meta\",\"14\",{\"name\":\"twitter:creator\",\"content\":\"@0xUptopia\"}],[\"$\",\"meta\",\"15\",{\"name\":\"twitter:title\",\"content\":\"Home | Uptopia\"}],[\"$\",\"meta\",\"16\",{\"name\":\"twitter:description\",\"content\":\"BUILD THE INTERNET GAMEAI MARKET\"}],[\"$\",\"meta\",\"17\",{\"name\":\"twitter:image\",\"content\":\"https://uptopia.xyz/images/seo/banner.png\"}],[\"$\",\"link\",\"18\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.a554bb57.ico\",\"sizes\":\"32x32\",\"type\":\"image/x-icon\"}],[\"$\",\"link\",\"19\",{\"rel\":\"icon\",\"href\":\"/icons/logo/16x16.png\",\"sizes\":\"16x16\",\"type\":\"image/png\"}],[\"$\",\"link\",\"20\",{\"rel\":\"icon\",\"href\":\"/icons/logo/32x32.png\",\"sizes\":\"32x32\",\"type\":\"image/png\"}],[\"$\",\"link\",\"21\",{\"rel\":\"icon\",\"href\":\"/icons/logo/48x48.png\",\"sizes\":\"48x48\",\"type\":\"image/png\"}],[\"$\",\"link\",\"22\",{\"rel\":\"icon\",\"href\":\"/icons/logo/96x96.png\",\"sizes\":\"96x96\",\"type\":\"image/png\"}],[\"$\",\"link\",\"23\",{\"rel\":\"apple-touch-icon\",\"href\":\"/icons/logo/256x256.png\"}],[\"$\",\"$L12\",\"24\",{}]]\n"])</script><script type="890b2dc2617abaa612190437-text/javascript">self.__next_f.push([1,"a:null\n"])</script><script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="890b2dc2617abaa612190437-|49" defer></script></body></html>