{"id":3106,"date":"2025-07-08T22:26:14","date_gmt":"2025-07-08T22:26:14","guid":{"rendered":"https:\/\/godsgalaxygame.com\/GGG\/?page_id=3106"},"modified":"2026-01-01T06:24:09","modified_gmt":"2026-01-01T06:24:09","slug":"limitless-investments","status":"publish","type":"page","link":"https:\/\/godsgalaxygame.com\/GGG\/limitless-investments\/","title":{"rendered":"Limitless Investments"},"content":{"rendered":"\n<!-- ===== FULLSCREEN STARFIELD (ASTRO STYLE) for LIMITLESS INVESTMENTS ===== -->\n<canvas id=\"liStarfield\" aria-hidden=\"true\"><\/canvas>\n\n<style>\n  \/* fixed, full-bleed background behind everything in this block *\/\n  #liStarfield{\n    position: fixed; inset: 0;\n    width: 100%; height: 100%;\n    display: block; z-index: 0; pointer-events: none;\n  }\n  html, body { background:#000; }\n<\/style>\n\n<script>\n(function(){\n  const c = document.getElementById('liStarfield');\n  if(!c) return;\n  const ctx = c.getContext('2d');\n  let W=0, H=0, dpr=1, stars=[], meteors=[];\n\n  function resize(){\n    dpr = Math.max(1, Math.min(2, window.devicePixelRatio||1));\n    W = c.width  = Math.floor(innerWidth  * dpr);\n    H = c.height = Math.floor(innerHeight * dpr);\n    c.style.width  = innerWidth  + 'px';\n    c.style.height = innerHeight + 'px';\n    buildStars();\n  }\n\n  function buildStars(){\n    const count = Math.floor((W*H) \/ (14000*dpr));\n    stars = Array.from({length: count}, () => ({\n      x: Math.random()*W,\n      y: Math.random()*H,\n      r: (Math.random()*1.2+0.4)*dpr,\n      a: Math.random()*1\n    }));\n  }\n\n  function spawnMeteor(){\n    const startX = Math.random()<0.5 ? -50*dpr : W+50*dpr;\n    const dir = startX<0 ? 1 : -1;\n    const startY = Math.random()*H*0.6 + H*0.1;\n    meteors.push({ x:startX, y:startY, vx: dir*(3.2*dpr), vy: 1.2*dpr, life: 0, max: 1600 });\n  }\n\n  let last=0, accum=0;\n  function tick(ts){\n    const dt = Math.min(33, ts-last || 16); last=ts; accum+=dt;\n    if (accum>900+Math.random()*900) { spawnMeteor(); accum=0; }\n\n    ctx.setTransform(1,0,0,1,0,0);\n    ctx.clearRect(0,0,W,H);\n\n    \/\/ subtle cyan nebula\n    const g = ctx.createRadialGradient(W\/2,H*0.15,0, W\/2,H*0.4, Math.hypot(W,H)\/1.4);\n    g.addColorStop(0,'rgba(0,220,255,0.10)');\n    g.addColorStop(1,'rgba(0,0,0,0)');\n    ctx.fillStyle=g; ctx.fillRect(0,0,W,H);\n\n    \/\/ twinkles\n    for(const s of stars){\n      s.a += (Math.random()*0.06-0.03);\n      const a = 0.35+0.35*Math.sin(s.a);\n      ctx.fillStyle = `rgba(200,245,255,${a})`;\n      ctx.beginPath(); ctx.arc(s.x,s.y,s.r,0,Math.PI*2); ctx.fill();\n    }\n\n    \/\/ meteors\n    for (let i=meteors.length-1;i>=0;i--){\n      const m = meteors[i];\n      m.x += m.vx; m.y += m.vy; m.life += dt;\n\n      const trailX = m.x - m.vx*6;\n      const trailY = m.y - m.vy*6;\n      const grad = ctx.createLinearGradient(m.x,m.y, trailX,trailY);\n      grad.addColorStop(0,'rgba(0,255,255,0.9)');\n      grad.addColorStop(1,'rgba(0,255,255,0)');\n      ctx.strokeStyle = grad; ctx.lineWidth = 2*dpr; ctx.lineCap='round';\n      ctx.beginPath(); ctx.moveTo(m.x,m.y); ctx.lineTo(trailX, trailY); ctx.stroke();\n\n      if (m.x<-200*dpr || m.x>W+200*dpr || m.y>H+200*dpr || m.life>m.max){\n        meteors.splice(i,1);\n      }\n    }\n    requestAnimationFrame(tick);\n  }\n\n  addEventListener('resize', resize, {passive:true});\n  resize(); requestAnimationFrame(tick);\n})();\n<\/script>\n<!-- ===== end LIMITLESS starfield ===== -->\n\n\n<!-- ===== BLOQUE 1 \u2013 Limitless Investments (Full-screen, scalable buttons) ===== -->\n<div id=\"limitlessSelector\" class=\"liStage\">\n  <div id=\"liStack\">\n    <div class=\"limitless-btn primary\" onclick=\"activateartistCube()\">\n      <span class=\"emoji\">\ud83e\uddd1\u200d\ud83c\udfa4<\/span>\n      <span class=\"label\">Artist With A Dream<\/span>\n    <\/div>\n\n    <div class=\"liRow\">\n      <div class=\"limitless-btn\" onclick=\"window.location.href='https:\/\/godsgalaxygame.com\/GGG\/athletes\/'\">\n        <span class=\"emoji\">\ud83c\udfc3\u200d\u2642\ufe0f<\/span>\n        <span class=\"label\">Athletes With A Dream<\/span>\n      <\/div>\n\n      <div class=\"limitless-btn\" onclick=\"window.location.href='https:\/\/godsgalaxygame.com\/GGG\/entrepreneurs\/'\">\n        <span class=\"emoji\">\ud83d\ude80<\/span>\n        <span class=\"label\">Entrepreneurs With A Dream<\/span>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/div>\n\n<style>\n  \/* Stage above starfield *\/\n  .liStage{\n    position: fixed; inset: 0;\n    display: grid; place-items: center;\n    z-index: 5;\n    transition: opacity .6s ease, transform .6s ease;\n  }\n  .liStage.hidden{ opacity:0; transform: translateY(-12vh); pointer-events:none; }\n\n  \/* ===== Master sizing (change here to scale everything) ===== *\/\n  #liStack{\n    --stackW: clamp(320px, 74vmin, 980px);       \/* overall width of selector *\/\n    --gap: clamp(14px, 2.8vmin, 28px);           \/* space between buttons *\/\n    --btnPadY: clamp(16px, 2.4vmin, 28px);\n    --btnPadX: clamp(18px, 3.2vmin, 36px);\n    --btnFS: clamp(16px, 2.4vmin, 24px);         \/* label size *\/\n    --emojiFS: clamp(26px, 4.4vmin, 44px);       \/* emoji size *\/\n    --radius: 22px;\n    --border: .45vmin;\n\n    width: var(--stackW);\n    display: flex; flex-direction: column; align-items: stretch;\n    gap: var(--gap);\n    padding-inline: 2vmin;\n  }\n\n  .liRow{\n    display: grid;\n    grid-template-columns: 1fr 1fr;\n    gap: var(--gap);\n  }\n\n  .limitless-btn{\n    background: rgba(0,0,0,.6);\n    border: var(--border) solid cyan;\n    border-radius: var(--radius);\n    padding: var(--btnPadY) var(--btnPadX);\n    color: white; font-family: 'Orbitron', sans-serif; font-weight: 800;\n    text-align: center;\n    box-shadow: 0 0 2.6vmin cyan;\n    cursor: pointer; -webkit-tap-highlight-color: transparent;\n    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;\n    display:flex; flex-direction:column; align-items:center; justify-content:center;\n    min-height: clamp(64px, 12vmin, 140px);\n    gap: .4em;\n  }\n  .limitless-btn:hover{ transform: translateY(-2px); box-shadow: 0 0 3.2vmin cyan; }\n  .limitless-btn .emoji{ font-size: var(--emojiFS); line-height: 1; }\n  .limitless-btn .label{ font-size: var(--btnFS); line-height: 1.1; }\n\n  \/* Make the top button feel primary\/bigger *\/\n  .limitless-btn.primary{\n    box-shadow: 0 0 3.2vmin cyan;\n    border-color: cyan;\n  }\n\n  \/* Phones: stack everything full width *\/\n  @media (max-width: 600px){\n    #liStack{ --stackW: 92vmin; padding-inline: 0; }\n    .liRow{ grid-template-columns: 1fr; }\n  }\n<\/style>\n\n<script>\n  \/\/ Keep your existing activation behavior, but use the hidden class for a smooth exit\n  document.addEventListener(\"DOMContentLoaded\", function () {\n    window.activateartistCube = function () {\n      const selector = document.getElementById(\"limitlessSelector\");\n      if (selector) selector.classList.add(\"hidden\");\n\n      const container = document.getElementById(\"artistCubeContainer\");\n      if (container){\n        container.style.opacity = \"1\";\n        container.style.pointerEvents = \"auto\";\n      }\n\n      const map = document.getElementById(\"glowMapContainer\");\n      if (map){\n        map.style.opacity = \"1\";\n        map.style.pointerEvents = \"auto\";\n      }\n\n      if (typeof initMap === \"function\") { initMap(); }\n    };\n  });\n<\/script>\n\n\n\n<!-- BLOQUE 2 - Artists Tours Cube V19 Completo + Mapa Circular + API -->\n<style>\n  @media (max-width: 768px) {\n    #glowMapContainer {\n      margin-top: -95px !important;\n    }\n  }\n<\/style>\n<div id=\"artistCubeContainer\" style=\"opacity:0; pointer-events:none; transition: opacity 0.6s ease;\">\n  <!-- ESCENA CUBO -->\n  <div class=\"cube-scene\" style=\"width:180px; height:180px; perspective:1000px; position:fixed; bottom:20px; left:20px; z-index:1000;\">\n    <div class=\"cube\" id=\"artistCube\" style=\"width:100%; height:100%; position:relative; transform-style:preserve-3d; transform:rotateX(0deg) rotateY(0deg); transition:transform 0.3s ease;\">\n   <!-- FRONT -->\n      <div class=\"face front\" style=\"width:180px; height:180px; background:transparent; border:2px solid white; box-shadow:0 0 20px white; position:absolute; transform:rotateY(0deg) translateZ(90px); display:flex; flex-direction:column; justify-content:center; align-items:center; font-family:Orbitron;\">\n        <div style=\"font-size:42px; color:white; text-shadow:0 0 15px white;\">\ud83e\uddd1\u200d\ud83c\udfa4<\/div>\n        <div style=\"font-size:16px; color:white; font-weight:bold; text-shadow:0 0 10px white; margin-top:6px;\">Artists<\/div>\n      <\/div>\n\n      <!-- Cara Trasera del Cubo: Transportation -->\n<!-- Back Face - Transportation Cube - Nuevo Dise\u00f1o con Botones Circulares -->\n<div class=\"face back\" style=\"width:180px; height:180px; background:#000; border:2px solid white; box-shadow:0 0 15px white; position:absolute; transform:rotateY(180deg) translateZ(90px); font-family:Orbitron,sans-serif;\">\n\n  <!-- Sol central -->\n  <img decoding=\"async\" src=\"http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/06\/1000065346-scaled.jpg\"\n       style=\"width:70px; height:70px; border-radius:50%; position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); box-shadow:0 0 20px white;\" \/>\n\n  <!-- Reserve -->\n  <a href=\"https:\/\/element8.godaddysites.com\/\" target=\"_blank\"\n     style=\"position:absolute; top:8px; left:8px; width:44px; height:44px; border-radius:50%; background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/06\/Screenshot_20240108-225452_Chrome-scaled.jpg'); background-size:cover; box-shadow:0 0 12px cyan;\"\n     title=\"Reserve\"><\/a>\n\n  <!-- Bliss Coin -->\n  <div onclick=\"openBlissCoinPopup()\"\n       style=\"position:absolute; top:8px; right:8px; width:44px; height:44px; border-radius:50%; background:#222; font-size:40px; display:flex; justify-content:center; align-items:center; color:white; box-shadow:0 0 10px cyan; cursor:pointer;\"\n       title=\"Pay with Bliss Coin\">\ud83d\udcb3<\/div>\n\n  <!-- Coupon Button (Bottom-Left Corner) -->\n<a href=\"https:\/\/godsgalaxygame.com\/GGG\/discounts-gift\/\"\n   target=\"_blank\"\n   style=\"position: absolute;\n          bottom: 8px;\n          left: 8px;\n          width: 44px;\n          height: 44px;\n          border-radius: 50%;\n          background-image: url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/06\/Screenshot_20240108-225546_Chrome.jpg');\n          background-size: cover;\n          box-shadow: 0 0 12px cyan;\n          cursor: pointer;\"\n   title=\"Get Coupons\">\n<\/a>\n\n  <!-- Become a Host -->\n  <a href=\"https:\/\/luxus2.godaddysites.com\/\" target=\"_blank\"\n     style=\"position:absolute; bottom:8px; right:8px; width:44px; height:44px; border-radius:50%; background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/06\/Screenshot_20240108-224514_Chrome-scaled.jpg'); background-size:cover; box-shadow:0 0 12px cyan;\"\n     title=\"Become a Host\"><\/a>\n<\/div>\n\n\n\n      <!-- RIGHT (Stickers) -->\n      <div class=\"face right\" style=\"width:180px; height:180px; background:#000; border:2px solid beige; box-shadow:0 0 15px beige; position:absolute; transform:rotateY(90deg) translateZ(90px); font-family:Orbitron;\">\n        <button onclick=\"showHostButtons('stick-alb')\" style=\"position:absolute; top:8px; left:27px; width:126px; height:17px; border:1px solid beige; color:white; background:transparent;\">Album<\/button>\n        <button onclick=\"showHostButtons('stick-indi')\" style=\"position:absolute; bottom:8px; left:27px; width:126px; height:17px; border:1px solid beige; color:white; background:transparent;\">Individual<\/button>\n        <button onclick=\"showHostButtons('stick-byl')\" style=\"position:absolute; top:27px; left:8px; height:126px; width:17px; border:1px solid beige; color:white; writing-mode:vertical-rl; background:transparent;\">By League<\/button>\n        <button onclick=\"showHostButtons('stick-buyp')\" style=\"position:absolute; top:27px; right:8px; height:126px; width:17px; border:1px solid beige; color:white; writing-mode:vertical-lr; background:transparent;\">Buy Packs<\/button>\n        <div style=\"position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); text-align:center;\">\n          <div style=\"color:beige; font-size:16px; font-weight:bold;\">Stickers<\/div>\n          <img decoding=\"async\" src=\"http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/06\/Screenshot_20250612_075245_Gallery.jpg\" style=\"width:65px; height:65px; border-radius:50%; box-shadow:0 0 12px beige;\">\n        <\/div>\n      <\/div>\n\n      <!-- LEFT (Request) -->\n      <div class=\"face left\" style=\"width:180px; height:180px; background:#000; border:2px solid #00ccff; box-shadow:0 0 15px #00ccff; position:absolute; transform:rotateY(-90deg) translateZ(90px); font-family:Orbitron;\">\n        <button onclick=\"showHostButtons('req-ane')\" style=\"position:absolute; top:8px; left:27px; width:126px; height:17px; border:1px solid #00ccff; color:white; background:transparent;\">An Event<\/button>\n        <button onclick=\"showHostButtons('req-pri')\" style=\"position:absolute; bottom:8px; left:27px; width:126px; height:17px; border:1px solid #00ccff; color:white; background:transparent;\">Private Show<\/button>\n        <button onclick=\"showHostButtons('req-spon')\" style=\"position:absolute; top:27px; left:8px; height:126px; width:17px; border:1px solid #00ccff; color:white; writing-mode:vertical-rl; background:transparent;\">A Sponsor<\/button>\n        <button onclick=\"showHostButtons('req-inter')\" style=\"position:absolute; top:27px; right:8px; height:126px; width:17px; border:1px solid #00ccff; color:white; writing-mode:vertical-lr; background:transparent;\">International Event<\/button>\n        <div style=\"position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); text-align:center;\">\n          <div style=\"color:#00ccff; font-size:16px; font-weight:bold;\">Request<\/div>\n          <img decoding=\"async\" src=\"http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/06\/Screenshot_20250612_075344_Gallery.jpg\" style=\"width:65px; height:65px; border-radius:50%; box-shadow:0 0 12px #00ccff;\">\n        <\/div>\n      <\/div>\n\n      <!-- TOP (Sponsor) -->\n      <div class=\"face top\" style=\"width:180px; height:180px; background:#000; border:2px solid green; box-shadow:0 0 15px #33ff33; position:absolute; transform:rotateX(90deg) translateZ(90px); font-family:Orbitron;\">\n        <button onclick=\"showHostButtons('sponsor-album')\" style=\"position:absolute; top:8px; left:27px; width:126px; height:17px; border:1px solid green; color:white; background:transparent;\">Album<\/button>\n        <button onclick=\"showHostButtons('sponsor-ine')\" style=\"position:absolute; bottom:8px; left:27px; width:126px; height:17px; border:1px solid green; color:white; background:transparent;\">In Events<\/button>\n        <button onclick=\"showHostButtons('sponsor-bya')\" style=\"position:absolute; top:27px; left:8px; height:126px; width:17px; border:1px solid green; color:white; writing-mode:vertical-rl; background:transparent;\">By Artist<\/button>\n        <button onclick=\"showHostButtons('sponsor-create')\" style=\"position:absolute; top:27px; right:8px; height:126px; width:17px; border:1px solid green; color:white; writing-mode:vertical-lr; background:transparent;\">Create Event<\/button>\n        <div style=\"position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); text-align:center;\">\n          <div style=\"color:#33ff33; font-size:16px; font-weight:bold;\">Sponsor<\/div>\n          <img decoding=\"async\" src=\"http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/06\/Screenshot_20250612_075305_Gallery.jpg\" style=\"width:65px; height:65px; border-radius:50%; box-shadow:0 0 12px #33ff33;\">\n        <\/div>\n      <\/div>\n\n      <!-- BOTTOM (Investor) -->\n      <div class=\"face bottom\" style=\"width:180px; height:180px; background:#000; border:2px solid red; box-shadow:0 0 15px red; position:absolute; transform:rotateX(-90deg) translateZ(90px); font-family:Orbitron;\">\n        <button onclick=\"showHostButtons('inves-start')\" style=\"position:absolute; top:8px; left:27px; width:126px; height:17px; border:1px solid red; color:white; background:transparent;\">Start-Up<\/button>\n        <button onclick=\"showHostButtons('inves-10x')\" style=\"position:absolute; bottom:8px; left:27px; width:126px; height:17px; border:1px solid red; color:white; background:transparent;\">10X<\/button>\n        <button onclick=\"showHostButtons('inves-17s')\" style=\"position:absolute; top:27px; left:8px; height:126px; width:17px; border:1px solid red; color:white; writing-mode:vertical-rl; background:transparent;\">The 17 Goals<\/button>\n        <button onclick=\"showHostButtons('inves-adream')\" style=\"position:absolute; top:27px; right:8px; height:126px; width:17px; border:1px solid red; color:white; writing-mode:vertical-lr; background:transparent;\">Real Hero Dreams<\/button>\n        <div style=\"position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); text-align:center;\">\n          <div style=\"color:red; font-size:16px; font-weight:bold;\">Investor<\/div>\n          <img decoding=\"async\" src=\"http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/06\/Screenshot_20250612_075325_Gallery.jpg\" style=\"width:65px; height:65px; border-radius:50%; box-shadow:0 0 12px red;\">\n        <\/div>\n      <\/div>\n\n    <\/div>\n  <\/div>\n\n  <!-- MAPA CIRCULAR -->\n  <div id=\"glowMapContainer\" style=\"opacity:0; pointer-events:none; transition: opacity 0.6s ease; margin: 0 auto; margin-top: -95px; margin-bottom: 40px; width: 320px; height: 320px; border-radius: 50%; overflow: hidden; border: 6px solid rgba(0,255,255,0.6); box-shadow: 0 0 25px cyan; position: relative; z-index: 900;\">\n    <div id=\"googleMap\" style=\"width:100%; height:100%;\"><\/div>\n  <\/div>\n<\/div>\n\n<!-- Google Maps API (clave v\u00e1lida y correcta) -->\n<script src=\"https:\/\/maps.googleapis.com\/maps\/api\/js?key=AIzaSyDLPhx98z9AgoqXS6VeoESE9NV6URuOhiE&#038;callback=initMap\" async defer><\/script>\n\n<script>\n  function activateartistCube() {\n    \/\/ Oculta el grid de opciones\n    const rrGrid = document.getElementById(\"rrGrid\");\n    if (rrGrid) {\n      rrGrid.style.display = \"none\";\n    }\n\n    \/\/ Muestra el contenedor del cubo Artists \n    const container = document.getElementById(\"artistCubeContainer\");\n    if (container) {\n      container.style.opacity = \"1\";\n      container.style.pointerEvents = \"auto\";\n    }\n\n    \/\/ Muestra el mapa\n    const map = document.getElementById(\"glowMapContainer\");\n    if (map) {\n      map.style.opacity = \"1\";\n      map.style.pointerEvents = \"auto\";\n    }\n\n    \/\/ Reinicia el mapa si es necesario\n    if (typeof initMap === \"function\") {\n      initMap();\n    }\n  }\n<\/script>\n<script>\n function initMap() {\n  const map = new google.maps.Map(document.getElementById(\"googleMap\"), {\n    center: { lat: 6.2414088, lng: -75.22951 },  \/\/ Bliss Glamping\n    zoom: 15,\n    disableDefaultUI: true,\n    gestureHandling: \"greedy\"\n  });\n\n  \/\/ \ud83d\udfe2 Add this to show the marker\n  const marker = new google.maps.Marker({\n    position: { lat: 6.2414088, lng: -75.22951 },\n    map: map,\n    title: \"Bliss Glamping\"\n  });\n\n  \/\/ Optional: save the map to global variable if needed later\n  window.ggMap = map;\n}\n<\/script>\n<!-- POP-UP para Bliss Coin -->\n<div id=\"blissCoinPopup\" style=\"display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.9); z-index:9999; justify-content:center; align-items:center; font-family:Orbitron;\">\n  <div style=\"background:#111; padding:30px 20px; border:2px solid cyan; border-radius:20px; color:white; width:300px; text-align:center; box-shadow:0 0 20px cyan;\">\n    <h3 style=\"font-size:18px;\">\ud83d\udcb3 Pay with Bliss Coin<\/h3>\n    <p style=\"font-size:14px;\">Enter your digital wallet #:<\/p>\n    <input type=\"text\" placeholder=\"Your Wallet #\" style=\"width:90%; padding:8px; border-radius:10px; border:1px solid white; background:#000; color:white; margin-top:8px;\" \/>\n    <p style=\"margin-top:14px;\">Send payment to:<\/p>\n    <div style=\"margin:8px auto; padding:6px; background:#222; border:1px solid cyan; border-radius:8px;\">\n      <code style=\"font-size:13px;\">HOST-WALLET-ADDRESS-123<\/code>\n    <\/div>\n    <button onclick=\"closeBlissCoinPopup()\" style=\"margin-top:12px; padding:6px 16px; border-radius:10px; background:cyan; border:none; color:#000; font-weight:bold; cursor:pointer;\">\n      Close\n    <\/button>\n  <\/div>\n<\/div>\n\n<script>\n  function openBlissCoinPopup() {\n    document.getElementById('blissCoinPopup').style.display = 'flex';\n  }\n  function closeBlissCoinPopup() {\n    document.getElementById('blissCoinPopup').style.display = 'none';\n  }\n<\/script>\n\n\n\n<!-- BLOQUE 3 \u2013 Movimiento + Swipe + SignIn + Favoritos (First You) -->\n\n<!-- ESTILOS -->\n<style>\n  #floatingButtons {\n    position: fixed;\n    top: 14px;\n    right: 14px;\n    display: flex;\n    flex-direction: row;\n    gap: 10px;\n    z-index: 3000;\n  }\n\n  #favoritesBtn, #signinBtn {\n    font-size: 15px;\n    padding: 6px 10px;\n    border-radius: 8px;\n    border: 2px solid white;\n    color: white;\n    background: rgba(0, 0, 0, 0.6);\n    cursor: pointer;\n    box-shadow: 0 0 8px cyan;\n    font-family: Orbitron;\n  }\n\n  #favoritesBtn:hover::after {\n    content: ' Double click a Host to add \ud83d\udc98';\n    font-size: 10px;\n    margin-left: 8px;\n    color: cyan;\n  }\n\n  #pyramidBtn {\n    width: 38px;\n    height: 38px;\n    background-color: black;\n    border: 2px solid white;\n    border-radius: 50%;\n    box-shadow: 0 0 10px cyan; \/* glow *\/\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    font-size: 20px; \/* emoji size *\/\n    cursor: pointer;\n    margin-top: 2px; \/* align with rose *\/\n  }\n\n  #pyramidBtn:hover {\n    transform: scale(1.2);\n  }\n  #stickerAlbumBtn {\n    width: 36px;\n    height: 36px;\n    border-radius: 50%;\n    border: 2px solid #ffffffaa;\n    background: rgba(0,0,0,0.55);\n    color: #fff;\n    font-size: 16px;\n    cursor: pointer;\n    box-shadow: 0 0 10px cyan;\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    transition: 0.25s ease;\n  }\n\n  #stickerAlbumBtn:hover {\n    box-shadow: 0 0 16px cyan;\n    transform: translateY(-1px);\n  }\n\n\n#roseBtn {\n  width: 38px;\n  height: 38px;\n  background-color: black; \/* Keep black background *\/\n  background-image: url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/07\/ChatGPT-Image-Jul-7-2025-05_11_38-PM.png');\n  background-size: cover;\n  background-position: center;\n  border: 2px solid white; \/* Optional white border *\/\n  border-radius: 50%;\n  box-shadow: 0 0 10px white; \/* White glow around the button *\/\n  cursor: pointer;\n  margin-top: 2px; \/* Adjust position to align with others *\/\n}\n\n#roseBtn:hover {\n  transform: scale(1.2);\n}\n\n  #signinBtn:hover::after {\n    content: ' Sign in to save your Favorites';\n    font-size: 10px;\n    margin-left: 8px;\n    color: cyan;\n  }\n\n  #swipeImage {\n    position: fixed;\n    top: 0;\n    left: 50%;\n    transform: translateX(-50%);\n    width: 160px;\n    z-index: 1200;\n    display: none;\n  }\n#swipeImage {\n  display: none !important;\n}\n\n<\/style>\n\n<!-- BOTONES FLOTANTES -->\n<div id=\"floatingButtons\">\n<button id=\"stickerAlbumBtn\" class=\"topButton\">\ud83c\udfb4<\/button>\n<button\n    id=\"pyramidBtn\"\n    title=\"Back to MedaYork Pyramid\"\n    onclick=\"window.location.href='https:\/\/godsgalaxygame.com\/GGG\/medayork-pyramid-2\/';\">\n    \ud83e\uddca\n  <\/button>\n<button id=\"roseBtn\"><\/button>\n\n  <button id=\"favoritesBtn\">\ud83d\udc96<\/button>\n  <button id=\"signinBtn\">Sign In \/ Sign Up<\/button>\n<\/div>\n\n<!-- IMAGEN DE SWIPE -->\n<img decoding=\"async\" id=\"swipeImage\" src=\"https:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/06\/Screenshot_20250627_154147_Gallery.jpg\" alt=\"Swipe\" \/>\n\n<!-- SCRIPT DE FUNCIONALIDAD -->\n<script>\n  \/\/ Movimiento del cubo Artist \n  let isDragging = false, startX, startY, rotateX = 0, rotateY = 0;\n  const cube = document.getElementById('artistCube');\n\n  function updateRotation(x, y) {\n    cube.style.transform = `rotateX(${x}deg) rotateY(${y}deg)`;\n  }\n\n  function onMouseDown(e) {\n    isDragging = true;\n    startX = e.clientX;\n    startY = e.clientY;\n  }\n\n  function onMouseMove(e) {\n    if (!isDragging) return;\n    const deltaX = e.clientX - startX;\n    const deltaY = e.clientY - startY;\n    rotateY += deltaX * 0.5;\n    rotateX -= deltaY * 0.5;\n    updateRotation(rotateX, rotateY);\n    startX = e.clientX;\n    startY = e.clientY;\n  }\n\n  function onMouseUp() {\n    isDragging = false;\n  }\n\n  function onTouchStart(e) {\n    isDragging = true;\n    startX = e.touches[0].clientX;\n    startY = e.touches[0].clientY;\n  }\n\n  function onTouchMove(e) {\n    if (!isDragging) return;\n    const deltaX = e.touches[0].clientX - startX;\n    const deltaY = e.touches[0].clientY - startY;\n    rotateY += deltaX * 0.5;\n    rotateX -= deltaY * 0.5;\n    updateRotation(rotateX, rotateY);\n    startX = e.touches[0].clientX;\n    startY = e.touches[0].clientY;\n  }\n\n  function onTouchEnd() {\n    isDragging = false;\n  }\n\n  const cubeContainer = document.querySelector('.cube-scene');\n  if (cubeContainer) {\n    cubeContainer.addEventListener('mousedown', onMouseDown);\n    window.addEventListener('mousemove', onMouseMove);\n    window.addEventListener('mouseup', onMouseUp);\n    cubeContainer.addEventListener('touchstart', onTouchStart);\n    window.addEventListener('touchmove', onTouchMove);\n    window.addEventListener('touchend', onTouchEnd);\n  }\n\n  \/\/ Swipe image cuando aparece el cubo Artists\n  const observer = new MutationObserver(() => {\n    const artist = document.getElementById('artistCubeContainer');\n    if (artist && artist.style.opacity === \"1\") {\n      const swipe = document.getElementById('swipeImage');\n      swipe.style.display = 'block';\n      setTimeout(() => {\n        swipe.style.display = 'none';\n      }, 3500);\n      observer.disconnect();\n    }\n  });\n  observer.observe(document.body, { childList: true, subtree: true });\n\n  \/\/ Sistema de favoritos \ud83d\udc96 \u2192 \ud83d\udc98\n  const favorites = [];\n\n  function toggleFavorite(id, imgUrl, mapLat, mapLng) {\n    if (!favorites.some(f => f.id === id)) {\n      favorites.push({ id, imgUrl, lat: mapLat, lng: mapLng });\n      document.getElementById(\"favoritesBtn\").textContent = \"\ud83d\udc98\";\n      console.log(\"Favorito agregado:\", id);\n    }\n  }\n\n  function clearFavorites() {\n    favorites.length = 0;\n    document.getElementById(\"favoritesBtn\").textContent = \"\ud83d\udc96\";\n  }\n\n  function focusOnHost(lat, lng) {\n    if (window.ggMap) {\n      window.ggMap.setCenter({ lat, lng });\n      window.ggMap.setZoom(15);\n      new google.maps.Marker({ position: { lat, lng }, map: window.ggMap });\n    }\n  }\n\n  document.getElementById(\"favoritesBtn\").addEventListener(\"click\", () => {\n    if (favorites.length === 0) return;\n    document.querySelectorAll('.host-circle').forEach(btn => btn.style.display = 'none');\n    favorites.forEach(fav => {\n      const existing = document.querySelector(`.${fav.id}`);\n      if (existing) existing.style.display = 'inline-block';\n    });\n  });\n<\/script>\n\n\n\n<!-- LEVEL 6 \u2013 STICKER ALBUM (OVERLAY + FLIP) -->\n\n<style>\n  \/* --- Fullscreen dark overlay --- *\/\n  #stickerAlbumOverlay {\n    position: fixed;\n    inset: 0;\n    background: radial-gradient(circle at top, rgba(0, 200, 255, 0.15), rgba(0,0,0,0.95));\n    display: none; \/* hidden by default *\/\n    align-items: center;\n    justify-content: center;\n    z-index: 2700;\n  }\n\n  \/* --- Album container (like a glowing book) --- *\/\n  .sticker-album {\n    position: relative;\n    width: 90%;\n    max-width: 640px;\n    padding: 18px 22px 24px;\n    border-radius: 18px;\n    border: 2px solid rgba(255,255,255,0.4);\n    background: linear-gradient(135deg, rgba(5,10,25,0.95), rgba(15,0,40,0.95));\n    box-shadow: 0 0 28px rgba(0,255,255,0.55);\n    color: #fff;\n    font-family: 'Orbitron', system-ui, sans-serif;\n  }\n\n  .sticker-album-header {\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    margin-bottom: 10px;\n  }\n\n  .sticker-album-title {\n    font-size: 15px;\n    text-transform: uppercase;\n    letter-spacing: 1.5px;\n  }\n\n  .sticker-album-subtitle {\n    font-size: 11px;\n    opacity: 0.8;\n  }\n\n  #closeStickerAlbumBtn {\n    border: none;\n    background: transparent;\n    color: #fff;\n    font-size: 18px;\n    cursor: pointer;\n    padding: 2px 6px;\n  }\n  #closeStickerAlbumBtn:hover {\n    color: cyan;\n  }\n\n  \/* --- Main page area --- *\/\n  .sticker-album-main {\n    display: grid;\n    grid-template-columns: 40px minmax(0, 1fr) 40px;\n    gap: 10px;\n    align-items: center;\n    margin-top: 10px;\n  }\n\n  .album-arrow {\n    cursor: pointer;\n    font-size: 22px;\n    user-select: none;\n    text-align: center;\n    opacity: 0.85;\n  }\n  .album-arrow:hover {\n    color: cyan;\n    opacity: 1;\n  }\n\n  .sticker-page-frame {\n    border-radius: 14px;\n    padding: 10px;\n    background: radial-gradient(circle at top, rgba(0,255,255,0.12), rgba(0,0,0,0.9));\n    border: 1px solid rgba(255,255,255,0.5);\n    box-shadow: inset 0 0 12px rgba(0,255,255,0.25);\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n    gap: 8px;\n  }\n\n  .sticker-image-wrapper {\n    width: 100%;\n    max-width: 260px;\n    aspect-ratio: 3 \/ 4;\n    border-radius: 16px;\n    overflow: hidden;\n    box-shadow: 0 0 18px rgba(0,255,255,0.6);\n  }\n\n  .sticker-image-wrapper img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    display: block;\n  }\n\n  .sticker-meta {\n    text-align: center;\n    font-size: 11px;\n  }\n\n  .sticker-name {\n    font-weight: 700;\n    text-transform: uppercase;\n    letter-spacing: 1px;\n    margin-bottom: 2px;\n  }\n\n  .sticker-tagline {\n    opacity: 0.8;\n    font-size: 10px;\n  }\n\n  .sticker-actions {\n    margin-top: 6px;\n    display: flex;\n    gap: 8px;\n    justify-content: center;\n    flex-wrap: wrap;\n  }\n  .sticker-cta-btn {\n    font-size: 11px;\n    padding: 6px 10px;\n    border-radius: 999px;\n    border: 1px solid rgba(255,255,255,0.6);\n    background: rgba(0,0,0,0.7);\n    color: #fff;\n    cursor: pointer;\n    box-shadow: 0 0 8px rgba(0,255,255,0.6);\n    font-family: 'Orbitron', system-ui, sans-serif;\n  }\n  .sticker-cta-btn:hover {\n    box-shadow: 0 0 12px cyan;\n  }\n\n  \/* --- Sticker indicators (little glowing circles to jump pages) --- *\/\n  .sticker-indicators {\n    margin-top: 10px;\n    display: flex;\n    justify-content: center;\n    gap: 6px;\n    flex-wrap: wrap;\n  }\n  .sticker-indicator {\n    width: 9px;\n    height: 9px;\n    border-radius: 50%;\n    border: 1px solid rgba(255,255,255,0.6);\n    box-shadow: 0 0 4px rgba(0,255,255,0.6);\n    cursor: pointer;\n    opacity: 0.6;\n  }\n  .sticker-indicator.active {\n    background: cyan;\n    opacity: 1;\n  }\n\n  @media (max-width: 600px) {\n    .sticker-album {\n      padding: 14px 14px 18px;\n    }\n    .sticker-album-main {\n      grid-template-columns: 32px minmax(0, 1fr) 32px;\n    }\n    .sticker-image-wrapper {\n      max-width: 220px;\n    }\n  }\n<\/style>\n\n<!-- Fullscreen overlay with the album -->\n<div id=\"stickerAlbumOverlay\">\n  <div class=\"sticker-album\">\n    <div class=\"sticker-album-header\">\n      <div>\n        <div class=\"sticker-album-title\">Limitless Investments<\/div>\n        <div class=\"sticker-album-subtitle\">Flip through your featured stickers<\/div>\n      <\/div>\n      <button id=\"closeStickerAlbumBtn\" aria-label=\"Close album\">\u2715<\/button>\n    <\/div>\n\n    <div class=\"sticker-album-main\">\n      <div class=\"album-arrow\" id=\"albumPrevArrow\">\u276e<\/div>\n\n      <div class=\"sticker-page-frame\">\n        <div class=\"sticker-image-wrapper\">\n          <img decoding=\"async\" id=\"stickerMainImage\" src=\"\" alt=\"Sticker\">\n        <\/div>\n\n        <div class=\"sticker-meta\">\n          <div class=\"sticker-name\" id=\"stickerName\"><\/div>\n          <div class=\"sticker-tagline\" id=\"stickerTagline\"><\/div>\n        <\/div>\n\n        <!-- ACTION BUTTONS -->\n        <div class=\"sticker-actions\">\n          <button id=\"stickerPrimaryCta\" class=\"sticker-cta-btn\">\n            To buy this sticker\n          <\/button>\n          <button id=\"stickerRealEstateCta\" class=\"sticker-cta-btn\" style=\"display:none;\">\n            See more real estate projects like this\n          <\/button>\n        <\/div>\n      <\/div>\n\n      <div class=\"album-arrow\" id=\"albumNextArrow\">\u276f<\/div>\n    <\/div>\n\n    <div class=\"sticker-indicators\" id=\"stickerIndicators\"><\/div>\n  <\/div>\n<\/div>\n\n<script>\n  \/\/ === CONFIG: Put your real sticker images + text + links here ===\n  const STICKERS = [\n    {\n      id: 'artists',\n      name: 'Artist With A Dream (Album)',\n      tagline: 'Get The Artists With A Dream Album.',\n      img: 'http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20251205_221324_Gallery.jpg',\n      primaryUrl: 'https:\/\/limitlessinvestments7.godaddysites.com\/artist-album' \/\/ TODO: change to your real link\n    },\n    {\n      id: 'artist-1',\n      name: 'Artist With A Dream (Raro Ground)',\n      tagline: 'Get The Raro Ground Sticker And Support His Dream.',\n      img: 'http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20251205_221114_Gallery.jpg',\n      primaryUrl: 'https:\/\/limitlessinvestments7.godaddysites.com\/raro-ground', \/\/ TODO\n    },\n    {\n      id: 'artists-1.1',\n      name: 'Artist With A Dream (Sponsor)',\n      tagline: 'Exclusive shows + long-term fan value.',\n      img: 'http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20251205_220339_Gallery.jpg',\n      primaryUrl: 'https:\/\/limitlessinvestments7.godaddysites.com\/sponsor-artist' \/\/ TODO\n    },\n    {\n      id: 'artist-1.2',\n      name: 'Artist Investment Opportunity',\n      tagline: 'Early-stage creative project ready for funding.',\n      img: 'http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20251205_220348_Gallery.jpg',\n      primaryUrl: 'https:\/\/limitlessinvestments7.godaddysites.com\/artist-opportunity', \/\/ TODO\nisRealEstate: true \/\/ this one will show the Level 7 button\n\n    },\n    {\n      id: 'entrepreneur-1',\n      name: 'Entrepreneur With A Dream #1',\n      tagline: 'Scalable business model + revenue potential.',\n      img: 'YOUR-IMAGE-URL-4',\n      primaryUrl: 'https:\/\/limitlessinvestments7.godaddysites.com\/entrepreneur-1' \/\/ TODO\n    }\n  ];\n\n  \/\/ === STATE ===\n  let currentStickerIndex = 0;\n\n  \/\/ === DOM NODES ===\n  const overlay        = document.getElementById('stickerAlbumOverlay');\n  const closeBtn       = document.getElementById('closeStickerAlbumBtn');\n  const imgEl          = document.getElementById('stickerMainImage');\n  const nameEl         = document.getElementById('stickerName');\n  const taglineEl      = document.getElementById('stickerTagline');\n  const prevArrow      = document.getElementById('albumPrevArrow');\n  const nextArrow      = document.getElementById('albumNextArrow');\n  const indicatorsEl   = document.getElementById('stickerIndicators');\n  const primaryCtaBtn  = document.getElementById('stickerPrimaryCta');\n  const realEstateCtaBtn = document.getElementById('stickerRealEstateCta');\n\n  \/\/ === BUILD INDICATORS ===\n  function buildIndicators() {\n    indicatorsEl.innerHTML = '';\n    STICKERS.forEach((sticker, index) => {\n      const dot = document.createElement('div');\n      dot.className = 'sticker-indicator';\n      dot.dataset.index = index;\n      dot.addEventListener('click', () => {\n        currentStickerIndex = index;\n        renderSticker();\n      });\n      indicatorsEl.appendChild(dot);\n    });\n  }\n\n  \/\/ === RENDER CURRENT STICKER ===\n  function renderSticker() {\n    if (!STICKERS.length) return;\n    const s = STICKERS[currentStickerIndex];\n\n    imgEl.src = s.img;\n    imgEl.alt = s.name || 'Sticker';\n\n    nameEl.textContent    = s.name || '';\n    taglineEl.textContent = s.tagline || '';\n\n    \/\/ Indicators active state\n    [...indicatorsEl.children].forEach((dot, i) => {\n      dot.classList.toggle('active', i === currentStickerIndex);\n    });\n\n    \/\/ Primary CTA: \"Buy this sticker\"\n    if (primaryCtaBtn) {\n      primaryCtaBtn.onclick = () => {\n        if (s.primaryUrl) {\n          window.open(s.primaryUrl, '_blank');\n        } else {\n          alert('No purchase link configured yet for this sticker.');\n        }\n      };\n    }\n\n    \/\/ Real estate CTA: only show if isRealEstate === true\n    if (realEstateCtaBtn) {\n      if (s.isRealEstate) {\n        realEstateCtaBtn.style.display = 'inline-block';\n        realEstateCtaBtn.onclick = () => {\n          const goToRealEstate = confirm(\n            'Do you want to see more real estate projects like this?'\n          );\n          if (goToRealEstate) {\n            \/\/ TODO: put your real Level 7 Real Estate URL here\n            window.location.href = 'https:\/\/godsgalaxygame.com\/GGG\/real-estate\/';\n          }\n        };\n      } else {\n        realEstateCtaBtn.style.display = 'none';\n        realEstateCtaBtn.onclick = null;\n      }\n    }\n\n    \/\/ Hook with your map\/cube if you want later\n    if (typeof window.focusOnSticker === 'function') {\n      window.focusOnSticker(s.id);\n    }\n  }\n\n  \/\/ === NAVIGATION ===\n  function showNextSticker() {\n    if (!STICKERS.length) return;\n    currentStickerIndex = (currentStickerIndex + 1) % STICKERS.length;\n    renderSticker();\n  }\n\n  function showPrevSticker() {\n    if (!STICKERS.length) return;\n    currentStickerIndex = (currentStickerIndex - 1 + STICKERS.length) % STICKERS.length;\n    renderSticker();\n  }\n\n  \/\/ === OPEN \/ CLOSE ===\n  function openAlbum() {\n    if (!STICKERS.length) return;\n    overlay.style.display = 'flex';\n    currentStickerIndex = 0;\n    renderSticker();\n  }\n\n  function closeAlbum() {\n    overlay.style.display = 'none';\n  }\n\n  \/\/ Click outside the album closes it\n  overlay.addEventListener('click', (e) => {\n    if (e.target === overlay) closeAlbum();\n  });\n\n  \/\/ === EVENTS ===\n  const albumBtn = document.getElementById('stickerAlbumBtn');\nif (albumBtn) {\n  albumBtn.addEventListener('click', () => {\n    if (typeof window.openAlbumGate === \"function\") window.openAlbumGate();\n  });\n}\n\n  closeBtn.addEventListener('click', closeAlbum);\n  nextArrow.addEventListener('click', showNextSticker);\n  prevArrow.addEventListener('click', showPrevSticker);\n\n  \/\/ Keyboard arrows when album is open\n  document.addEventListener('keydown', (e) => {\n    if (overlay.style.display !== 'flex') return;\n    if (e.key === 'ArrowRight') showNextSticker();\n    if (e.key === 'ArrowLeft') showPrevSticker();\n    if (e.key === 'Escape') closeAlbum();\n  });\n\n  \/\/ Init\n  buildIndicators();\n<\/script>\n\n\n\n<!-- HOST CIRCLES \u2014 CSS (Gifting) -->\n<style>\n  \/* container *\/\n  #hostButtons{\n    display:none;                 \/* hidden until a sub-option is clicked *\/\n    position:absolute;\n    top:50%; left:50%;\n    transform:translate(-50%,-50%);\n    width:100%; max-width:500px; height:500px;\n    pointer-events:none;          \/* turned ON in JS when shown *\/\n    z-index:3000;\n  }\n\n  \/* buttons *\/\n  #hostButtons .host-circle{\n    width:80px; height:80px; border-radius:50%;\n    border:2px solid #fff; box-shadow:0 0 14px #fff;\n    background-size:cover; background-position:center;\n    position:absolute; pointer-events:auto; cursor:pointer;\n    transition:transform .3s, box-shadow .3s;\n  }\n  #hostButtons .host-circle:hover{ transform:scale(1.15); box-shadow:0 0 20px cyan; }\n\n  \/* desktop placement (around the circle) *\/\n  #hostButtons .one    { top:4%;    left:10%; }\n  #hostButtons .five   { top:4%;    right:10%; }\n  #hostButtons .seven  { bottom:8%; left:10%; }\n  #hostButtons .month  { bottom:8%; right:10%; }\n\n  \/* color accents per family (match cube face glows) *\/\n  #hostButtons .stick { border-color:beige;   box-shadow:0 0 14px beige; }\n  #hostButtons .req { border-color:#00ccff; box-shadow:0 0 14px #00ccff; }\n  #hostButtons .sponsor  { border-color:#33ff33; box-shadow:0 0 14px #33ff33; }\n  #hostButtons .inves { border-color:red;     box-shadow:0 0 14px red; }\n\n  \/* phone: turn into one row under the map *\/\n  @media (max-width:768px){\n    #hostButtons{\n      position:relative; top:auto; left:auto; transform:none;\n      height:auto; margin-top:-35px;\n      display:none;               \/* still hidden by default *\/\n      flex-wrap:nowrap; justify-content:center; gap:10px;\n    }\n    #hostButtons .host-circle{ position:relative; width:75px; height:75px; margin:0 6px; }\n  }\n<\/style>\n\n<!-- HOST CIRCLES \u2014 HTML (Artists: Stickers \n \/ Request \/ Sponsor \/ Investor) -->\n<div id=\"hostButtons\">\n  <!-- Stickers (beige) -->\n  <button class=\"host-circle stick stick-alb one\"\n    data-lat=\"6.2414088\" data-lng=\"-75.22951\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20251205_221324_Gallery.jpg');\"\n    title=\"Stickers \u2022 Album\"><\/button>\n\n  <button class=\"host-circle stick stick-indi five\"\n    data-lat=\"6.22663\" data-lng=\"-75.1831\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20251205_221114_Gallery.jpg');\"\n    title=\"Stickers \u2022 Individual\"><\/button>\n\n  <button class=\"host-circle stick stick-byl seven\"\n    data-lat=\"6.2288021\" data-lng=\"-75.2142911\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240908_215613_Chrome-scaled.jpg');\"\n    title=\"Sticker \u2022 By League\"><\/button>\n\n  <button class=\"host-circle stick stick-buyp month\"\n    data-lat=\"6.24426\" data-lng=\"-75.217632\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/ChatGPT-Image-Dec-25-2025-02_05_29-PM.png');\"\n    title=\"Stickers \u2022 Buy Packs\"><\/button>\n\n  <!-- Request (cyan) -->\n  <button class=\"host-circle req req-ane one\"\n    data-lat=\"6.2414088\" data-lng=\"-75.2315485\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240821_175227_Instagram.jpg');\"\n    title=\"Request \u2022 An Event\"><\/button>\n\n  <button class=\"host-circle req req-pri five\"\n    data-lat=\"6.24426\" data-lng=\"-75.217632\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240909_160959_Google-1.jpg');\"\n    title=\"Request \u2022 Private Event\"><\/button>\n\n  <button class=\"host-circle req req-spon seven\"\n    data-lat=\"6.2083202\" data-lng=\"-75.5677995\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240706_061057_PowerPoint-1.jpg');\"\n    title=\"Request \u2022 A Sponsor\"><\/button>\n\n  <button class=\"host-circle req req-inter month\"\n    data-lat=\"6.2252116\" data-lng=\"-75.1800426\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240821_175227_Instagram.jpg');\"\n    title=\"Request \u2022 International Events\"><\/button>\n\n  <!-- Sponsor (green) -->\n  <button class=\"host-circle sponsor sponsor-album one\"\n    data-lat=\"6.2414088\" data-lng=\"-75.22951\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240706_061057_PowerPoint-1.jpg');\"\n    title=\"Sponsor \u2022 Album\"><\/button>\n\n  <button class=\"host-circle sponsor sponsor-ine five\"\n    data-lat=\"6.22663\" data-lng=\"-75.1831\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20251225_141716_Gallery.jpg');\"\n    title=\"Sponsor \u2022 In Events\"><\/button>\n\n  <button class=\"host-circle sponsor sponsor-bya seven\"\n    data-lat=\"6.2288021\" data-lng=\"-75.2142911\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240706_061057_PowerPoint-1.jpg');\"\n    title=\"Sponsor \u2022 By Artist\"><\/button>\n\n  <button class=\"host-circle sponsor sponsor-create month\"\n    data-lat=\"6.24426\" data-lng=\"-75.217632\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240821_175227_Instagram.jpg');\"\n    title=\"Sponsor \u2022 Create Event\"><\/button>\n\n  <!-- Investor (red) -->\n  <button class=\"host-circle inves inves-start one\"\n    data-lat=\"6.2414088\" data-lng=\"-75.22951\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240706_061057_PowerPoint-1.jpg');\"\n    title=\"Invest \u2022 Start-Up\"><\/button>\n\n  <button class=\"host-circle inves inves-10x five\"\n    data-lat=\"6.22663\" data-lng=\"-75.1831\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240706_061057_PowerPoint-1.jpg');\"\n    title=\"Invest \u2022 10X\"><\/button>\n\n  <button class=\"host-circle inves inves-17s seven\"\n    data-lat=\"6.2288021\" data-lng=\"-75.2142911\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240706_061057_PowerPoint-1.jpg');\"\n    title=\"Investor \u2022 17 Susatinable Goals\"><\/button>\n\n  <button class=\"host-circle inves inves-adream month\"\n    data-lat=\"6.24426\" data-lng=\"-75.217632\"\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240706_061057_PowerPoint-1.jpg');\"\n    title=\"invest \u2022 Super Hero Dreams\"><\/button>\n<\/div>\n\n<!-- HOST CIRCLES \u2014 JS (Artist) -->\n<script>\n  \/* Show only the requested key, e.g., 'stick-alb' *\/\n  function showHostButtons(suboption){\n    const wrap = document.getElementById('hostButtons');\n    if(!wrap) return;\n\n    \/\/ hide all\n    wrap.querySelectorAll('.host-circle').forEach(el => el.style.display = 'none');\n\n    \/\/ show only requested group (class names include exact key)\n    wrap.querySelectorAll('.' + suboption).forEach(el => el.style.display = 'inline-block');\n\n    \/\/ reveal the container and allow clicks\n    wrap.style.display = 'flex';\n    wrap.style.pointerEvents = 'auto';\n  }\n\n  \/\/ dbl-tap \/ dbl-click to favorite (uses your existing toggleFavorite)\n  document.addEventListener('DOMContentLoaded', () => {\n    document.querySelectorAll('#hostButtons .host-circle').forEach(btn => {\n      btn.addEventListener('dblclick', (e) => {\n        e.preventDefault();\n\n        \/\/ \u2705 Get the specific key like \"heli-around\" \/ \"yacht-goto\"\n        const id = [...btn.classList].find(c =>\n          c.includes('-') &&\n          !['host-circle','around','goto','emergency','adventure'].includes(c)\n        );\n\n        if (!id) {\n          console.warn(\"No favorite id found for button:\", btn.className);\n          return;\n        }\n\n        \/\/ background-image: url(\"...\") or url('...')\n        const bg = btn.style.backgroundImage || '';\n        const img = bg.startsWith('url(')\n          ? bg.slice(4, -1).replace(\/^[\"']|[\"']$\/g, '')\n          : '';\n\n        const lat = parseFloat(btn.dataset.lat);\n        const lng = parseFloat(btn.dataset.lng);\n\n        if (typeof toggleFavorite === 'function') {\n          toggleFavorite(id, img, lat, lng);\n        } else {\n          console.warn(\"toggleFavorite() is not defined yet.\");\n        }\n      });\n    });\n  });\n\n  \/* Center the map when any host circle is clicked *\/\n  document.addEventListener('click', function (e) {\n    const btn = e.target.closest('#hostButtons .host-circle');\n    if (!btn) return;\n\n    const lat = parseFloat(btn.dataset.lat);\n    const lng = parseFloat(btn.dataset.lng);\n    if (!Number.isFinite(lat) || !Number.isFinite(lng)) return;\n\n    if (typeof window.focusOnHost === 'function') {\n      focusOnHost(lat, lng);\n      return;\n    }\n\n    if (window.ggMap && window.google) {\n      const pos = new google.maps.LatLng(lat, lng);\n      ggMap.setCenter(pos);\n      ggMap.setZoom(15);\n      new google.maps.Marker({ position: pos, map: ggMap });\n    }\n  });\n<\/script>\n\n\n\n&#8211; AVATAR &#8211;>\n<div id=\"avatarContainer\" onclick=\"showAvatarCloud()\" \n     style=\"position:fixed; bottom:80px; right:20px; z-index:9999; cursor:pointer; display:none;\">\n  <img decoding=\"async\" src=\"http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/07\/Screenshot_20231118-120724_Instagram-scaled.jpg\" \n       style=\"width:180px; height:auto; border-radius: 50% \/ 30%; object-fit: cover; box-shadow: 0 0 12px aqua; filter: invert(100%) contrast(120%) brightness(110%);\">\n<\/div>\n\n<!-- CLOUD BUBBLE -->\n<div id=\"avatarCloud\" style=\"position:fixed; bottom:310px; right:30px; max-width:250px; background:rgba(0,0,0,0.7); \n     color:white; font-family:Orbitron, sans-serif; font-size:12px; line-height:16px; border-radius:20px 20px 20px 0px; \n     padding:14px 16px; box-shadow:0 0 15px aqua; display:none; z-index:9999; text-align:center;\n     border: 1px solid aqua;\">\n  <div id=\"avatarCloudMsg\">Loading&#8230;<\/div>\n  <div style=\"margin-top:10px;\">\n    <button onclick=\"acceptAvatarSuggestion()\" style=\"background:lime; color:black; border:none; padding:6px 10px; font-weight:bold;\">Yes<\/button>\n    <button onclick=\"dismissAvatarCloud()\" style=\"background:aqua; color:white; border:none; padding:6px 10px; font-weight:bold;\">No<\/button>\n  <\/div>\n  <div style=\"position:absolute; bottom:-18px; right:10px; width:0; height:0; border-left:10px solid transparent; \n              border-right:10px solid transparent; border-top:18px solid rgba(0,255,255,0.6); filter:blur(0.5px);\">\n  <\/div>\n<\/div>\n\n<!-- MOBILE ASSISTANT BUTTON -->\n<div id=\"avatarMobileBtn\" onclick=\"toggleMobileAvatar()\" style=\"display:none;\">\n  \ud83d\udc64 Assistant\n<\/div>\n\n<!-- ESTILOS -->\n<style>\n  #avatarMobileBtn {\n    position: fixed;\n    bottom: 18px;\n    right: 18px;\n    z-index: 9999;\n    background: rgba(0, 0, 0, 0.7);\n    color: white;\n    font-family: Orbitron, sans-serif;\n    font-size: 13px;\n    padding: 10px 14px;\n    border: 2px solid aqua;\n    border-radius: 14px;\n    box-shadow: 0 0 12px aqua;\n    cursor: pointer;\n    display: flex;\n    align-items: center;\n    gap: 8px;\n  }\n\n  @media (min-width: 769px) {\n    #avatarMobileBtn {\n      display: none !important;\n    }\n  }\n\n  @media (max-width: 768px) {\n    #avatarContainer {\n      bottom: 30px !important;\n      right: 90px !important;\n      width: 100px !important;\n      display: none;\n      pointer-events: none;\n    }\n\n    #avatarContainer img {\n      width: 100%;\n      height: auto;\n      border-radius: 50% \/ 30%;\n      object-fit: cover;\n      filter: grayscale(0%) brightness(1.1) contrast(1.2);\n      box-shadow: 0 0 12px aqua;\n    }\n  }\n\n  @media (min-width: 769px) {\n    #avatarContainer {\n      pointer-events: auto;\n    }\n  }\n<\/style>\n\n<!-- L\u00d3GICA -->\n<script>\n  const entertainmentQuestions = [\n    \"Ready to see what\u2019s out there today?\",\n    \"Want entertainment options nearby?\",\n    \"Looking for something fun to do?\",\n    \"Need ideas for your free time?\",\n    \"Want something exciting tonight?\"\n  ];\n\n  const gastronomyQuestions = [\n    \"Want to see gastronomy options nearby?\",\n    \"Ready to have dinner tonight?\",\n    \"Would you like some brunch spots?\",\n    \"Hungry for something special?\",\n    \"Looking for restaurants around you?\"\n  ];\n\n  function showAvatarCloud(forcedType = null) {\n    const hour = new Date().getHours();\n    const type = forcedType || (hour % 2 === 0 ? \"gastronomy\" : \"entertainment\");\n    const question = (type === \"gastronomy\" ? gastronomyQuestions : entertainmentQuestions)[Math.floor(Math.random() * 5)];\n\n    document.getElementById(\"avatarCloudMsg\").innerText = question;\n    document.getElementById(\"avatarCloud\").style.display = \"block\";\n  }\n\n  function acceptAvatarSuggestion() {\n    dismissAvatarCloud();\n    alert(\"\u2705 Showing Aries recommendations near you...\");\n  }\n\n  function dismissAvatarCloud() {\n    document.getElementById(\"avatarCloud\").style.display = \"none\";\n  }\n\n  \/\/ \ud83d\udcbb Show avatar automatically after 3 seconds (desktop only)\n  function showAvatarAssistant() {\n    const avatar = document.getElementById(\"avatarContainer\");\n    if (window.innerWidth > 768) {\n      avatar.style.display = \"block\";\n      avatar.style.pointerEvents = \"auto\";\n    }\n  }\n  setTimeout(showAvatarAssistant, 3000);\n\n  \/\/ \ud83d\udcf1 Toggle mobile avatar on\/off\n  let avatarVisible = false;\n  function toggleMobileAvatar() {\n    const avatar = document.getElementById(\"avatarContainer\");\n    const btn = document.getElementById(\"avatarMobileBtn\");\n\n    if (!avatarVisible) {\n      avatar.style.display = \"block\";\n      avatar.style.pointerEvents = \"auto\";\n      showAvatarCloud();\n      btn.innerHTML = \"\u274c Close\";\n    } else {\n      avatar.style.display = \"none\";\n      avatar.style.pointerEvents = \"none\";\n      dismissAvatarCloud();\n      btn.innerHTML = \"\ud83d\udc64 Assistant\";\n    }\n\n    avatarVisible = !avatarVisible;\n  }\n\n  \/\/ \ud83d\udcf1 Show mobile button on load\n  window.addEventListener(\"load\", () => {\n    if (window.innerWidth <= 768) {\n      document.getElementById(\"avatarMobileBtn\").style.display = \"flex\";\n    }\n  });\n<\/script>\n\n\n\n<!-- =========================================\nLEVEL 6 \u2014 ALBUM GATE POPUP (REVIEW OR CODE)\n- Shows BEFORE the Sticker Album overlay opens\n- Option 1: Request Review (no payment yet)\n- Option 2: Enter Code -> opens Album overlay\n========================================= -->\n\n<style>\n  #albumGateOverlay{\n    position:fixed; inset:0;\n    display:none;\n    align-items:center; justify-content:center;\n    background:rgba(0,0,0,0.88);\n    z-index:2800; \/* above album overlay (2700) *\/\n    font-family: Orbitron, system-ui, sans-serif;\n  }\n  #albumGateModal{\n    width:min(92vw, 360px);\n    border-radius:18px;\n    padding:18px 16px;\n    border:2px solid rgba(255,255,255,0.35);\n    background:linear-gradient(135deg, rgba(5,10,25,0.96), rgba(25,0,45,0.96));\n    box-shadow:0 0 28px rgba(0,255,255,0.45);\n    color:#fff;\n    text-align:center;\n    position:relative;\n  }\n  #albumGateModal h3{\n    margin:0 0 6px;\n    font-size:14px;\n    letter-spacing:1.2px;\n    text-transform:uppercase;\n  }\n  #albumGateModal p{\n    margin:6px 0;\n    font-size:12px;\n    opacity:0.9;\n    line-height:1.35;\n  }\n  #albumGateClose{\n    position:absolute; top:8px; right:10px;\n    background:transparent; border:none; color:#fff;\n    font-size:18px; cursor:pointer;\n  }\n  #albumGateClose:hover{ color:cyan; }\n\n  .albumGateBtn{\n    width:100%;\n    margin-top:10px;\n    padding:10px 12px;\n    border-radius:999px;\n    border:1px solid rgba(255,255,255,0.6);\n    background:rgba(0,0,0,0.65);\n    color:#fff;\n    cursor:pointer;\n    box-shadow:0 0 10px rgba(0,255,255,0.35);\n    font-size:12px;\n  }\n  .albumGateBtn:hover{ box-shadow:0 0 14px cyan; }\n\n  #albumCodeWrap{\n    display:none;\n    margin-top:12px;\n    padding-top:10px;\n    border-top:1px solid rgba(255,255,255,0.18);\n  }\n  #albumAccessCode{\n    width:100%;\n    padding:10px 12px;\n    border-radius:12px;\n    border:1px solid rgba(255,255,255,0.45);\n    background:#000;\n    color:#fff;\n    outline:none;\n    font-size:13px;\n  }\n  #albumGateMsg{\n    margin-top:10px;\n    font-size:12px;\n    opacity:0.9;\n    min-height:18px;\n  }\n  .miniRow{\n    display:flex; gap:8px; margin-top:10px;\n  }\n  .miniRow button{ flex:1; }\n<\/style>\n\n<div id=\"albumGateOverlay\">\n  <div id=\"albumGateModal\">\n    <button id=\"albumGateClose\" aria-label=\"Close\">\u2715<\/button>\n\n    <h3>Limitless Investments \u2014 Album<\/h3>\n\n    <p>\n      Before paying <b>$39.99<\/b>, your account must be reviewed.\n      If you already have an access code, enter it to open the album.\n    <\/p>\n\n    <button class=\"albumGateBtn\" id=\"albumGateRequestReviewBtn\">\n      \u2705 Request Review (No Payment Yet)\n    <\/button>\n\n    <button class=\"albumGateBtn\" id=\"albumGateEnterCodeBtn\">\n      \ud83d\udd10 I Have a Code\n    <\/button>\n\n    <div id=\"albumCodeWrap\">\n      <input id=\"albumAccessCode\" type=\"text\" placeholder=\"Enter your code\u2026\" autocomplete=\"one-time-code\" \/>\n      <div class=\"miniRow\">\n        <button class=\"albumGateBtn\" id=\"albumGateSubmitCodeBtn\">Open Album<\/button>\n        <button class=\"albumGateBtn\" id=\"albumGateBackBtn\">Back<\/button>\n      <\/div>\n    <\/div>\n\n    <div id=\"albumGateMsg\"><\/div>\n  <\/div>\n<\/div>\n\n<script>\n(() => {\n  if (window.__GGG_ALBUM_GATE_V1__) return;\n  window.__GGG_ALBUM_GATE_V1__ = true;\n\n  \/* ========= EDIT THESE ========= *\/\n  const ALBUM_PRICE = 39.99;\n\n  \/\/ Option 1: review request target (choose ONE):\n  \/\/ A) Mailto (simple + works instantly)\n  const REVIEW_EMAIL_TO = \"edwardraigozallc@gmail.com\";\n  const REVIEW_EMAIL_SUBJECT = \"GGG \u2014 Album Review Request (Level 6)\";\n\n  \/\/ Option 2: code(s) that open album immediately\n  \/\/ You can add multiple valid codes.\n  const VALID_ALBUM_CODES = [\n    \"GALAXY2025\",   \/\/ example\n    \"ALBUM39\"       \/\/ example\n  ];\n  \/* ============================== *\/\n\n  const overlay = document.getElementById(\"albumGateOverlay\");\n  const closeBtn = document.getElementById(\"albumGateClose\");\n  const msg = document.getElementById(\"albumGateMsg\");\n\n  const btnReview = document.getElementById(\"albumGateRequestReviewBtn\");\n  const btnEnterCode = document.getElementById(\"albumGateEnterCodeBtn\");\n\n  const codeWrap = document.getElementById(\"albumCodeWrap\");\n  const codeInput = document.getElementById(\"albumAccessCode\");\n  const btnSubmitCode = document.getElementById(\"albumGateSubmitCodeBtn\");\n  const btnBack = document.getElementById(\"albumGateBackBtn\");\n\n  function setMsg(text, good=false){\n    msg.textContent = text || \"\";\n    msg.style.color = good ? \"cyan\" : \"#fff\";\n  }\n\n  function openGate(){\n    setMsg(\"\");\n    codeWrap.style.display = \"none\";\n    overlay.style.display = \"flex\";\n    setTimeout(() => overlay.classList.add(\"open\"), 0);\n  }\n  function closeGate(){\n    overlay.style.display = \"none\";\n    overlay.classList.remove(\"open\");\n    setMsg(\"\");\n    codeWrap.style.display = \"none\";\n    if (codeInput) codeInput.value = \"\";\n  }\n\n  \/\/ Expose so you can call from cube buttons\n  window.openAlbumGate = openGate;\n\n  \/\/ Open the actual album overlay (your existing function)\n  function openAlbumOverlay(){\n    \/\/ Your album overlay code defines openAlbum() inside its script.\n    \/\/ So we call it if it exists; otherwise we warn.\n    if (typeof window.openAlbum === \"function\") {\n      window.openAlbum();\n      return true;\n    }\n    \/\/ Fallback: the album code might not be global; in that case,\n    \/\/ just show a message so you know what to fix.\n    setMsg(\"Album overlay function not found. Make sure the Sticker Album code is loaded on this page.\", false);\n    return false;\n  }\n\n  \/\/ 1) Request Review flow (NO payment)\n  btnReview.addEventListener(\"click\", () => {\n    \/\/ You can also capture their email\/name if you add inputs later.\n    const subject = encodeURIComponent(REVIEW_EMAIL_SUBJECT);\n    const body = encodeURIComponent(\n      `Hello,\\n\\nI want to buy the Level 6 Digital Album ($${ALBUM_PRICE.toFixed(2)}), but I understand my account must be reviewed first.\\n\\nPlease review my account and send me my access code.\\n\\nThanks,\\n`\n    );\n    \/\/ Trigger mail client\n    window.location.href = `mailto:${REVIEW_EMAIL_TO}?subject=${subject}&body=${body}`;\n\n    setMsg(\"Review request started. Once approved, enter your code to open the album.\", true);\n  });\n\n  \/\/ 2) Enter Code flow\n  btnEnterCode.addEventListener(\"click\", () => {\n    codeWrap.style.display = \"block\";\n    setMsg(\"Enter your access code to open the album.\", false);\n    setTimeout(() => codeInput?.focus(), 50);\n  });\n\n  btnBack.addEventListener(\"click\", () => {\n    codeWrap.style.display = \"none\";\n    setMsg(\"\", false);\n  });\n\n  btnSubmitCode.addEventListener(\"click\", () => {\n    const code = (codeInput.value || \"\").trim().toUpperCase();\n    if (!code) return setMsg(\"Type your code first.\", false);\n\n    const ok = VALID_ALBUM_CODES.includes(code);\n    if (!ok) return setMsg(\"Code not recognized. Request review first, then try again.\", false);\n\n    setMsg(\"Access granted. Opening album\u2026\", true);\n    \/\/ Close gate, then open album overlay\n    closeGate();\n    setTimeout(openAlbumOverlay, 120);\n  });\n\n  \/\/ Close interactions\n  closeBtn.addEventListener(\"click\", closeGate);\n  overlay.addEventListener(\"click\", (e) => { if (e.target === overlay) closeGate(); });\n  document.addEventListener(\"keydown\", (e) => {\n    if (overlay.style.display !== \"flex\") return;\n    if (e.key === \"Escape\") closeGate();\n    if (e.key === \"Enter\" && codeWrap.style.display === \"block\") btnSubmitCode.click();\n  });\n\n})();\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>\ud83e\uddd1\u200d\ud83c\udfa4 Artist With A Dream \ud83c\udfc3\u200d\u2642\ufe0f Athletes With A Dream \ud83d\ude80 Entrepreneurs With A Dream \ud83e\uddd1\u200d\ud83c\udfa4 Artists \ud83d\udcb3 Album Individual By League Buy Packs Stickers An Event Private Show A Sponsor International Event Request Album In Events By Artist Create Event Sponsor Start-Up 10X The 17 Goals Real Hero Dreams Investor \ud83d\udcb3 Pay with Bliss [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-3106","page","type-page","status-publish","hentry"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/godsgalaxygame.com\/GGG\/wp-json\/wp\/v2\/pages\/3106","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/godsgalaxygame.com\/GGG\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/godsgalaxygame.com\/GGG\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/godsgalaxygame.com\/GGG\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/godsgalaxygame.com\/GGG\/wp-json\/wp\/v2\/comments?post=3106"}],"version-history":[{"count":73,"href":"https:\/\/godsgalaxygame.com\/GGG\/wp-json\/wp\/v2\/pages\/3106\/revisions"}],"predecessor-version":[{"id":7649,"href":"https:\/\/godsgalaxygame.com\/GGG\/wp-json\/wp\/v2\/pages\/3106\/revisions\/7649"}],"wp:attachment":[{"href":"https:\/\/godsgalaxygame.com\/GGG\/wp-json\/wp\/v2\/media?parent=3106"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}