{"id":2911,"date":"2025-07-08T05:12:49","date_gmt":"2025-07-08T05:12:49","guid":{"rendered":"https:\/\/godsgalaxygame.com\/GGG\/?page_id=2911"},"modified":"2026-09-01T00:49:48","modified_gmt":"2026-09-01T00:49:48","slug":"evolution-tours","status":"publish","type":"page","link":"https:\/\/godsgalaxygame.com\/GGG\/evolution-tours\/","title":{"rendered":"Evolution Tours"},"content":{"rendered":"\r\n<!-- ===== FULLSCREEN STARFIELD (ASTRO STYLE) for EVOLUTION TOURS ===== -->\r\n<canvas id=\"evStarfield\" aria-hidden=\"true\"><\/canvas>\r\n\r\n<style>\r\n  \/* fixed, full-bleed background behind everything in this block *\/\r\n  #evStarfield{\r\n    position: fixed; inset: 0;\r\n    width: 100%; height: 100%;\r\n    display: block; z-index: 0; pointer-events: none;\r\n  }\r\n  html, body { background:#000; }\r\n<\/style>\r\n\r\n<script>\r\n  (function(){\r\n    const c = document.getElementById('evStarfield');\r\n    if(!c) return;\r\n    const ctx = c.getContext('2d');\r\n    let W=0, H=0, dpr=1, stars=[], meteors=[];\r\n\r\n    function resize(){\r\n      dpr = Math.max(1, Math.min(2, window.devicePixelRatio||1));\r\n      W = c.width  = Math.floor(innerWidth  * dpr);\r\n      H = c.height = Math.floor(innerHeight * dpr);\r\n      c.style.width  = innerWidth  + 'px';\r\n      c.style.height = innerHeight + 'px';\r\n      buildStars();\r\n    }\r\n\r\n    function buildStars(){\r\n      const count = Math.floor((W*H) \/ (14000*dpr)); \/\/ same density as other blocks\r\n      stars = Array.from({length: count}, () => ({\r\n        x: Math.random()*W,\r\n        y: Math.random()*H,\r\n        r: (Math.random()*1.2+0.4)*dpr,\r\n        a: Math.random()*1\r\n      }));\r\n    }\r\n\r\n    function spawnMeteor(){\r\n      const startX = Math.random()<0.5 ? -50*dpr : W+50*dpr;\r\n      const dir = startX<0 ? 1 : -1;\r\n      const startY = Math.random()*H*0.6 + H*0.1;\r\n      meteors.push({ x:startX, y:startY, vx: dir*(3.2*dpr), vy: 1.2*dpr, life: 0, max: 1600 });\r\n    }\r\n\r\n    let last=0, accum=0;\r\n    function tick(ts){\r\n      const dt = Math.min(33, ts-last || 16); last=ts; accum+=dt;\r\n      if (accum>900+Math.random()*900) { spawnMeteor(); accum=0; }\r\n\r\n      ctx.setTransform(1,0,0,1,0,0);\r\n      ctx.clearRect(0,0,W,H);\r\n\r\n      \/\/ subtle cyan nebula glow\r\n      const g = ctx.createRadialGradient(W\/2,H*0.15,0, W\/2,H*0.4, Math.hypot(W,H)\/1.4);\r\n      g.addColorStop(0,'rgba(0,220,255,0.10)');\r\n      g.addColorStop(1,'rgba(0,0,0,0)');\r\n      ctx.fillStyle=g; ctx.fillRect(0,0,W,H);\r\n\r\n      \/\/ twinkle\r\n      for(const s of stars){\r\n        s.a += (Math.random()*0.06-0.03);\r\n        const a = 0.35+0.35*Math.sin(s.a);\r\n        ctx.fillStyle = `rgba(200,245,255,${a})`;\r\n        ctx.beginPath(); ctx.arc(s.x,s.y,s.r,0,Math.PI*2); ctx.fill();\r\n      }\r\n\r\n      \/\/ meteors\r\n      for (let i=meteors.length-1;i>=0;i--){\r\n        const m = meteors[i];\r\n        m.x += m.vx; m.y += m.vy; m.life += dt;\r\n\r\n        const trailX = m.x - m.vx*6;\r\n        const trailY = m.y - m.vy*6;\r\n        const grad = ctx.createLinearGradient(m.x,m.y, trailX,trailY);\r\n        grad.addColorStop(0,'rgba(0,255,255,0.9)');\r\n        grad.addColorStop(1,'rgba(0,255,255,0)');\r\n        ctx.strokeStyle = grad; ctx.lineWidth = 2*dpr; ctx.lineCap='round';\r\n        ctx.beginPath(); ctx.moveTo(m.x,m.y); ctx.lineTo(trailX, trailY); ctx.stroke();\r\n\r\n        if (m.x<-200*dpr || m.x>W+200*dpr || m.y>H+200*dpr || m.life>m.max){\r\n          meteors.splice(i,1);\r\n        }\r\n      }\r\n      requestAnimationFrame(tick);\r\n    }\r\n\r\n    addEventListener('resize', resize, {passive:true});\r\n    resize(); requestAnimationFrame(tick);\r\n  })();\r\n<\/script>\r\n<!-- ===== end EVOLUTION starfield ===== -->\r\n\r\n\r\n<!-- ===== Block 1 \u2013 Evolution Tours (Full-screen, scalable vertical pills) ===== -->\r\n<div id=\"evolutionSelector\" class=\"evoStage\">\r\n  <div id=\"evoStackContainer\">\r\n    <div class=\"theme-button btn1\" onclick=\"location.href='\/GGG\/insight\/'\">\r\n      <span>\ud83d\udca1<\/span> Insight\r\n    <\/div>\r\n    <div class=\"theme-button btn2\" onclick=\"location.href='\/GGG\/entrepeneur\/'\">\r\n      <span>\ud83d\udcbc<\/span> Entrepreneur\r\n    <\/div>\r\n    <div class=\"theme-button btn3\" onclick=\"location.href='\/GGG\/cosmic\/'\">\r\n      <span>\ud83c\udf0c<\/span> Cosmic\r\n    <\/div>\r\n    <div class=\"theme-button btn4\" onclick=\"location.href='\/GGG\/give\/'\">\r\n      <span>\ud83c\udf81<\/span> Give\r\n    <\/div>\r\n    <div class=\"theme-button btn5\" onclick=\"location.href='\/GGG\/conference\/'\">\r\n      <span>\ud83d\udde3\ufe0f<\/span> Conference\r\n    <\/div>\r\n    <div class=\"theme-button btn6\" onclick=\"location.href='\/GGG\/gastronomic\/'\">\r\n      <span>\ud83c\udf7d\ufe0f<\/span> Gastronomic\r\n    <\/div>\r\n    <div class=\"theme-button btn7\" onclick=\"activatesurvival()\">\r\n      <span>\ud83d\udc91<\/span> Survival\r\n    <\/div>\r\n  <\/div>\r\n<\/div>\r\n\r\n<style>\r\n  \/* Stage that centers the stack above starfield *\/\r\n  .evoStage{\r\n    position: fixed; inset: 0;\r\n    display: grid; place-items: center;\r\n    z-index: 5;\r\n    transition: opacity .6s ease, transform .6s ease;\r\n  }\r\n  .evoStage.hidden{ opacity:0; transform: translateY(-12vh); pointer-events:none; }\r\n\r\n  \/* ===== Master sizing (one place to scale) ===== *\/\r\n  #evoStackContainer{\r\n    --stackW: clamp(300px, 64vmin, 820px);   \/* overall width *\/\r\n    --pillH:  clamp(64px, 10vmin, 120px);    \/* pill height *\/\r\n    --pillFS: clamp(14px, 2.4vmin, 22px);    \/* label font *\/\r\n    --emojiFS: clamp(22px, 4.2vmin, 40px);   \/* emoji size *\/\r\n    --gap:    clamp(10px, 2.2vmin, 22px);    \/* spacing *\/\r\n    --radius: 999px;                         \/* pill roundness *\/\r\n    --border: .45vmin;                       \/* border thickness *\/\r\n\r\n    width: var(--stackW);\r\n    display: flex; flex-direction: column; align-items: stretch;\r\n    gap: var(--gap);\r\n    padding-inline: 2vmin;\r\n  }\r\n\r\n  .theme-button{\r\n    height: var(--pillH);\r\n    border-radius: var(--radius);\r\n    border: var(--border) solid cyan;\r\n    background: rgba(0,0,0,.6);\r\n    color:#fff; font-family: Orbitron, sans-serif; font-weight: 800;\r\n    font-size: var(--pillFS); text-align:center;\r\n    box-shadow: 0 0 2.6vmin cyan;\r\n    display:flex; flex-direction:column; justify-content:center; align-items:center;\r\n    cursor:pointer; -webkit-tap-highlight-color: transparent;\r\n    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;\r\n  }\r\n  .theme-button:hover{ transform: translateY(-2px); box-shadow: 0 0 3.2vmin cyan; }\r\n  .theme-button span{ font-size: var(--emojiFS); line-height:1; margin-bottom: .35em; }\r\n\r\n  \/* Individual glow colors *\/\r\n  .btn1{ box-shadow: 0 0 2.6vmin deeppink;   border-color: deeppink; }\r\n  .btn2{ box-shadow: 0 0 2.6vmin darkviolet; border-color: darkviolet; }\r\n  .btn3{ box-shadow: 0 0 2.6vmin blue;       border-color: blue; }\r\n  .btn4{ box-shadow: 0 0 2.6vmin green;      border-color: green; }\r\n  .btn5{ box-shadow: 0 0 2.6vmin gold;       border-color: gold; }\r\n  .btn6{ box-shadow: 0 0 2.6vmin yellow;     border-color: yellow; }\r\n  .btn7{ box-shadow: 0 0 2.6vmin red;        border-color: red; }\r\n\r\n  \/* Phones: let it run edge-to-edge *\/\r\n  @media (max-width: 480px){\r\n    #evoStackContainer{\r\n      --stackW: 92vmin;   \/* nearly full width *\/\r\n      padding-inline: 0;\r\n    }\r\n  }\r\n<\/style>\r\n\r\n<script>\r\n  function activatesurvival() {\r\n    const selector = document.getElementById(\"evolutionSelector\");\r\n    if (selector) selector.classList.add(\"hidden\");\r\n\r\n    const cube  = document.getElementById(\"survivalCubeContainer\");\r\n    const map   = document.getElementById(\"glowMapContainer\");\r\n    if (cube){ cube.style.opacity=\"1\"; cube.style.pointerEvents=\"auto\"; }\r\n    if (map){  map.style.opacity=\"1\";  map.style.pointerEvents=\"auto\"; }\r\n  }\r\n<\/script>\r\n\r\n\r\n\r\n<!-- ============================\r\nGLOBAL PREVIEW + ROUTE + INFO + DATES\r\n(Survival \/ Level 4)\r\n============================ -->\r\n<script>\r\n(() => {\r\n  \/* ============ 1) VIDEOS PARA SEE PREVIEW ============ *\/\r\n  \/\/ La clave debe ser una clase que tenga el c\u00edrculo .host-circle\r\n  const PREVIEW_MEDIA = {\r\n    \/\/ NETWORK\r\n    \"net-social\": {\r\n      type: \"video\",\r\n      src: \"https:\/\/youtu.be\/BKp6Mra7og4\"\r\n    },\r\n    \"net-busi\": {\r\n      type: \"video\",\r\n      src: \"https:\/\/youtu.be\/sEIZSC1UWFA?si=WDlMG3Z4eSWYy5rq\"\r\n    },\r\n\r\n    \/\/ DINNER\r\n    \"dine-hop\": {\r\n      type: \"video\",\r\n      src: \"https:\/\/youtu.be\/HBvJfNwjyVk?si=YCqUFWYPc7Q926rh\"\r\n    },\r\n    \"dine-festiva\": {\r\n      type: \"video\",\r\n      src: \"https:\/\/youtu.be\/L1INLthS_ek?si=3SjKrV6oGoIroXcM\"\r\n    },\r\n    \"dine-prog\": {\r\n      type: \"video\",\r\n      src: \"https:\/\/youtu.be\/BKp6Mra7og4\"\r\n    },\r\n    \"dine-city\": {\r\n      type: \"video\",\r\n      src: \"https:\/\/youtu.be\/hE5aemWFWCY?si=y1F8qshdZSEAK_hS\"\r\n    }\r\n    \/\/ Los que no est\u00e1n aqu\u00ed usar\u00e1n la imagen de fondo del c\u00edrculo como preview\r\n  };\r\n\r\n  \/* ============ 1.5) KML PARA SHOW ROUTE ============ *\/\r\n  const ROUTE_KMLS = {\r\n    \/\/ NETWORK\r\n    \"net-social\":  \"https:\/\/godsgalaxygame.com\/Kml\/Network%20Social.kml\",\r\n    \"net-digital\": \"https:\/\/godsgalaxygame.com\/Kml\/Network%20Digital.kml\",\r\n    \"net-busi\":    \"https:\/\/godsgalaxygame.com\/Kml\/Network%20Business.kml\",\r\n    \"net-famo\":    \"https:\/\/godsgalaxygame.com\/Kml\/Network%20Famous.kml\",\r\n\r\n    \/\/ DATING\r\n    \"date-contest\": \"https:\/\/godsgalaxygame.com\/Kml\/Dating%20Contest.kml\",\r\n    \"date-fb\":      \"https:\/\/godsgalaxygame.com\/Kml\/Dating%20FB.kml\",\r\n    \"date-blind\":   \"https:\/\/godsgalaxygame.com\/Kml\/Dating%20Blind.kml\",\r\n    \"date-social\":  \"https:\/\/godsgalaxygame.com\/Kml\/Dating%20Social%202.kml\",\r\n\r\n    \/\/ DINNER\r\n    \"dine-hop\":     \"https:\/\/godsgalaxygame.com\/Kml\/Dinner%20Hop.kml\",\r\n    \"dine-festiva\": \"https:\/\/godsgalaxygame.com\/Kml\/Dinner%20Festival.kml\",\r\n    \"dine-prog\":    \"https:\/\/godsgalaxygame.com\/Kml\/Dinner%20Progressive.kml\",\r\n    \"dine-city\":    \"https:\/\/godsgalaxygame.com\/Kml\/Dinner%20City.kml\",\r\n\r\n    \/\/ MARRY\r\n    \"marry-meet\":   \"https:\/\/godsgalaxygame.com\/Kml\/Marry%20Meet%20Family.kml\",\r\n    \"marry-wed\":    \"https:\/\/godsgalaxygame.com\/Kml\/Marry%20Wed%20Plan.kml\",\r\n    \"marry-tv\":     \"https:\/\/godsgalaxygame.com\/Kml\/Marry%20TV%20Pick%201.kml\",\r\n    \"marry-marry\":  \"https:\/\/godsgalaxygame.com\/Kml\/Marry%20Marry.kml\"\r\n  };\r\n\r\n  \/* ============ 1.6) LINKS EXTERNOS (MORE INFO) ============ *\/\r\n  const INFO_LINKS = {\r\n    \/\/ NETWORK\r\n    \"net-social\":  \"https:\/\/www.instagram.com\/blissclub_eventos?igsh=MTR6emJxazZiNWtqYg==\",\r\n    \"net-digital\": \"https:\/\/intercambio.godaddysites.com\/\",\r\n    \"net-busi\":    \"https:\/\/plazamayor.com.co\/eventos-pm\/\",\r\n    \"net-famo\":    \"https:\/\/intercambio.godaddysites.com\/\",\r\n\r\n    \/\/ DATING\r\n    \"date-contest\": \"https:\/\/www.instagram.com\/blissclub_eventos?igsh=MTR6emJxazZiNWtqYg==\",\r\n    \"date-fb\":      \"https:\/\/intercambio.godaddysites.com\/\",\r\n    \"date-blind\":   \"https:\/\/www.instagram.com\/blissclub_eventos?igsh=MTR6emJxazZiNWtqYg==\",\r\n    \"date-social\":  \"https:\/\/www.instagram.com\/blissclub_eventos?igsh=MTR6emJxazZiNWtqYg==\",\r\n\r\n    \/\/ DINNER\r\n    \"dine-hop\":     \"https:\/\/www.instagram.com\/blissclub_eventos?igsh=MTR6emJxazZiNWtqYg==\",\r\n    \"dine-festiva\": \"https:\/\/medellingourmet.com\/\",\r\n    \"dine-prog\":    \"https:\/\/www.instagram.com\/blissclub_eventos?igsh=MTR6emJxazZiNWtqYg==\",\r\n    \"dine-city\":    \"https:\/\/www.instagram.com\/barrioprovenza?igsh=MW1jeGpqeWJ5eGloeg==\",\r\n\r\n    \/\/ MARRY\r\n    \"marry-meet\":   \"https:\/\/www.instagram.com\/bliss_glamping?igsh=MTc0dXpsZmQ3djQ4bg==\",\r\n    \"marry-wed\":    \"https:\/\/www.instagram.com\/blissclub_eventos?igsh=MTR6emJxazZiNWtqYg==\",\r\n    \"marry-tv\":     \"https:\/\/intercambio.godaddysites.com\/\",\r\n    \"marry-marry\":  \"https:\/\/www.instagram.com\/blissclub_eventos?igsh=MTR6emJxazZiNWtqYg==\"\r\n  };\r\n\r\n  \/* ============ 2) ESTADO INTERNO ============ *\/\r\n  let state = { key: null, type: null, src: null, title: null };\r\n  let currentKmlLayer = null;\r\n\r\n  const until = (fn, timeout = 8000, every = 120) => new Promise((res, rej) => {\r\n    const t0 = performance.now();\r\n    const tick = () => {\r\n      const out = fn();\r\n      if (out) return res(out);\r\n      if (performance.now() - t0 > timeout) return rej(new Error('timeout'));\r\n      setTimeout(tick, every);\r\n    };\r\n    tick();\r\n  });\r\n\r\n  const getBgURL = (el) => {\r\n    const bg = (getComputedStyle(el).backgroundImage || '').trim();\r\n    return bg.replace(\/^url\\((['\"]?)(.*)\\1\\)$\/, '$2');\r\n  };\r\n\r\n  const make = (tag, attrs = {}, html = '') => {\r\n    const el = document.createElement(tag);\r\n    Object.entries(attrs).forEach(([k, v]) => el.setAttribute(k, v));\r\n    if (html) el.innerHTML = html;\r\n    return el;\r\n  };\r\n\r\n  \/\/ Convierte YouTube\/Vimeo en iframe con AUTOPLAY\r\n  const embedFrom = (url) => {\r\n    if (\/youtube\\.com\\\/embed\\\/\/i.test(url)) {\r\n      const hasQuery = url.includes(\"?\");\r\n      return `<iframe src=\"${url}${hasQuery ? \"&#038;\" : \"?\"}autoplay=1&#038;rel=0&#038;playsinline=1\"\r\n        allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\"\r\n        allowfullscreen><\/iframe>`;\r\n    }\r\n\r\n    const yt = url.match(\/(?:youtu\\.be\\\/|youtube\\.com\\\/watch\\?v=)([\\w\\-]+)\/i);\r\n    const vm = url.match(\/vimeo\\.com\\\/(\\d+)\/i);\r\n\r\n    if (yt) {\r\n      const id = yt[1];\r\n      return `<iframe src=\"https:\/\/www.youtube.com\/embed\/${id}?autoplay=1&#038;rel=0&#038;playsinline=1\"\r\n        allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\"\r\n        allowfullscreen><\/iframe>`;\r\n    }\r\n\r\n    if (vm) {\r\n      const id = vm[1];\r\n      return `<iframe src=\"https:\/\/player.vimeo.com\/video\/${id}?autoplay=1\"\r\n        allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write\"\r\n        allowfullscreen><\/iframe>`;\r\n    }\r\n\r\n    \/\/ Cualquier otro URL: link general\r\n    return `<a href=\"${url}\" target=\"_blank\" style=\"color:#00ffff; font-weight:900; text-decoration:underline;\">Open link<\/a>`;\r\n  };\r\n\r\n  \/* ============ 3) ESTILOS + UI EN EL MAPA ============ *\/\r\n  function injectStyles() {\r\n    if (document.getElementById('ggg-preview-styles')) return;\r\n    const css = `\r\n#glowMapContainer{ position:relative; }\r\n#accSeePreview, #accShowRoute, #accMoreInfo, #accSeeDates{\r\n  position:absolute; left:50%; transform:translateX(-50%);\r\n  padding:6px 13px;\r\n  border-radius:999px; border:2px solid rgba(0,255,255,.7);\r\n  background:rgba(0,0,0,.7); color:#eafcff;\r\n  font-family:Orbitron,system-ui,sans-serif; font-weight:900; letter-spacing:.2px;\r\n  box-shadow:0 0 16px rgba(0,255,255,.45);\r\n  cursor:pointer; z-index:1200; display:none;\r\n  font-size:11px;\r\n}\r\n#accSeePreview{ bottom:82px; }\r\n#accShowRoute{ bottom:58px; }\r\n#accMoreInfo{  bottom:34px; }\r\n#accSeeDates{  bottom:10px; }\r\n\r\n#accSeePreview:hover, #accShowRoute:hover, #accMoreInfo:hover, #accSeeDates:hover{\r\n  box-shadow:0 0 22px rgba(0,255,255,.85);\r\n}\r\n#accPreviewOverlay{\r\n  position:absolute; inset:0; display:none; place-items:center;\r\n  background: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,.30), rgba(0,0,0,.65) 70%);\r\n  z-index:1300;\r\n}\r\n.acc-preview-circle{\r\n  width: clamp(200px, 62%, 300px); aspect-ratio:1\/1;\r\n  border-radius:50%; border:4px solid rgba(0,255,255,.75);\r\n  box-shadow: 0 0 28px rgba(0,255,255,.6), inset 0 0 22px rgba(0,255,255,.25);\r\n  background:#000; overflow:hidden; position:relative;\r\n  display:grid; place-items:center;\r\n}\r\n.acc-closeX{\r\n  position:absolute; top:6px; right:8px; z-index:2;\r\n  border:0; background:rgba(0,0,0,.55); color:#9fefff;\r\n  font-size:20px; font-weight:900; width:28px; height:28px;\r\n  border-radius:50%; cursor:pointer; line-height:26px;\r\n  box-shadow:0 0 10px rgba(0,255,255,.35);\r\n}\r\n#accPreviewMedia{ width:92%; height:92%; display:grid; place-items:center; }\r\n#accPreviewMedia img{ width:100%; height:100%; object-fit:cover; border-radius:50%; display:block; }\r\n#accPreviewMedia iframe{ width:100%; height:100%; border:0; border-radius:50%; }`;\r\n    const style = make('style', { id: 'ggg-preview-styles' }, css);\r\n    document.head.appendChild(style);\r\n  }\r\n\r\n  function mountUI(mapWrap) {\r\n    if (document.getElementById('accSeePreview')) {\r\n      return {\r\n        btnPreview: document.getElementById('accSeePreview'),\r\n        btnRoute: document.getElementById('accShowRoute'),\r\n        btnInfo: document.getElementById('accMoreInfo'),\r\n        btnDates: document.getElementById('accSeeDates'),\r\n        overlay: document.getElementById('accPreviewOverlay'),\r\n        media: document.getElementById('accPreviewMedia')\r\n      };\r\n    }\r\n\r\n    const btnPrev  = make('button', { id: 'accSeePreview', 'aria-haspopup': 'dialog' }, '\ud83d\udc41\ufe0f See Preview');\r\n    const btnRoute = make('button', { id: 'accShowRoute', 'aria-haspopup': 'false' }, '\ud83d\udccd Show Route');\r\n    const btnInfo  = make('button', { id: 'accMoreInfo', 'aria-haspopup': 'false' }, '\ud83d\udd17 More Info');\r\n    const btnDates = make('button', { id: 'accSeeDates', 'aria-haspopup': 'dialog' }, '\ud83d\udcc5 See Dates');\r\n\r\n    const overlay = make('div', { id: 'accPreviewOverlay', 'aria-hidden': 'true' });\r\n    overlay.innerHTML = `\r\n      <div class=\"acc-preview-circle\" role=\"dialog\" aria-label=\"Map preview\">\r\n        <button class=\"acc-closeX\" aria-label=\"Close preview\">\u00d7<\/button>\r\n        <div id=\"accPreviewMedia\"><\/div>\r\n      <\/div>`;\r\n\r\n    mapWrap.appendChild(btnPrev);\r\n    mapWrap.appendChild(btnRoute);\r\n    mapWrap.appendChild(btnInfo);\r\n    mapWrap.appendChild(btnDates);\r\n    mapWrap.appendChild(overlay);\r\n\r\n    const media = document.getElementById('accPreviewMedia');\r\n    const closeBtn = overlay.querySelector('.acc-closeX');\r\n\r\n    \/\/ Abrir PREVIEW\r\n    btnPrev.addEventListener('click', () => {\r\n      if (!state.src) return;\r\n      media.innerHTML = state.type === 'video'\r\n        ? embedFrom(state.src)\r\n        : `<img decoding=\"async\" src=\"${state.src}\" alt=\"${state.title || 'Preview'}\">`;\r\n\r\n      overlay.style.display = 'grid';\r\n      overlay.setAttribute('aria-hidden', 'false');\r\n    });\r\n\r\n    \/\/ Cerrar PREVIEW\r\n    const close = () => {\r\n      overlay.style.display = 'none';\r\n      overlay.setAttribute('aria-hidden', 'true');\r\n      media.innerHTML = '';\r\n    };\r\n    closeBtn.addEventListener('click', close);\r\n    overlay.addEventListener('click', (e) => { if (e.target === overlay) close(); });\r\n    window.addEventListener('keydown', (e) => { if (e.key === 'Escape') close(); }, { passive: true });\r\n\r\n    \/\/ CLICK EN SHOW ROUTE (zoom fijo 13)\r\n    btnRoute.addEventListener('click', () => {\r\n      if (!state.key) return;\r\n      const url = ROUTE_KMLS[state.key];\r\n      if (!url || !window.ggMap || !window.google) return;\r\n\r\n      if (currentKmlLayer) {\r\n        currentKmlLayer.setMap(null);\r\n        currentKmlLayer = null;\r\n      }\r\n\r\n      currentKmlLayer = new google.maps.KmlLayer({\r\n        url,\r\n        map: window.ggMap,\r\n        suppressInfoWindows: false,\r\n        preserveViewport: false\r\n      });\r\n\r\n      google.maps.event.addListenerOnce(currentKmlLayer, 'status_changed', () => {\r\n        google.maps.event.addListenerOnce(window.ggMap, 'idle', () => {\r\n          window.ggMap.setZoom(13);\r\n        });\r\n      });\r\n    });\r\n\r\n    \/\/ CLICK EN MORE INFO (abre link externo)\r\n    btnInfo.addEventListener('click', () => {\r\n      if (!state.key) return;\r\n      const url = INFO_LINKS[state.key];\r\n      if (!url) return;\r\n      window.open(url, '_blank');\r\n    });\r\n\r\n    \/\/ CLICK EN SEE DATES (placeholder creativo)\r\n    btnDates.addEventListener('click', () => {\r\n      const label = state.title || 'this Survival Tour';\r\n      alert(`\ud83d\udcc5 Dates for ${label} are coming soon.\\nThey will appear here inside Gods Galaxy Game \u2013 Survival Tours Level.`);\r\n    });\r\n\r\n    return { btnPreview: btnPrev, btnRoute, btnInfo, btnDates, overlay, media };\r\n  }\r\n\r\n  \/* ============ 4) LEER CLAVE DESDE EL C\u00cdRCULO ============ *\/\r\n  function keyFromClasses(el) {\r\n    const classes = [...el.classList];\r\n    const anyKnown = classes.find(c => PREVIEW_MEDIA[c] || ROUTE_KMLS[c] || INFO_LINKS[c]);\r\n    return anyKnown || null;\r\n  }\r\n\r\n  function hookCircles(btnPrev, btnRoute, btnInfo, btnDates) {\r\n    const wrap = document.getElementById('hostButtons');\r\n    if (!wrap) return;\r\n\r\n    wrap.addEventListener('click', (e) => {\r\n      const el = e.target.closest('.host-circle');\r\n      if (!el) return;\r\n\r\n      const key = keyFromClasses(el);\r\n      const cfg = key ? PREVIEW_MEDIA[key] : null;\r\n      const title = el.getAttribute('title') || '';\r\n\r\n      const fallbackImg = getBgURL(el);\r\n      state = {\r\n        key,\r\n        type: cfg?.type || 'image',\r\n        src:  cfg?.src || fallbackImg,\r\n        title\r\n      };\r\n\r\n      \/\/ See Preview: si hay video o al menos imagen\r\n      if (btnPrev) {\r\n        btnPrev.style.display = state.src ? 'block' : 'none';\r\n      }\r\n\r\n      \/\/ Show Route: solo si existe KML\r\n      if (btnRoute) {\r\n        btnRoute.style.display = (key && ROUTE_KMLS[key]) ? 'block' : 'none';\r\n      }\r\n\r\n      \/\/ More Info: solo si hay link externo\r\n      if (btnInfo) {\r\n        btnInfo.style.display = (key && INFO_LINKS[key]) ? 'block' : 'none';\r\n      }\r\n\r\n      \/\/ See Dates: siempre visible cuando hay selecci\u00f3n\r\n      if (btnDates) {\r\n        btnDates.style.display = key ? 'block' : 'none';\r\n      }\r\n\r\n    }, { passive: true });\r\n  }\r\n\r\n  \/* ============ 5) ARRANQUE ============ *\/\r\n  async function boot() {\r\n    try {\r\n      injectStyles();\r\n\r\n      await until(() => window.ggMap && document.getElementById('glowMapContainer'));\r\n      const mapWrap = document.getElementById('glowMapContainer');\r\n      const refs = mountUI(mapWrap);\r\n\r\n      await until(() => document.getElementById('hostButtons'));\r\n      hookCircles(refs.btnPreview, refs.btnRoute, refs.btnInfo, refs.btnDates);\r\n\r\n      console.log('%c[GGG Survival Preview+Route+Info+Dates] Ready', 'color:#0ff');\r\n    } catch (e) {\r\n      console.warn('[GGG Survival Preview+Route+Info+Dates] init failed:', e);\r\n    }\r\n  }\r\n\r\n  if (document.readyState === 'loading') {\r\n    document.addEventListener('DOMContentLoaded', boot);\r\n  } else {\r\n    boot();\r\n  }\r\n})();\r\n<\/script>\r\n\r\n\r\n\r\n<!-- BLOQUE 2 - Survival Tours Cube V19 Completo + Mapa Circular + API -->\r\n<style>\r\n  @media (max-width: 768px) {\r\n    #glowMapContainer {\r\n      margin-top: -55px !important;\r\n    }\r\n  }\r\n<\/style>\r\n<div id=\"survivalCubeContainer\" style=\"opacity:0; pointer-events:none; transition: opacity 0.6s ease;\">\r\n  <!-- ESCENA CUBO -->\r\n  <div class=\"cube-scene\" style=\"width:180px; height:180px; perspective:1000px; position:fixed; bottom:20px; left:20px; z-index:1000;\">\r\n    <div class=\"cube\" id=\"survivalCube\" style=\"width:100%; height:100%; position:relative; transform-style:preserve-3d; transform:rotateX(0deg) rotateY(0deg); transition:transform 0.3s ease;\">\r\n   <!-- FRONT -->\r\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;\">\r\n        <div style=\"font-size:42px; color:white; text-shadow:0 0 15px white;\">\ud83d\udc91<\/div>\r\n        <div style=\"font-size:16px; color:white; font-weight:bold; text-shadow:0 0 10px white; margin-top:6px;\">Survival<\/div>\r\n      <\/div>\r\n\r\n      <!-- Cara Trasera del Cubo: Transportation -->\r\n<!-- Back Face - Transportation Cube - Nuevo Dise\u00f1o con Botones Circulares -->\r\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;\">\r\n\r\n  <!-- Sol central -->\r\n  <img decoding=\"async\" src=\"http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/06\/1000065346-scaled.jpg\"\r\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;\" \/>\r\n\r\n  <!-- Reserve -->\r\n  <a href=\"https:\/\/godsgalaxygame.com\/GGG\/medayork-pyramid-2\/?travelclub=1&#038;access=Galaxy2025&#038;open=evolution\r\n\" target=\"_blank\"\r\n\r\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;\"\r\n     title=\"Reserve\"><\/a>\r\n\r\n  <!-- Bliss Coin -->\r\n  <div onclick=\"openBlissCoinPopup()\"\r\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;\"\r\n       title=\"Pay with Bliss Coin\">\ud83d\udcb3<\/div>\r\n\r\n  <!-- Coupon Button (Bottom-Left Corner) -->\r\n<a href=\"https:\/\/godsgalaxygame.com\/GGG\/discounts-gift\/\"\r\n   target=\"_blank\"\r\n   style=\"position: absolute;\r\n          bottom: 8px;\r\n          left: 8px;\r\n          width: 44px;\r\n          height: 44px;\r\n          border-radius: 50%;\r\n          background-image: url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/06\/Screenshot_20240108-225546_Chrome.jpg');\r\n          background-size: cover;\r\n          box-shadow: 0 0 12px cyan;\r\n          cursor: pointer;\"\r\n   title=\"Get Coupons\">\r\n<\/a>\r\n\r\n  <!-- Become a Host -->\r\n  <a href=\"https:\/\/luxus2.godaddysites.com\/\" target=\"_blank\"\r\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;\"\r\n     title=\"Become a Host\"><\/a>\r\n<\/div>\r\n\r\n\r\n\r\n      <!-- RIGHT (Network) -->\r\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;\">\r\n        <button onclick=\"showHostButtons('net-social')\" style=\"position:absolute; top:8px; left:27px; width:126px; height:17px; border:1px solid beige; color:white; background:transparent;\">Social<\/button>\r\n        <button onclick=\"showHostButtons('net-digital')\" style=\"position:absolute; bottom:8px; left:27px; width:126px; height:17px; border:1px solid beige; color:white; background:transparent;\">Digital<\/button>\r\n        <button onclick=\"showHostButtons('net-busi')\" style=\"position:absolute; top:27px; left:8px; height:126px; width:17px; border:1px solid beige; color:white; writing-mode:vertical-rl; background:transparent;\">Business<\/button>\r\n        <button onclick=\"showHostButtons('net-famo')\" style=\"position:absolute; top:27px; right:8px; height:126px; width:17px; border:1px solid beige; color:white; writing-mode:vertical-lr; background:transparent;\">Famous<\/button>\r\n        <div style=\"position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); text-align:center;\">\r\n          <div style=\"color:beige; font-size:16px; font-weight:bold;\">Network<\/div>\r\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;\">\r\n        <\/div>\r\n      <\/div>\r\n\r\n      <!-- LEFT (Dating) -->\r\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;\">\r\n        <button onclick=\"showHostButtons('date-contest')\" style=\"position:absolute; top:8px; left:27px; width:126px; height:17px; border:1px solid #00ccff; color:white; background:transparent;\">Contest<\/button>\r\n        <button onclick=\"showHostButtons('date-fb')\" style=\"position:absolute; bottom:8px; left:27px; width:126px; height:17px; border:1px solid #00ccff; color:white; background:transparent;\">FB<\/button>\r\n        <button onclick=\"showHostButtons('date-blind')\" style=\"position:absolute; top:27px; left:8px; height:126px; width:17px; border:1px solid #00ccff; color:white; writing-mode:vertical-rl; background:transparent;\">Blind<\/button>\r\n        <button onclick=\"showHostButtons('date-social')\" style=\"position:absolute; top:27px; right:8px; height:126px; width:17px; border:1px solid #00ccff; color:white; writing-mode:vertical-lr; background:transparent;\">Social<\/button>\r\n        <div style=\"position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); text-align:center;\">\r\n          <div style=\"color:#00ccff; font-size:16px; font-weight:bold;\">Dating<\/div>\r\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;\">\r\n        <\/div>\r\n      <\/div>\r\n\r\n      <!-- TOP (Dinner) -->\r\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;\">\r\n        <button onclick=\"showHostButtons('dine-hop')\" style=\"position:absolute; top:8px; left:27px; width:126px; height:17px; border:1px solid green; color:white; background:transparent;\">Hop<\/button>\r\n        <button onclick=\"showHostButtons('dine-festiva')\" style=\"position:absolute; bottom:8px; left:27px; width:126px; height:17px; border:1px solid green; color:white; background:transparent;\">Festival<\/button>\r\n        <button onclick=\"showHostButtons('dine-prog')\" style=\"position:absolute; top:27px; left:8px; height:126px; width:17px; border:1px solid green; color:white; writing-mode:vertical-rl; background:transparent;\">Progressive<\/button>\r\n        <button onclick=\"showHostButtons('dine-city')\" style=\"position:absolute; top:27px; right:8px; height:126px; width:17px; border:1px solid green; color:white; writing-mode:vertical-lr; background:transparent;\">City<\/button>\r\n        <div style=\"position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); text-align:center;\">\r\n          <div style=\"color:#33ff33; font-size:16px; font-weight:bold;\">Dinner<\/div>\r\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;\">\r\n        <\/div>\r\n      <\/div>\r\n\r\n      <!-- BOTTOM (Marry) -->\r\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;\">\r\n        <button onclick=\"showHostButtons('marry-meet')\" style=\"position:absolute; top:8px; left:27px; width:126px; height:17px; border:1px solid red; color:white; background:transparent;\">Meet Fam.<\/button>\r\n        <button onclick=\"showHostButtons('marry-wed')\" style=\"position:absolute; bottom:8px; left:27px; width:126px; height:17px; border:1px solid red; color:white; background:transparent;\">Wed Plan<\/button>\r\n        <button onclick=\"showHostButtons('marry-tv')\" style=\"position:absolute; top:27px; left:8px; height:126px; width:17px; border:1px solid red; color:white; writing-mode:vertical-rl; background:transparent;\">Tv Picm 1<\/button>\r\n        <button onclick=\"showHostButtons('marry-marry')\" style=\"position:absolute; top:27px; right:8px; height:126px; width:17px; border:1px solid red; color:white; writing-mode:vertical-lr; background:transparent;\">Marry<\/button>\r\n        <div style=\"position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); text-align:center;\">\r\n          <div style=\"color:red; font-size:16px; font-weight:bold;\">Marry<\/div>\r\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;\">\r\n        <\/div>\r\n      <\/div>\r\n\r\n    <\/div>\r\n  <\/div>\r\n\r\n  <!-- MAPA CIRCULAR -->\r\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;\">\r\n    <div id=\"googleMap\" style=\"width:100%; height:100%;\"><\/div>\r\n  <\/div>\r\n<\/div>\r\n\r\n<!-- Google Maps API (clave v\u00e1lida y correcta) -->\r\n<script src=\"https:\/\/maps.googleapis.com\/maps\/api\/js?key=AIzaSyDLPhx98z9AgoqXS6VeoESE9NV6URuOhiE&#038;callback=initMap\" async defer><\/script>\r\n\r\n<script>\r\n  function activatsurvivalCube() {\r\n    \/\/ Oculta el grid de opciones\r\n    const rrGrid = document.getElementById(\"rrGrid\");\r\n    if (rrGrid) {\r\n      rrGrid.style.display = \"none\";\r\n    }\r\n\r\n    \/\/ Muestra el contenedor del cubo Survival \r\n    const container = document.getElementById(\"survivalCubeContainer\");\r\n    if (container) {\r\n      container.style.opacity = \"1\";\r\n      container.style.pointerEvents = \"auto\";\r\n    }\r\n\r\n    \/\/ Muestra el mapa\r\n    const map = document.getElementById(\"glowMapContainer\");\r\n    if (map) {\r\n      map.style.opacity = \"1\";\r\n      map.style.pointerEvents = \"auto\";\r\n    }\r\n\r\n    \/\/ Reinicia el mapa si es necesario\r\n    if (typeof initMap === \"function\") {\r\n      initMap();\r\n    }\r\n  }\r\n<\/script>\r\n<script>\r\n function initMap() {\r\n  const map = new google.maps.Map(document.getElementById(\"googleMap\"), {\r\n    center: { lat: 6.2414088, lng: -75.22951 },  \/\/ Bliss Glamping\r\n    zoom: 15,\r\n    disableDefaultUI: true,\r\n    gestureHandling: \"greedy\"\r\n  });\r\n\r\n  \/\/ \ud83d\udfe2 Add this to show the marker\r\n  const marker = new google.maps.Marker({\r\n    position: { lat: 6.2414088, lng: -75.22951 },\r\n    map: map,\r\n    title: \"Bliss Glamping\"\r\n  });\r\n\r\n  \/\/ Optional: save the map to global variable if needed later\r\n  window.ggMap = map;\r\n}\r\n<\/script>\r\n<!-- POP-UP para Bliss Coin -->\r\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;\">\r\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;\">\r\n    <h3 style=\"font-size:18px;\">\ud83d\udcb3 Pay with Bliss Coin<\/h3>\r\n    <p style=\"font-size:14px;\">Enter your digital wallet #:<\/p>\r\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;\" \/>\r\n    <p style=\"margin-top:14px;\">Send payment to:<\/p>\r\n    <div style=\"margin:8px auto; padding:6px; background:#222; border:1px solid cyan; border-radius:8px;\">\r\n      <code style=\"font-size:13px;\">HOST-WALLET-ADDRESS-123<\/code>\r\n    <\/div>\r\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;\">\r\n      Close\r\n    <\/button>\r\n  <\/div>\r\n<\/div>\r\n\r\n<script>\r\n  function openBlissCoinPopup() {\r\n    document.getElementById('blissCoinPopup').style.display = 'flex';\r\n  }\r\n  function closeBlissCoinPopup() {\r\n    document.getElementById('blissCoinPopup').style.display = 'none';\r\n  }\r\n<\/script>\r\n\r\n\r\n\r\n<!-- BLOQUE 3 \u2013 Movimiento + Swipe + SignIn + Favoritos (First You) -->\r\n\r\n<!-- ESTILOS -->\r\n<style>\r\n  #floatingButtons {\r\n    position: fixed;\r\n    top: 14px;\r\n    right: 14px;\r\n    display: flex;\r\n    flex-direction: row;\r\n    gap: 10px;\r\n    z-index: 3000;\r\n  }\r\n\r\n  #favoritesBtn, #signinBtn {\r\n    font-size: 15px;\r\n    padding: 6px 10px;\r\n    border-radius: 8px;\r\n    border: 2px solid white;\r\n    color: white;\r\n    background: rgba(0, 0, 0, 0.6);\r\n    cursor: pointer;\r\n    box-shadow: 0 0 8px cyan;\r\n    font-family: Orbitron;\r\n  }\r\n\r\n  #favoritesBtn:hover::after {\r\n    content: ' Double click a Host to add \ud83d\udc98';\r\n    font-size: 10px;\r\n    margin-left: 8px;\r\n    color: cyan;\r\n  \r\n}\r\n  #pyramidBtn {\r\n    width: 38px;\r\n    height: 38px;\r\n    background-color: black;\r\n    border: 2px solid white;\r\n    border-radius: 50%;\r\n    box-shadow: 0 0 10px cyan; \/* glow *\/\r\n    display: flex;\r\n    justify-content: center;\r\n    align-items: center;\r\n    font-size: 20px; \/* emoji size *\/\r\n    cursor: pointer;\r\n    margin-top: 2px; \/* align with rose *\/\r\n  }\r\n\r\n\r\n#roseBtn {\r\n  width: 38px;\r\n  height: 38px;\r\n  background-color: black; \/* Keep black background *\/\r\n  background-image: url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/07\/ChatGPT-Image-Jul-7-2025-05_11_38-PM.png');\r\n  background-size: cover;\r\n  background-position: center;\r\n  border: 2px solid white; \/* Optional white border *\/\r\n  border-radius: 50%;\r\n  box-shadow: 0 0 10px white; \/* White glow around the button *\/\r\n  cursor: pointer;\r\n  margin-top: 2px; \/* Adjust position to align with others *\/\r\n}\r\n\r\n#roseBtn:hover {\r\n  transform: scale(1.2);\r\n}\r\n\r\n  #signinBtn:hover::after {\r\n    content: ' Sign in to save your Favorites';\r\n    font-size: 10px;\r\n    margin-left: 8px;\r\n    color: cyan;\r\n  }\r\n\r\n  #swipeImage {\r\n    position: fixed;\r\n    top: 0;\r\n    left: 50%;\r\n    transform: translateX(-50%);\r\n    width: 160px;\r\n    z-index: 1200;\r\n    display: none;\r\n  }\r\n#swipeImage {\r\n  display: none !important;\r\n}\r\n\r\n<\/style>\r\n\r\n<!-- BOTONES FLOTANTES -->\r\n<div id=\"floatingButtons\">\r\n<button\r\n    id=\"pyramidBtn\"\r\n    title=\"Back to MedaYork Pyramid\"\r\n    onclick=\"window.location.href='https:\/\/godsgalaxygame.com\/GGG\/medayork-pyramid-2\/';\">\r\n    \ud83e\uddca\r\n  <\/button>\r\n<button id=\"roseBtn\"><\/button>\r\n\r\n  <button id=\"favoritesBtn\">\ud83d\udc96<\/button>\r\n  <button id=\"signinBtn\">Sign In \/ Sign Up<\/button>\r\n<\/div>\r\n\r\n<!-- IMAGEN DE SWIPE -->\r\n<img decoding=\"async\" id=\"swipeImage\" src=\"https:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/06\/Screenshot_20250627_154147_Gallery.jpg\" alt=\"Swipe\" \/>\r\n\r\n<!-- SCRIPT DE FUNCIONALIDAD -->\r\n<script>\r\n  \/\/ Movimiento del cubo Survival \r\n  let isDragging = false, startX, startY, rotateX = 0, rotateY = 0;\r\n  const cube = document.getElementById('survivalCube');\r\n\r\n  function updateRotation(x, y) {\r\n    cube.style.transform = `rotateX(${x}deg) rotateY(${y}deg)`;\r\n  }\r\n\r\n  function onMouseDown(e) {\r\n    isDragging = true;\r\n    startX = e.clientX;\r\n    startY = e.clientY;\r\n  }\r\n\r\n  function onMouseMove(e) {\r\n    if (!isDragging) return;\r\n    const deltaX = e.clientX - startX;\r\n    const deltaY = e.clientY - startY;\r\n    rotateY += deltaX * 0.5;\r\n    rotateX -= deltaY * 0.5;\r\n    updateRotation(rotateX, rotateY);\r\n    startX = e.clientX;\r\n    startY = e.clientY;\r\n  }\r\n\r\n  function onMouseUp() {\r\n    isDragging = false;\r\n  }\r\n\r\n  function onTouchStart(e) {\r\n    isDragging = true;\r\n    startX = e.touches[0].clientX;\r\n    startY = e.touches[0].clientY;\r\n  }\r\n\r\n  function onTouchMove(e) {\r\n    if (!isDragging) return;\r\n    const deltaX = e.touches[0].clientX - startX;\r\n    const deltaY = e.touches[0].clientY - startY;\r\n    rotateY += deltaX * 0.5;\r\n    rotateX -= deltaY * 0.5;\r\n    updateRotation(rotateX, rotateY);\r\n    startX = e.touches[0].clientX;\r\n    startY = e.touches[0].clientY;\r\n  }\r\n\r\n  function onTouchEnd() {\r\n    isDragging = false;\r\n  }\r\n\r\n  const cubeContainer = document.querySelector('.cube-scene');\r\n  if (cubeContainer) {\r\n    cubeContainer.addEventListener('mousedown', onMouseDown);\r\n    window.addEventListener('mousemove', onMouseMove);\r\n    window.addEventListener('mouseup', onMouseUp);\r\n    cubeContainer.addEventListener('touchstart', onTouchStart);\r\n    window.addEventListener('touchmove', onTouchMove);\r\n    window.addEventListener('touchend', onTouchEnd);\r\n  }\r\n\r\n  \/\/ Swipe image cuando aparece el cubo Survival\r\n  const observer = new MutationObserver(() => {\r\n    const survival = document.getElementById('survivalCubeContainer');\r\n    if (survival && survival.style.opacity === \"1\") {\r\n      const swipe = document.getElementById('swipeImage');\r\n      swipe.style.display = 'block';\r\n      setTimeout(() => {\r\n        swipe.style.display = 'none';\r\n      }, 3500);\r\n      observer.disconnect();\r\n    }\r\n  });\r\n  observer.observe(document.body, { childList: true, subtree: true });\r\n\r\n  \/\/ Sistema de favoritos \ud83d\udc96 \u2192 \ud83d\udc98\r\n  const favorites = [];\r\n\r\n  function toggleFavorite(id, imgUrl, mapLat, mapLng) {\r\n    if (!favorites.some(f => f.id === id)) {\r\n      favorites.push({ id, imgUrl, lat: mapLat, lng: mapLng });\r\n      document.getElementById(\"favoritesBtn\").textContent = \"\ud83d\udc98\";\r\n      console.log(\"Favorito agregado:\", id);\r\n    }\r\n  }\r\n\r\n  function clearFavorites() {\r\n    favorites.length = 0;\r\n    document.getElementById(\"favoritesBtn\").textContent = \"\ud83d\udc96\";\r\n  }\r\n\r\n  function focusOnHost(lat, lng) {\r\n    if (window.ggMap) {\r\n      window.ggMap.setCenter({ lat, lng });\r\n      window.ggMap.setZoom(15);\r\n      new google.maps.Marker({ position: { lat, lng }, map: window.ggMap });\r\n    }\r\n  }\r\n\r\n  document.getElementById(\"favoritesBtn\").addEventListener(\"click\", () => {\r\n    if (favorites.length === 0) return;\r\n    document.querySelectorAll('.host-circle').forEach(btn => btn.style.display = 'none');\r\n    favorites.forEach(fav => {\r\n      const existing = document.querySelector(`.${fav.id}`);\r\n      if (existing) existing.style.display = 'inline-block';\r\n    });\r\n  });\r\n<\/script>\r\n\r\n\r\n\r\n<!-- HOST CIRCLES \u2014 CSS (Survival) -->\r\n<style>\r\n  \/* container *\/\r\n  #hostButtons{\r\n    display:none;                 \/* hidden until a sub-option is clicked *\/\r\n    position:absolute;\r\n    top:50%; left:50%;\r\n    transform:translate(-50%,-50%);\r\n    width:100%; max-width:500px; height:500px;\r\n    pointer-events:none;          \/* turned ON in JS when shown *\/\r\n    z-index:3000;\r\n  }\r\n\r\n  \/* buttons *\/\r\n  #hostButtons .host-circle{\r\n    width:80px; height:80px; border-radius:50%;\r\n    border:2px solid #fff; box-shadow:0 0 14px #fff;\r\n    background-size:cover; background-position:center;\r\n    position:absolute; pointer-events:auto; cursor:pointer;\r\n    transition:transform .3s, box-shadow .3s;\r\n  }\r\n  #hostButtons .host-circle:hover{ transform:scale(1.15); box-shadow:0 0 20px cyan; }\r\n\r\n  \/* desktop placement (around the circle) *\/\r\n  #hostButtons .one    { top:4%;    left:10%; }\r\n  #hostButtons .five   { top:4%;    right:10%; }\r\n  #hostButtons .seven  { bottom:8%; left:10%; }\r\n  #hostButtons .month  { bottom:8%; right:10%; }\r\n\r\n  \/* color accents per family (match cube face glows) *\/\r\n  #hostButtons .net { border-color:beige;   box-shadow:0 0 14px beige; }\r\n  #hostButtons .date { border-color:#00ccff; box-shadow:0 0 14px #00ccff; }\r\n  #hostButtons .dine  { border-color:#33ff33; box-shadow:0 0 14px #33ff33; }\r\n  #hostButtons .marry { border-color:red;     box-shadow:0 0 14px red; }\r\n\r\n  \/* phone: turn into one row under the map *\/\r\n  @media (max-width:768px){\r\n    #hostButtons{\r\n      position:relative; top:auto; left:auto; transform:none;\r\n      height:auto; margin-top:-35px;\r\n      display:none;               \/* still hidden by default *\/\r\n      flex-wrap:nowrap; justify-content:center; gap:10px;\r\n    }\r\n    #hostButtons .host-circle{ position:relative; width:75px; height:75px; margin:0 6px; }\r\n  }\r\n<\/style>\r\n\r\n<!-- HOST CIRCLES \u2014 HTML (Survival: Network\r\n \/ Dating \/ Dinner \/ Marry) -->\r\n<div id=\"hostButtons\">\r\n  <!-- Network (beige) -->\r\n  <button class=\"host-circle net net-social one\"\r\n    data-lat=\"6.2414088\" data-lng=\"-75.22951\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20251204_183404_Google-Earth-scaled.jpg');\"\r\n    title=\"Network \u2022 Social\"><\/button>\r\n\r\n  <button class=\"host-circle net net-digital five\"\r\n    data-lat=\"6.22663\" data-lng=\"-75.1831\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240904_133236_Chrome.jpg');\"\r\n    title=\"Network \u2022 Digital\"><\/button>\r\n\r\n  <button class=\"host-circle net net-busi seven\"\r\n    data-lat=\"6.2288021\" data-lng=\"-75.2142911\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/06\/Screenshot_20240821_173212_Instagram.jpg');\"\r\n    title=\"Network \u2022 Business\"><\/button>\r\n\r\n  <button class=\"host-circle net net-famo month\"\r\n    data-lat=\"6.24426\" data-lng=\"-75.217632\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240904_133236_Chrome.jpg');\"\r\n    title=\"Network \u2022 Famous\"><\/button>\r\n\r\n  <!-- Dating (cyan) -->\r\n  <button class=\"host-circle date date-contes one\"\r\n    data-lat=\"6.2414088\" data-lng=\"-75.2315485\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240904_180532_PowerPoint-scaled.jpg');\"\r\n    title=\"Date \u2022 Contest\"><\/button>\r\n\r\n  <button class=\"host-circle date date-fb five\"\r\n    data-lat=\"6.24426\" data-lng=\"-75.217632\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240904_133236_Chrome.jpg');\"\r\n    title=\"Date \u2022 FB\"><\/button>\r\n\r\n  <button class=\"host-circle date date-blind seven\"\r\n    data-lat=\"6.2083202\" data-lng=\"-75.5677995\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20251204_184255_Google-Earth.jpg');\"\r\n    title=\"Date \u2022 Blind\"><\/button>\r\n\r\n  <button class=\"host-circle date date-social month\"\r\n    data-lat=\"6.2252116\" data-lng=\"-75.1800426\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240904_140758_Instagram.jpg');\"\r\n    title=\"Date \u2022 Social\"><\/button>\r\n\r\n  <!-- Dinner (green) -->\r\n  <button class=\"host-circle dine dine-hop one\"\r\n    data-lat=\"6.2414088\" data-lng=\"-75.22951\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240904_183418_Google-scaled.jpg');\"\r\n    title=\"Dine \u2022 Hop\"><\/button>\r\n\r\n  <button class=\"host-circle dine dine-festiva five\"\r\n    data-lat=\"6.22663\" data-lng=\"-75.1831\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240904_184152_Chrome.jpg');\"\r\n    title=\"Dinner \u2022 Festival\"><\/button>\r\n\r\n  <button class=\"host-circle dine dine-prog seven\"\r\n    data-lat=\"6.2288021\" data-lng=\"-75.2142911\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240904_184900_Google.jpg');\"\r\n    title=\"Dine \u2022 Progressive\"><\/button>\r\n\r\n  <button class=\"host-circle dine dine-city month\"\r\n    data-lat=\"6.24426\" data-lng=\"-75.217632\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240904_185251_Maps.jpg');\"\r\n    title=\"Dinner \u2022 City\"><\/button>\r\n\r\n  <!-- Marry (red) -->\r\n  <button class=\"host-circle marry marry-meet one\"\r\n    data-lat=\"6.2414088\" data-lng=\"-75.22951\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240915_155635_Gallery.jpg');\"\r\n    title=\"Marry \u2022 Meet the family\"><\/button>\r\n\r\n  <button class=\"host-circle marry marry-wed five\"\r\n    data-lat=\"6.22663\" data-lng=\"-75.1831\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240915_155635_Gallery.jpg');\"\r\n    title=\"Marry \u2022 Wed Plan\"><\/button>\r\n\r\n  <button class=\"host-circle marry marry-tv seven\"\r\n    data-lat=\"6.2288021\" data-lng=\"-75.2142911\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240915_155635_Gallery.jpg');\"\r\n    title=\"Marry \u2022 Tv Pick 1\"><\/button>\r\n\r\n  <button class=\"host-circle marry marry-marry month\"\r\n    data-lat=\"6.24426\" data-lng=\"-75.217632\"\r\n    style=\"background-image:url('http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/12\/Screenshot_20240915_155635_Gallery.jpg');\"\r\n    title=\"Marry \u2022 Marry\"><\/button>\r\n<\/div>\r\n\r\n<!-- HOST CIRCLES \u2014 JS (Survival) -->\r\n<script>\r\n  \/* Show only the requested key, e.g., 'highrise-one' *\/\r\n  function showHostButtons(suboption){\r\n    const wrap = document.getElementById('hostButtons');\r\n    if(!wrap) return;\r\n\r\n    \/\/ hide all\r\n    wrap.querySelectorAll('.host-circle').forEach(el => el.style.display = 'none');\r\n\r\n    \/\/ show only requested group (class names include exact key)\r\n    wrap.querySelectorAll('.' + suboption).forEach(el => el.style.display = 'inline-block');\r\n\r\n    \/\/ reveal the container and allow clicks\r\n    wrap.style.display = 'flex';\r\n    wrap.style.pointerEvents = 'auto';\r\n  }\r\n\r\n  \/\/ dbl-tap \/ dbl-click to favorite (uses your existing toggleFavorite)\r\n  document.addEventListener('DOMContentLoaded', () => {\r\n    document.querySelectorAll('#hostButtons .host-circle').forEach(btn => {\r\n      btn.addEventListener('dblclick', (e) => {\r\n        e.preventDefault();\r\n\r\n        \/\/ \u2705 Get the specific key like \"heli-around\" \/ \"yacht-goto\"\r\n        const id = [...btn.classList].find(c =>\r\n          c.includes('-') &&\r\n          !['host-circle','around','goto','emergency','adventure'].includes(c)\r\n        );\r\n\r\n        if (!id) {\r\n          console.warn(\"No favorite id found for button:\", btn.className);\r\n          return;\r\n        }\r\n\r\n        \/\/ background-image: url(\"...\") or url('...')\r\n        const bg = btn.style.backgroundImage || '';\r\n        const img = bg.startsWith('url(')\r\n          ? bg.slice(4, -1).replace(\/^[\"']|[\"']$\/g, '')\r\n          : '';\r\n\r\n        const lat = parseFloat(btn.dataset.lat);\r\n        const lng = parseFloat(btn.dataset.lng);\r\n\r\n        if (typeof toggleFavorite === 'function') {\r\n          toggleFavorite(id, img, lat, lng);\r\n        } else {\r\n          console.warn(\"toggleFavorite() is not defined yet.\");\r\n        }\r\n      });\r\n    });\r\n  });\r\n\r\n  \/* Center the map when any host circle is clicked *\/\r\n  document.addEventListener('click', function (e) {\r\n    const btn = e.target.closest('#hostButtons .host-circle');\r\n    if (!btn) return;\r\n\r\n    const lat = parseFloat(btn.dataset.lat);\r\n    const lng = parseFloat(btn.dataset.lng);\r\n    if (!Number.isFinite(lat) || !Number.isFinite(lng)) return;\r\n\r\n    if (typeof window.focusOnHost === 'function') {\r\n      focusOnHost(lat, lng);\r\n      return;\r\n    }\r\n\r\n    if (window.ggMap && window.google) {\r\n      const pos = new google.maps.LatLng(lat, lng);\r\n      ggMap.setCenter(pos);\r\n      ggMap.setZoom(15);\r\n      new google.maps.Marker({ position: pos, map: ggMap });\r\n    }\r\n  });\r\n<\/script>\r\n\r\n\r\n\r\n&#8211; AVATAR &#8211;>\r\n<div id=\"avatarContainer\" onclick=\"showAvatarCloud()\" \r\n     style=\"position:fixed; bottom:80px; right:20px; z-index:9999; cursor:pointer; display:none;\">\r\n  <img decoding=\"async\" src=\"http:\/\/godsgalaxygame.com\/GGG\/wp-content\/uploads\/2025\/07\/Screenshot_20231118-120724_Instagram-scaled.jpg\" \r\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%);\">\r\n<\/div>\r\n\r\n<!-- CLOUD BUBBLE -->\r\n<div id=\"avatarCloud\" style=\"position:fixed; bottom:310px; right:30px; max-width:250px; background:rgba(0,0,0,0.7); \r\n     color:white; font-family:Orbitron, sans-serif; font-size:12px; line-height:16px; border-radius:20px 20px 20px 0px; \r\n     padding:14px 16px; box-shadow:0 0 15px aqua; display:none; z-index:9999; text-align:center;\r\n     border: 1px solid aqua;\">\r\n  <div id=\"avatarCloudMsg\">Loading&#8230;<\/div>\r\n  <div style=\"margin-top:10px;\">\r\n    <button onclick=\"acceptAvatarSuggestion()\" style=\"background:lime; color:black; border:none; padding:6px 10px; font-weight:bold;\">Yes<\/button>\r\n    <button onclick=\"dismissAvatarCloud()\" style=\"background:aqua; color:white; border:none; padding:6px 10px; font-weight:bold;\">No<\/button>\r\n  <\/div>\r\n  <div style=\"position:absolute; bottom:-18px; right:10px; width:0; height:0; border-left:10px solid transparent; \r\n              border-right:10px solid transparent; border-top:18px solid rgba(0,255,255,0.6); filter:blur(0.5px);\">\r\n  <\/div>\r\n<\/div>\r\n\r\n<!-- MOBILE ASSISTANT BUTTON -->\r\n<div id=\"avatarMobileBtn\" onclick=\"toggleMobileAvatar()\" style=\"display:none;\">\r\n  \ud83d\udc64 Assistant\r\n<\/div>\r\n\r\n<!-- ESTILOS -->\r\n<style>\r\n  #avatarMobileBtn {\r\n    position: fixed;\r\n    bottom: 18px;\r\n    right: 18px;\r\n    z-index: 9999;\r\n    background: rgba(0, 0, 0, 0.7);\r\n    color: white;\r\n    font-family: Orbitron, sans-serif;\r\n    font-size: 13px;\r\n    padding: 10px 14px;\r\n    border: 2px solid aqua;\r\n    border-radius: 14px;\r\n    box-shadow: 0 0 12px aqua;\r\n    cursor: pointer;\r\n    display: flex;\r\n    align-items: center;\r\n    gap: 8px;\r\n  }\r\n\r\n  @media (min-width: 769px) {\r\n    #avatarMobileBtn {\r\n      display: none !important;\r\n    }\r\n  }\r\n\r\n  @media (max-width: 768px) {\r\n    #avatarContainer {\r\n      bottom: 30px !important;\r\n      right: 90px !important;\r\n      width: 100px !important;\r\n      display: none;\r\n      pointer-events: none;\r\n    }\r\n\r\n    #avatarContainer img {\r\n      width: 100%;\r\n      height: auto;\r\n      border-radius: 50% \/ 30%;\r\n      object-fit: cover;\r\n      filter: grayscale(0%) brightness(1.1) contrast(1.2);\r\n      box-shadow: 0 0 12px aqua;\r\n    }\r\n  }\r\n\r\n  @media (min-width: 769px) {\r\n    #avatarContainer {\r\n      pointer-events: auto;\r\n    }\r\n  }\r\n<\/style>\r\n\r\n<!-- L\u00d3GICA -->\r\n<script>\r\n  const entertainmentQuestions = [\r\n    \"Ready to see what\u2019s out there today?\",\r\n    \"Want entertainment options nearby?\",\r\n    \"Looking for something fun to do?\",\r\n    \"Need ideas for your free time?\",\r\n    \"Want something exciting tonight?\"\r\n  ];\r\n\r\n  const gastronomyQuestions = [\r\n    \"Want to see gastronomy options nearby?\",\r\n    \"Ready to have dinner tonight?\",\r\n    \"Would you like some brunch spots?\",\r\n    \"Hungry for something special?\",\r\n    \"Looking for restaurants around you?\"\r\n  ];\r\n\r\n  function showAvatarCloud(forcedType = null) {\r\n    const hour = new Date().getHours();\r\n    const type = forcedType || (hour % 2 === 0 ? \"gastronomy\" : \"entertainment\");\r\n    const question = (type === \"gastronomy\" ? gastronomyQuestions : entertainmentQuestions)[Math.floor(Math.random() * 5)];\r\n\r\n    document.getElementById(\"avatarCloudMsg\").innerText = question;\r\n    document.getElementById(\"avatarCloud\").style.display = \"block\";\r\n  }\r\n\r\n  function acceptAvatarSuggestion() {\r\n    dismissAvatarCloud();\r\n    alert(\"\u2705 Showing Aries recommendations near you...\");\r\n  }\r\n\r\n  function dismissAvatarCloud() {\r\n    document.getElementById(\"avatarCloud\").style.display = \"none\";\r\n  }\r\n\r\n  \/\/ \ud83d\udcbb Show avatar automatically after 3 seconds (desktop only)\r\n  function showAvatarAssistant() {\r\n    const avatar = document.getElementById(\"avatarContainer\");\r\n    if (window.innerWidth > 768) {\r\n      avatar.style.display = \"block\";\r\n      avatar.style.pointerEvents = \"auto\";\r\n    }\r\n  }\r\n  setTimeout(showAvatarAssistant, 3000);\r\n\r\n  \/\/ \ud83d\udcf1 Toggle mobile avatar on\/off\r\n  let avatarVisible = false;\r\n  function toggleMobileAvatar() {\r\n    const avatar = document.getElementById(\"avatarContainer\");\r\n    const btn = document.getElementById(\"avatarMobileBtn\");\r\n\r\n    if (!avatarVisible) {\r\n      avatar.style.display = \"block\";\r\n      avatar.style.pointerEvents = \"auto\";\r\n      showAvatarCloud();\r\n      btn.innerHTML = \"\u274c Close\";\r\n    } else {\r\n      avatar.style.display = \"none\";\r\n      avatar.style.pointerEvents = \"none\";\r\n      dismissAvatarCloud();\r\n      btn.innerHTML = \"\ud83d\udc64 Assistant\";\r\n    }\r\n\r\n    avatarVisible = !avatarVisible;\r\n  }\r\n\r\n  \/\/ \ud83d\udcf1 Show mobile button on load\r\n  window.addEventListener(\"load\", () => {\r\n    if (window.innerWidth <= 768) {\r\n      document.getElementById(\"avatarMobileBtn\").style.display = \"flex\";\r\n    }\r\n  });\r\n<\/script>\r\n\r\n<!-- =========================================================\r\nGODS GALAXY GAME \/ LIMITLESS\r\nHIDDEN LEGAL CENTER\r\nHost page: \/GGG\/astro\/\r\n\r\n?legal=1       = Legal Center\r\n?privacy=1     = Privacy Policy\r\n?terms=1       = Terms of Service\r\n?operations=1  = Operations Disclosure\r\n========================================================= -->\r\n\r\n<style>\r\n\r\n\/* ONLY activates when JS adds this class *\/\r\nhtml.gggLegalActive,\r\nbody.gggLegalActive{\r\n  margin:0!important;\r\n  padding:0!important;\r\n  width:100%!important;\r\n  max-width:none!important;\r\n  min-height:100%!important;\r\n  overflow:hidden!important;\r\n  background:#02050d!important;\r\n}\r\n\r\n\/*\r\nHide the normal Astro page ONLY while legal page is active.\r\n*\/\r\nbody.gggLegalHide > *{\r\n  visibility:hidden!important;\r\n}\r\n\r\nbody.gggLegalHide #gggLegalOverlay,\r\nbody.gggLegalHide #gggLegalOverlay *{\r\n  visibility:visible!important;\r\n}\r\n\r\n\r\n\/* ==========================\r\n   MAIN LEGAL OVERLAY\r\n========================== *\/\r\n\r\n#gggLegalOverlay{\r\n  --bg:#02050d;\r\n  --panel:#07101d;\r\n  --panel2:#0b1528;\r\n  --white:#f8fbff;\r\n  --soft:rgba(248,251,255,.72);\r\n  --line:rgba(255,255,255,.10);\r\n  --cyan:#53f3ff;\r\n  --gold:#f4d27a;\r\n  --violet:#8b5cf6;\r\n\r\n  display:none;\r\n\r\n  position:fixed!important;\r\n  inset:0!important;\r\n\r\n  width:100vw!important;\r\n  height:100vh!important;\r\n\r\n  z-index:2147483647!important;\r\n\r\n  overflow-y:auto!important;\r\n  overflow-x:hidden!important;\r\n\r\n  font-family:Arial,Helvetica,sans-serif!important;\r\n\r\n  color:var(--white);\r\n\r\n  background:\r\n    radial-gradient(\r\n      circle at 12% 8%,\r\n      rgba(83,243,255,.10),\r\n      transparent 26%\r\n    ),\r\n    radial-gradient(\r\n      circle at 88% 12%,\r\n      rgba(139,92,246,.12),\r\n      transparent 28%\r\n    ),\r\n    radial-gradient(\r\n      circle at 50% 100%,\r\n      rgba(244,210,122,.07),\r\n      transparent 30%\r\n    ),\r\n    linear-gradient(\r\n      180deg,\r\n      #01030a,\r\n      #07101e 48%,\r\n      #02050d\r\n    );\r\n}\r\n\r\n#gggLegalOverlay *{\r\n  box-sizing:border-box;\r\n}\r\n\r\n\r\n\/* ==========================\r\n   TOP BAR\r\n========================== *\/\r\n\r\n.gggLegalTop{\r\n  position:fixed;\r\n  top:0;\r\n  left:0;\r\n  right:0;\r\n\r\n  z-index:50;\r\n\r\n  display:flex;\r\n  align-items:center;\r\n  justify-content:space-between;\r\n\r\n  gap:12px;\r\n\r\n  padding:14px 18px;\r\n\r\n  background:rgba(2,5,13,.88);\r\n\r\n  backdrop-filter:blur(18px);\r\n  -webkit-backdrop-filter:blur(18px);\r\n\r\n  border-bottom:1px solid rgba(255,255,255,.08);\r\n}\r\n\r\n\r\n.gggLegalTopLeft{\r\n  display:flex;\r\n  align-items:center;\r\n  gap:12px;\r\n}\r\n\r\n\r\n.gggLegalBack{\r\n  width:44px;\r\n  height:44px;\r\n\r\n  border-radius:50%;\r\n  border:1px solid rgba(255,255,255,.14);\r\n\r\n  background:rgba(255,255,255,.05);\r\n  color:white;\r\n\r\n  font-size:20px;\r\n\r\n  cursor:pointer;\r\n}\r\n\r\n\r\n.gggLegalBrand{\r\n  color:white;\r\n\r\n  font-size:.76rem;\r\n  font-weight:900;\r\n\r\n  letter-spacing:.16em;\r\n  text-transform:uppercase;\r\n}\r\n\r\n\r\n.gggLegalNav{\r\n  display:flex;\r\n  gap:7px;\r\n  flex-wrap:wrap;\r\n\r\n  justify-content:flex-end;\r\n}\r\n\r\n\r\n.gggLegalNav button{\r\n  min-height:40px;\r\n\r\n  padding:0 13px;\r\n\r\n  border-radius:999px;\r\n\r\n  border:1px solid rgba(255,255,255,.10);\r\n\r\n  background:rgba(255,255,255,.045);\r\n\r\n  color:white;\r\n\r\n  font-size:.7rem;\r\n  font-weight:900;\r\n\r\n  cursor:pointer;\r\n}\r\n\r\n\r\n.gggLegalNav button.active{\r\n  color:#dffcff;\r\n\r\n  border-color:rgba(83,243,255,.65);\r\n\r\n  box-shadow:\r\n    0 0 18px rgba(83,243,255,.17);\r\n}\r\n\r\n\r\n\/* ==========================\r\n   PAGE BODY\r\n========================== *\/\r\n\r\n.gggLegalShell{\r\n  width:min(1180px,94vw);\r\n\r\n  margin:0 auto;\r\n\r\n  padding:\r\n    100px\r\n    0\r\n    100px;\r\n}\r\n\r\n\r\n\/* ==========================\r\n   MASTER LEGAL CENTER HERO\r\n========================== *\/\r\n\r\n.gggLegalHero{\r\n  padding:clamp(25px,5vw,50px);\r\n\r\n  border-radius:36px;\r\n\r\n  border:1px solid var(--line);\r\n\r\n  background:\r\n    radial-gradient(\r\n      circle at 0 0,\r\n      rgba(83,243,255,.10),\r\n      transparent 35%\r\n    ),\r\n    linear-gradient(\r\n      180deg,\r\n      rgba(10,18,40,.96),\r\n      rgba(3,7,16,.99)\r\n    );\r\n\r\n  box-shadow:\r\n    0 30px 100px rgba(0,0,0,.45);\r\n}\r\n\r\n\r\n.gggLegalEyebrow{\r\n  color:var(--gold);\r\n\r\n  font-size:.74rem;\r\n  font-weight:900;\r\n\r\n  letter-spacing:.20em;\r\n  text-transform:uppercase;\r\n}\r\n\r\n\r\n.gggLegalHero h1{\r\n  margin:\r\n    12px\r\n    0\r\n    15px;\r\n\r\n  color:white;\r\n\r\n  font-size:\r\n    clamp(\r\n      3rem,\r\n      10vw,\r\n      7rem\r\n    );\r\n\r\n  line-height:.88;\r\n\r\n  letter-spacing:-.055em;\r\n\r\n  text-transform:uppercase;\r\n}\r\n\r\n\r\n.gggLegalHero p{\r\n  max-width:900px;\r\n\r\n  margin:0;\r\n\r\n  color:var(--soft);\r\n\r\n  font-size:1rem;\r\n  line-height:1.75;\r\n}\r\n\r\n\r\n\/* ==========================\r\n   LEGAL CENTER CARDS\r\n========================== *\/\r\n\r\n.gggLegalCards{\r\n  display:grid;\r\n\r\n  grid-template-columns:\r\n    repeat(\r\n      3,\r\n      minmax(0,1fr)\r\n    );\r\n\r\n  gap:17px;\r\n\r\n  margin-top:24px;\r\n}\r\n\r\n\r\n.gggLegalCard{\r\n  min-height:230px;\r\n\r\n  padding:25px;\r\n\r\n  border-radius:30px;\r\n\r\n  border:1px solid rgba(255,255,255,.10);\r\n\r\n  background:\r\n    radial-gradient(\r\n      circle at 100% 0,\r\n      rgba(83,243,255,.10),\r\n      transparent 38%\r\n    ),\r\n    linear-gradient(\r\n      180deg,\r\n      rgba(10,18,38,.97),\r\n      rgba(3,7,16,.99)\r\n    );\r\n\r\n  color:white;\r\n\r\n  text-align:left;\r\n\r\n  cursor:pointer;\r\n\r\n  transition:\r\n    transform .2s ease,\r\n    border-color .2s ease,\r\n    box-shadow .2s ease;\r\n}\r\n\r\n\r\n.gggLegalCard:hover{\r\n  transform:translateY(-5px);\r\n\r\n  border-color:\r\n    rgba(83,243,255,.4);\r\n\r\n  box-shadow:\r\n    0 20px 50px\r\n    rgba(0,0,0,.35);\r\n}\r\n\r\n\r\n.gggLegalNumber{\r\n  color:var(--cyan);\r\n\r\n  font-size:.7rem;\r\n\r\n  font-weight:900;\r\n\r\n  letter-spacing:.20em;\r\n}\r\n\r\n\r\n.gggLegalCard h2{\r\n  margin:\r\n    34px\r\n    0\r\n    12px;\r\n\r\n  font-size:1.7rem;\r\n\r\n  line-height:1;\r\n\r\n  text-transform:uppercase;\r\n}\r\n\r\n\r\n.gggLegalCard p{\r\n  margin:0;\r\n\r\n  color:var(--soft);\r\n\r\n  line-height:1.65;\r\n}\r\n\r\n\r\n\/* ==========================\r\n   DOCUMENT\r\n========================== *\/\r\n\r\n.gggLegalDocument{\r\n  display:none;\r\n\r\n  padding:\r\n    clamp(\r\n      22px,\r\n      5vw,\r\n      45px\r\n    );\r\n\r\n  border-radius:32px;\r\n\r\n  border:\r\n    1px solid\r\n    rgba(255,255,255,.10);\r\n\r\n  background:\r\n    linear-gradient(\r\n      180deg,\r\n      rgba(7,13,28,.97),\r\n      rgba(2,5,13,.995)\r\n    );\r\n\r\n  box-shadow:\r\n    0 30px 100px\r\n    rgba(0,0,0,.45);\r\n}\r\n\r\n\r\n.gggLegalDocument.active{\r\n  display:block;\r\n}\r\n\r\n\r\n.gggLegalDocument h1{\r\n  margin:\r\n    10px\r\n    0\r\n    8px;\r\n\r\n  font-size:\r\n    clamp(\r\n      2.4rem,\r\n      7vw,\r\n      5rem\r\n    );\r\n\r\n  line-height:.94;\r\n\r\n  letter-spacing:-.04em;\r\n\r\n  text-transform:uppercase;\r\n}\r\n\r\n\r\n.gggLegalDate{\r\n  color:\r\n    rgba(255,255,255,.48);\r\n\r\n  margin-bottom:30px;\r\n\r\n  font-size:.8rem;\r\n}\r\n\r\n\r\n.gggLegalDocument h2{\r\n  margin:\r\n    35px\r\n    0\r\n    12px;\r\n\r\n  padding-top:24px;\r\n\r\n  border-top:\r\n    1px solid\r\n    rgba(255,255,255,.08);\r\n\r\n  color:white;\r\n\r\n  font-size:1.4rem;\r\n}\r\n\r\n\r\n.gggLegalDocument h3{\r\n  margin:\r\n    23px\r\n    0\r\n    9px;\r\n\r\n  color:#dffcff;\r\n\r\n  font-size:1.05rem;\r\n}\r\n\r\n\r\n.gggLegalDocument p,\r\n.gggLegalDocument li{\r\n  color:\r\n    rgba(248,251,255,.76);\r\n\r\n  font-size:.98rem;\r\n\r\n  line-height:1.8;\r\n}\r\n\r\n\r\n.gggLegalDocument ul{\r\n  padding-left:22px;\r\n}\r\n\r\n\r\n.gggLegalNotice{\r\n  margin:22px 0;\r\n\r\n  padding:20px;\r\n\r\n  border-radius:20px;\r\n\r\n  border:\r\n    1px solid\r\n    rgba(244,210,122,.22);\r\n\r\n  background:\r\n    rgba(244,210,122,.06);\r\n\r\n  color:\r\n    rgba(255,255,255,.82);\r\n\r\n  line-height:1.7;\r\n}\r\n\r\n\r\n.gggLegalContact{\r\n  margin-top:25px;\r\n\r\n  padding:22px;\r\n\r\n  border-radius:22px;\r\n\r\n  background:\r\n    rgba(83,243,255,.05);\r\n\r\n  border:\r\n    1px solid\r\n    rgba(83,243,255,.15);\r\n\r\n  line-height:1.7;\r\n}\r\n\r\n\r\n.gggLegalFooter{\r\n  margin-top:30px;\r\n\r\n  text-align:center;\r\n\r\n  color:\r\n    rgba(255,255,255,.40);\r\n\r\n  font-size:.76rem;\r\n}\r\n\r\n\r\n\/* ==========================\r\n   MOBILE\r\n========================== *\/\r\n\r\n@media(max-width:850px){\r\n\r\n  .gggLegalCards{\r\n    grid-template-columns:1fr;\r\n  }\r\n\r\n  .gggLegalTop{\r\n    align-items:flex-start;\r\n  }\r\n\r\n  .gggLegalBrand{\r\n    display:none;\r\n  }\r\n\r\n  .gggLegalNav{\r\n    gap:4px;\r\n  }\r\n\r\n  .gggLegalNav button{\r\n    padding:0 9px;\r\n\r\n    font-size:.61rem;\r\n  }\r\n\r\n  .gggLegalShell{\r\n    padding-top:105px;\r\n  }\r\n}\r\n\r\n<\/style>\r\n\r\n\r\n\r\n<div\r\n  id=\"gggLegalOverlay\"\r\n  aria-hidden=\"true\"\r\n>\r\n\r\n  <!-- TOP BAR -->\r\n\r\n  <div class=\"gggLegalTop\">\r\n\r\n    <div class=\"gggLegalTopLeft\">\r\n\r\n      <button\r\n        id=\"gggLegalBack\"\r\n        class=\"gggLegalBack\"\r\n        type=\"button\"\r\n      >\r\n        \u2190\r\n      <\/button>\r\n\r\n      <div class=\"gggLegalBrand\">\r\n        Gods Galaxy Game \u00b7 Limitless\r\n      <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n    <div class=\"gggLegalNav\">\r\n\r\n      <button\r\n        data-legal-page=\"legal\"\r\n        type=\"button\"\r\n      >\r\n        Legal Center\r\n      <\/button>\r\n\r\n      <button\r\n        data-legal-page=\"privacy\"\r\n        type=\"button\"\r\n      >\r\n        Privacy\r\n      <\/button>\r\n\r\n      <button\r\n        data-legal-page=\"terms\"\r\n        type=\"button\"\r\n      >\r\n        Terms\r\n      <\/button>\r\n\r\n      <button\r\n        data-legal-page=\"operations\"\r\n        type=\"button\"\r\n      >\r\n        Operations\r\n      <\/button>\r\n\r\n    <\/div>\r\n\r\n  <\/div>\r\n\r\n\r\n\r\n  <main class=\"gggLegalShell\">\r\n\r\n\r\n    <!-- =====================================\r\n         MASTER LEGAL CENTER\r\n    ====================================== -->\r\n\r\n    <section id=\"gggLegalHome\">\r\n\r\n      <div class=\"gggLegalHero\">\r\n\r\n        <div class=\"gggLegalEyebrow\">\r\n          Official Legal Center\r\n        <\/div>\r\n\r\n        <h1>\r\n          Limitless<br>\r\n          Legal Center\r\n        <\/h1>\r\n\r\n        <p>\r\n          Official legal documents for Gods Galaxy Game\r\n          and the Limitless platform. Review how personal\r\n          information is handled, the rules governing use\r\n          of the platform, and how Limitless operates with\r\n          users, businesses, independent providers and\r\n          allied companies.\r\n        <\/p>\r\n\r\n      <\/div>\r\n\r\n\r\n      <div class=\"gggLegalCards\">\r\n\r\n        <button\r\n          class=\"gggLegalCard\"\r\n          data-legal-page=\"privacy\"\r\n          type=\"button\"\r\n        >\r\n\r\n          <div class=\"gggLegalNumber\">\r\n            01 \u00b7 PRIVACY\r\n          <\/div>\r\n\r\n          <h2>\r\n            Privacy Policy\r\n          <\/h2>\r\n\r\n          <p>\r\n            Personal information, accounts, Google\/Gmail,\r\n            memberships, travel, Reservations, Gift,\r\n            Business Growth, business connections,\r\n            payments and data rights.\r\n          <\/p>\r\n\r\n        <\/button>\r\n\r\n\r\n\r\n        <button\r\n          class=\"gggLegalCard\"\r\n          data-legal-page=\"terms\"\r\n          type=\"button\"\r\n        >\r\n\r\n          <div class=\"gggLegalNumber\">\r\n            02 \u00b7 TERMS\r\n          <\/div>\r\n\r\n          <h2>\r\n            Terms of Service\r\n          <\/h2>\r\n\r\n          <p>\r\n            Rules for using Gods Galaxy Game, memberships,\r\n            payments, discounts, Gift, Business Growth,\r\n            sponsorships, opportunities, providers and\r\n            Reservations.\r\n          <\/p>\r\n\r\n        <\/button>\r\n\r\n\r\n\r\n        <button\r\n          class=\"gggLegalCard\"\r\n          data-legal-page=\"operations\"\r\n          type=\"button\"\r\n        >\r\n\r\n          <div class=\"gggLegalNumber\">\r\n            03 \u00b7 OPERATIONS\r\n          <\/div>\r\n\r\n          <h2>\r\n            How Limitless Works\r\n          <\/h2>\r\n\r\n          <p>\r\n            How Limitless, Gods Galaxy Game, marketing,\r\n            business brokerage, independent providers,\r\n            allied companies and customer handoffs work.\r\n          <\/p>\r\n\r\n        <\/button>\r\n\r\n      <\/div>\r\n\r\n    <\/section>\r\n\r\n\r\n\r\n    <!-- =====================================\r\n \r\n\r\n\r\n    ====================================== -->\r\n\r\n    <article\r\n      id=\"gggLegalPrivacy\"\r\n      class=\"gggLegalDocument\"\r\n    >\r\n\r\n      <div class=\"gggLegalEyebrow\">\r\n        Gods Galaxy Game \/ Limitless\r\n      <\/div>\r\n\r\n      <h1>\r\n        Privacy Policy & Personal Data Treatment Policy\r\n      <\/h1>\r\n\r\n      <div class=\"gggLegalDate\">\r\n        Effective Date: August 31, 2026\r\n        \u00b7\r\n        Last Updated: August 31, 2026\r\n      <\/div>\r\n\r\n<!-- PRIVACY POLICY CONTENT START -->\r\n\r\n<p>\r\nGods Galaxy Game (\u201cGods Galaxy Game,\u201d \u201cGGG,\u201d \u201cPlatform,\u201d \u201cwe,\u201d \u201cus,\u201d or \u201cour\u201d)\r\nis a digital platform operated by <strong>Limitless<\/strong>.\r\n<\/p>\r\n\r\n<h2>1. Who We Are<\/h2>\r\n\r\n<p>\r\nLimitless operates Gods Galaxy Game as a technology, marketing, advertising,\r\npromotional, membership, discovery, connection, business-development and\r\ndigital-experience platform.\r\n<\/p>\r\n\r\n<p>\r\nGods Galaxy Game may include multiple interactive areas, membership levels,\r\nbusiness features, travel-related experiences, discounts, gifting,\r\nbusiness-growth profiles, reservation-request tools, concierge-related\r\nfunctions, promotional opportunities, third-party listings and connections\r\nwith affiliated or independent businesses.\r\n<\/p>\r\n\r\n<p>\r\nSome services displayed or accessible through Gods Galaxy Game may be provided\r\ndirectly by Limitless. Other services may be provided by independent\r\nbusinesses, professionals, allied companies, tourism providers, real-estate\r\ncompanies, payment processors, technology providers or other third parties.\r\n<\/p>\r\n\r\n<p>\r\nThis Privacy Policy explains how Limitless collects, uses, stores, shares,\r\ntransfers and protects personal information when users interact with\r\nGods Galaxy Game.\r\n<\/p>\r\n\r\n\r\n<h2>2. Scope of This Policy<\/h2>\r\n\r\n<p>\r\nThis Privacy Policy applies to personal information collected through\r\nGods Galaxy Game and Limitless-operated features, including, where applicable:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>website visits;<\/li>\r\n  <li>account creation;<\/li>\r\n  <li>login and authentication;<\/li>\r\n  <li>password recovery;<\/li>\r\n  <li>memberships and level access;<\/li>\r\n  <li>user profiles;<\/li>\r\n  <li>Travel and destination-discovery areas;<\/li>\r\n  <li>Astro Travel;<\/li>\r\n  <li>Explore Medell\u00edn;<\/li>\r\n  <li>Travel Intelligence or preference-based recommendations;<\/li>\r\n  <li>Reservations;<\/li>\r\n  <li>saved selections and favorites;<\/li>\r\n  <li>concierge or service requests;<\/li>\r\n  <li>Discounts;<\/li>\r\n  <li>Gift;<\/li>\r\n  <li>gift-recipient information;<\/li>\r\n  <li>Business Growth profiles;<\/li>\r\n  <li>Artists, Athletes and Entrepreneurs profiles;<\/li>\r\n  <li>Request My Service;<\/li>\r\n  <li>Booking Requests;<\/li>\r\n  <li>Connect \/ Contact functions;<\/li>\r\n  <li>Sponsor requests;<\/li>\r\n  <li>Gift-support functions;<\/li>\r\n  <li>Dream Engine or investment-interest requests;<\/li>\r\n  <li>business brokerage or business-opportunity inquiries;<\/li>\r\n  <li>business and host profiles;<\/li>\r\n  <li>real-estate referrals;<\/li>\r\n  <li>vacation-property or fractional-related referrals;<\/li>\r\n  <li>forms;<\/li>\r\n  <li>payments;<\/li>\r\n  <li>checkout links;<\/li>\r\n  <li>promotional campaigns;<\/li>\r\n  <li>sustainability-related reports or initiatives;<\/li>\r\n  <li>customer support;<\/li>\r\n  <li>transactional email;<\/li>\r\n  <li>analytics and security systems.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h2>3. Information We May Collect<\/h2>\r\n\r\n<h3>A. Identity Information<\/h3>\r\n\r\n<p>\r\nThis may include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>name;<\/li>\r\n  <li>username;<\/li>\r\n  <li>profile name;<\/li>\r\n  <li>account identifier;<\/li>\r\n  <li>membership identifier;<\/li>\r\n  <li>user ID.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h3>B. Contact Information<\/h3>\r\n\r\n<ul>\r\n  <li>email address;<\/li>\r\n  <li>phone number;<\/li>\r\n  <li>WhatsApp number;<\/li>\r\n  <li>mailing address where required;<\/li>\r\n  <li>preferred method of communication.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h3>C. Account and Membership Information<\/h3>\r\n\r\n<ul>\r\n  <li>login information;<\/li>\r\n  <li>account status;<\/li>\r\n  <li>membership status;<\/li>\r\n  <li>membership level;<\/li>\r\n  <li>levels owned or unlocked;<\/li>\r\n  <li>access permissions;<\/li>\r\n  <li>registration date;<\/li>\r\n  <li>account activity;<\/li>\r\n  <li>password-recovery records;<\/li>\r\n  <li>authentication records.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h3>D. Travel and Preference Information<\/h3>\r\n\r\n<ul>\r\n  <li>travel destination;<\/li>\r\n  <li>travel dates;<\/li>\r\n  <li>guest count;<\/li>\r\n  <li>accommodation preferences;<\/li>\r\n  <li>transportation preferences;<\/li>\r\n  <li>food preferences;<\/li>\r\n  <li>luxury preferences;<\/li>\r\n  <li>family-travel preferences;<\/li>\r\n  <li>nature interests;<\/li>\r\n  <li>local-culture interests;<\/li>\r\n  <li>selected businesses;<\/li>\r\n  <li>saved recommendations;<\/li>\r\n  <li>selected experiences;<\/li>\r\n  <li>concierge preferences;<\/li>\r\n  <li>itinerary-related information;<\/li>\r\n  <li>reservation requests;<\/li>\r\n  <li>special requests.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h3>E. Reservation and Service-Request Information<\/h3>\r\n\r\n<p>\r\nWhen a user requests a reservation, concierge service or other assistance,\r\nwe may collect:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>selected provider;<\/li>\r\n  <li>selected service;<\/li>\r\n  <li>desired date and time;<\/li>\r\n  <li>number of guests;<\/li>\r\n  <li>location;<\/li>\r\n  <li>special instructions;<\/li>\r\n  <li>accessibility information where voluntarily provided;<\/li>\r\n  <li>transportation details;<\/li>\r\n  <li>reservation status;<\/li>\r\n  <li>confirmation information;<\/li>\r\n  <li>communications with the user;<\/li>\r\n  <li>other information reasonably necessary to process the request.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h3>F. Saved Selections and User Activity<\/h3>\r\n\r\n<ul>\r\n  <li>favorites;<\/li>\r\n  <li>saved selections;<\/li>\r\n  <li>saved travel plans;<\/li>\r\n  <li>reservation status;<\/li>\r\n  <li>completed activities;<\/li>\r\n  <li>user interactions with Platform features;<\/li>\r\n  <li>clicks;<\/li>\r\n  <li>views;<\/li>\r\n  <li>likes;<\/li>\r\n  <li>saves;<\/li>\r\n  <li>service-request clicks;<\/li>\r\n  <li>sponsor clicks;<\/li>\r\n  <li>investment-interest clicks.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h3>G. Gift Information<\/h3>\r\n\r\n<p>\r\nWhere Gift features are used, we may collect:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>purchaser information;<\/li>\r\n  <li>gift selected;<\/li>\r\n  <li>gift value;<\/li>\r\n  <li>gift description;<\/li>\r\n  <li>gift recipient;<\/li>\r\n  <li>recipient contact information if supplied;<\/li>\r\n  <li>recipient message;<\/li>\r\n  <li>checkout information;<\/li>\r\n  <li>transaction status.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h3>H. Support Gifts to Profiles<\/h3>\r\n\r\n<p>\r\nCertain Artist, Athlete or Entrepreneur profiles may include a Gift feature\r\nallowing users to support a selected profile.\r\n<\/p>\r\n\r\n<p>\r\nInformation related to such transactions or requests may include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>selected profile;<\/li>\r\n  <li>gift amount;<\/li>\r\n  <li>payment link used;<\/li>\r\n  <li>user contact information;<\/li>\r\n  <li>message;<\/li>\r\n  <li>transaction reference.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h3>I. Business Growth and Profile Information<\/h3>\r\n\r\n<p>\r\nFor individuals or businesses participating in Business Growth features,\r\nwe may collect:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>name;<\/li>\r\n  <li>profile type;<\/li>\r\n  <li>biography;<\/li>\r\n  <li>story;<\/li>\r\n  <li>photographs;<\/li>\r\n  <li>profile images;<\/li>\r\n  <li>videos;<\/li>\r\n  <li>social-media links;<\/li>\r\n  <li>website;<\/li>\r\n  <li>email;<\/li>\r\n  <li>phone or WhatsApp;<\/li>\r\n  <li>service information;<\/li>\r\n  <li>sponsor information;<\/li>\r\n  <li>business information;<\/li>\r\n  <li>opportunity information;<\/li>\r\n  <li>investment-interest materials;<\/li>\r\n  <li>pitch or presentation links;<\/li>\r\n  <li>rewards;<\/li>\r\n  <li>profile status;<\/li>\r\n  <li>engagement statistics.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h3>J. Business Brokerage and Opportunity Information<\/h3>\r\n\r\n<p>\r\nWhere a user or business requests assistance concerning a business\r\nopportunity, purchase, sale, promotion, sponsorship, growth opportunity\r\nor business connection, we may collect:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>business name;<\/li>\r\n  <li>business type;<\/li>\r\n  <li>contact information;<\/li>\r\n  <li>description of the opportunity;<\/li>\r\n  <li>asking or proposed terms where voluntarily submitted;<\/li>\r\n  <li>presentation materials;<\/li>\r\n  <li>contact preferences;<\/li>\r\n  <li>inquiry history.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h3>K. Sponsorship Information<\/h3>\r\n\r\n<ul>\r\n  <li>selected profile;<\/li>\r\n  <li>sponsorship pathway;<\/li>\r\n  <li>sponsorship amount;<\/li>\r\n  <li>transaction details;<\/li>\r\n  <li>contact information;<\/li>\r\n  <li>custom sponsorship request information.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h3>L. Investment-Interest Information<\/h3>\r\n\r\n<ul>\r\n  <li>selected profile;<\/li>\r\n  <li>selected opportunity pathway;<\/li>\r\n  <li>inquiry information;<\/li>\r\n  <li>contact information;<\/li>\r\n  <li>requested presentation;<\/li>\r\n  <li>meeting request;<\/li>\r\n  <li>pitch or opportunity materials accessed;<\/li>\r\n  <li>stated interest;<\/li>\r\n  <li>communications regarding the opportunity.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h3>M. Payment and Transaction Information<\/h3>\r\n\r\n<p>\r\nDepending on the transaction, we may receive:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>amount paid;<\/li>\r\n  <li>transaction ID;<\/li>\r\n  <li>payment status;<\/li>\r\n  <li>payment date;<\/li>\r\n  <li>customer ID;<\/li>\r\n  <li>subscription status;<\/li>\r\n  <li>billing name;<\/li>\r\n  <li>limited billing information;<\/li>\r\n  <li>refund status.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nFull payment-card information may be processed directly by third-party\r\npayment processors and may not be stored directly by Gods Galaxy Game.\r\n<\/p>\r\n\r\n\r\n<h3>N. Technical and Device Information<\/h3>\r\n\r\n<p>\r\nWe may automatically receive:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>IP address;<\/li>\r\n  <li>browser type;<\/li>\r\n  <li>device type;<\/li>\r\n  <li>operating system;<\/li>\r\n  <li>referring page;<\/li>\r\n  <li>pages visited;<\/li>\r\n  <li>time of access;<\/li>\r\n  <li>session identifiers;<\/li>\r\n  <li>cookie information;<\/li>\r\n  <li>local-storage information;<\/li>\r\n  <li>security logs;<\/li>\r\n  <li>error logs;<\/li>\r\n  <li>analytics data.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h2>4. How We Use Personal Information<\/h2>\r\n\r\n<p>\r\nWe may use personal information to:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>create and maintain accounts;<\/li>\r\n  <li>authenticate users;<\/li>\r\n  <li>manage login;<\/li>\r\n  <li>recover passwords;<\/li>\r\n  <li>verify membership access;<\/li>\r\n  <li>determine available levels;<\/li>\r\n  <li>operate Gods Galaxy Game;<\/li>\r\n  <li>provide personalized experiences;<\/li>\r\n  <li>remember preferences;<\/li>\r\n  <li>display relevant recommendations;<\/li>\r\n  <li>maintain saved selections;<\/li>\r\n  <li>process reservation requests;<\/li>\r\n  <li>process concierge requests;<\/li>\r\n  <li>connect users with businesses or service providers;<\/li>\r\n  <li>facilitate requested business introductions;<\/li>\r\n  <li>facilitate business-brokerage inquiries;<\/li>\r\n  <li>facilitate real-estate referrals;<\/li>\r\n  <li>facilitate tourism or reservation referrals;<\/li>\r\n  <li>process Gift selections;<\/li>\r\n  <li>process gift-recipient information;<\/li>\r\n  <li>process profile support gifts;<\/li>\r\n  <li>facilitate sponsorship requests;<\/li>\r\n  <li>facilitate service requests;<\/li>\r\n  <li>facilitate booking requests;<\/li>\r\n  <li>facilitate investment-interest inquiries;<\/li>\r\n  <li>send transactional communications;<\/li>\r\n  <li>send confirmations;<\/li>\r\n  <li>provide customer support;<\/li>\r\n  <li>process payments;<\/li>\r\n  <li>maintain accounting records;<\/li>\r\n  <li>prevent fraud;<\/li>\r\n  <li>maintain Platform security;<\/li>\r\n  <li>analyze Platform performance;<\/li>\r\n  <li>measure engagement;<\/li>\r\n  <li>improve products and services;<\/li>\r\n  <li>manage business and host profiles;<\/li>\r\n  <li>administer marketing campaigns;<\/li>\r\n  <li>comply with legal obligations;<\/li>\r\n  <li>resolve disputes;<\/li>\r\n  <li>protect Limitless, users and third parties.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h2>5. Google \/ Gmail \/ Password Recovery<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may use <strong>Google OAuth and Google APIs<\/strong>,\r\nincluding Gmail-related authorization, for limited technical and transactional\r\npurposes.\r\n<\/p>\r\n\r\n<p>\r\nThis may include allowing an authorized Gods Galaxy Game or Limitless Gmail\r\naccount to send:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>password-reset messages;<\/li>\r\n  <li>account-verification messages;<\/li>\r\n  <li>security notices;<\/li>\r\n  <li>membership notices;<\/li>\r\n  <li>reservation-request notifications;<\/li>\r\n  <li>support communications;<\/li>\r\n  <li>administrative transactional email.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nGods Galaxy Game does not request or obtain a user's Google account password\r\nthrough this integration.\r\n<\/p>\r\n\r\n<p>\r\nWhere Google authorization is used:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>access will be limited to functionality reasonably required by the Platform;<\/li>\r\n  <li>Google user data will not be sold;<\/li>\r\n  <li>Google user data will not be used to build advertising profiles;<\/li>\r\n  <li>Google user data will not be transferred to advertising networks;<\/li>\r\n  <li>OAuth credentials or tokens may be securely stored where required to maintain the authorized connection;<\/li>\r\n  <li>access may be revoked through applicable Google controls;<\/li>\r\n  <li>Google user data will only be used for purposes disclosed in this Privacy Policy.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nUse of information received from Google APIs will comply with the\r\nGoogle API Services User Data Policy, including applicable Limited Use\r\nrequirements.\r\n<\/p>\r\n\r\n\r\n<h2>6. Discounts<\/h2>\r\n\r\n<p>\r\nLimitless may display discounts, coupons, promotional prices or special offers\r\nmade available by participating businesses or third-party providers.\r\n<\/p>\r\n\r\n<p>\r\nInformation collected through Discounts may include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>selected offer;<\/li>\r\n  <li>business selected;<\/li>\r\n  <li>user interaction;<\/li>\r\n  <li>favorite status;<\/li>\r\n  <li>checkout activity;<\/li>\r\n  <li>location information;<\/li>\r\n  <li>referral or action clicks.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nDiscount listings may include direct links to a participating business or\r\nexternal checkout system.\r\n<\/p>\r\n\r\n<p>\r\nUnless expressly stated otherwise, participating businesses remain responsible\r\nfor the terms, availability, fulfillment and accuracy of their offers.\r\n<\/p>\r\n\r\n\r\n<h2>7. Gift<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may allow users to browse and select gifts, experiences or\r\nother benefits intended for another person.\r\n<\/p>\r\n\r\n<p>\r\nThe Platform may collect information about the purchaser and, where necessary,\r\ninformation about the intended recipient.\r\n<\/p>\r\n\r\n<p>\r\nUsers who provide another person's personal information represent that they\r\nhave a lawful basis or appropriate permission to provide that information for\r\nthe requested gifting purpose.\r\n<\/p>\r\n\r\n<p>\r\nRecipient information will be used only as reasonably necessary to facilitate\r\nthe gift, delivery, redemption or related communication, unless additional\r\nconsent is obtained.\r\n<\/p>\r\n\r\n\r\n<h2>8. Business Growth \/ Artists \/ Athletes \/ Entrepreneurs<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may publish promotional profiles for Artists, Athletes,\r\nEntrepreneurs and other participants.\r\n<\/p>\r\n\r\n<p>\r\nThese profiles may include public or participant-provided:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>names;<\/li>\r\n  <li>stories;<\/li>\r\n  <li>photographs;<\/li>\r\n  <li>videos;<\/li>\r\n  <li>biographies;<\/li>\r\n  <li>services;<\/li>\r\n  <li>links;<\/li>\r\n  <li>business information;<\/li>\r\n  <li>social-media information;<\/li>\r\n  <li>opportunities;<\/li>\r\n  <li>sponsorship options;<\/li>\r\n  <li>contact methods.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nUsers may interact with these profiles through functions such as:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Request My Service;<\/li>\r\n  <li>Booking Request;<\/li>\r\n  <li>Sponsor Request;<\/li>\r\n  <li>Investment Request;<\/li>\r\n  <li>Custom Request;<\/li>\r\n  <li>Connect;<\/li>\r\n  <li>Gift;<\/li>\r\n  <li>Sponsor;<\/li>\r\n  <li>Invest \/ Dream Engine.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe Platform may record such interactions for operational, analytics,\r\nreferral and communication purposes.\r\n<\/p>\r\n\r\n\r\n<h2>9. Request My Service and Business Connections<\/h2>\r\n\r\n<p>\r\nWhen a user selects Request My Service or another business-connection function,\r\ninformation may be transmitted to Limitless or the selected participant so\r\nthat the inquiry may be reviewed.\r\n<\/p>\r\n\r\n<p>\r\nPossible request types may include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Service Request;<\/li>\r\n  <li>Booking Request;<\/li>\r\n  <li>Sponsor Request;<\/li>\r\n  <li>Investment Request;<\/li>\r\n  <li>Custom Request.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe Platform may transmit information reasonably necessary to identify:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>the requesting user;<\/li>\r\n  <li>selected profile;<\/li>\r\n  <li>type of request;<\/li>\r\n  <li>requested service;<\/li>\r\n  <li>contact method.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h2>10. Business Brokerage<\/h2>\r\n\r\n<p>\r\nLimitless may provide marketing, promotion, business exposure, introductions\r\nand business-brokerage or <strong>corretaje empresarial<\/strong> functions.\r\n<\/p>\r\n\r\n<p>\r\nThis may include connecting users with opportunities relating to:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>purchase of businesses;<\/li>\r\n  <li>sale of businesses;<\/li>\r\n  <li>promotion of businesses;<\/li>\r\n  <li>business growth;<\/li>\r\n  <li>strategic partnerships;<\/li>\r\n  <li>sponsorship;<\/li>\r\n  <li>collaboration;<\/li>\r\n  <li>commercial introductions.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe Platform may collect and share information necessary to facilitate a\r\nrequested introduction.\r\n<\/p>\r\n\r\n<p>\r\nA business connection or inquiry does not automatically create a binding\r\nagreement between the parties.\r\n<\/p>\r\n\r\n\r\n<h2>11. Sponsorship<\/h2>\r\n\r\n<p>\r\nUsers may choose to sponsor or support a profile, project, story, event or\r\nother opportunity.\r\n<\/p>\r\n\r\n<p>\r\nThe Platform may collect and process:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>selected sponsorship;<\/li>\r\n  <li>selected participant;<\/li>\r\n  <li>sponsorship level;<\/li>\r\n  <li>amount;<\/li>\r\n  <li>payment status;<\/li>\r\n  <li>contact details;<\/li>\r\n  <li>custom sponsorship request.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nSponsorship information may be shared with the participant, provider or entity\r\nresponsible for administering the applicable sponsorship.\r\n<\/p>\r\n\r\n\r\n<h2>12. Investment-Related Interest and Dream Engine<\/h2>\r\n\r\n<p>\r\nCertain Platform features may allow users to review business-growth or\r\ninvestment-related information and request additional information,\r\na presentation, meeting or contact.\r\n<\/p>\r\n\r\n<p>\r\nUse of such a feature may result in the collection of:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>selected profile;<\/li>\r\n  <li>selected pathway;<\/li>\r\n  <li>user contact information;<\/li>\r\n  <li>meeting or presentation request;<\/li>\r\n  <li>inquiry details.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nLimitless may use this information to facilitate contact with the relevant\r\nbusiness, profile or opportunity.\r\n<\/p>\r\n\r\n<p>\r\nThis Privacy Policy addresses the processing of information connected to those\r\nrequests. Separate Terms of Service and opportunity disclosures govern the\r\nlegal nature of those opportunities.\r\n<\/p>\r\n\r\n\r\n<h2>13. Travel, Discovery and Local Services<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may provide travel-related discovery, recommendations,\r\nlocal information and service connections.\r\n<\/p>\r\n\r\n<p>\r\nThis may include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>accommodations;<\/li>\r\n  <li>restaurants;<\/li>\r\n  <li>transportation;<\/li>\r\n  <li>local guides;<\/li>\r\n  <li>attractions;<\/li>\r\n  <li>entertainment;<\/li>\r\n  <li>wellness;<\/li>\r\n  <li>nightlife;<\/li>\r\n  <li>private drivers;<\/li>\r\n  <li>concierge;<\/li>\r\n  <li>translation;<\/li>\r\n  <li>security support;<\/li>\r\n  <li>reservations;<\/li>\r\n  <li>VIP services;<\/li>\r\n  <li>destination guides;<\/li>\r\n  <li>travel recommendations.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nLimitless may collect travel preferences and user selections to personalize\r\nthe experience and help coordinate requested services.\r\n<\/p>\r\n\r\n\r\n<h2>14. Reservations<\/h2>\r\n\r\n<p>\r\nThe Platform may maintain a Reservations area where users can review saved or\r\nrequested services, pending requests, confirmed plans, completed activities\r\nand concierge-related information.\r\n<\/p>\r\n\r\n<p>\r\nInformation stored or displayed there may include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>selected provider;<\/li>\r\n  <li>reservation type;<\/li>\r\n  <li>dates;<\/li>\r\n  <li>guest information;<\/li>\r\n  <li>request status;<\/li>\r\n  <li>confirmation status;<\/li>\r\n  <li>notes;<\/li>\r\n  <li>selected experiences;<\/li>\r\n  <li>completed services.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nSome information may be stored temporarily or persistently in browser storage\r\nor other Platform systems depending on the functionality used.\r\n<\/p>\r\n\r\n\r\n<h2>15. Concierge and Service Coordination<\/h2>\r\n\r\n<p>\r\nWhere a user asks for concierge or reservation assistance, Limitless may share\r\nrelevant information with the provider or allied company responsible for\r\nperforming the requested service.\r\n<\/p>\r\n\r\n<p>\r\nOnly information reasonably necessary for the requested purpose should be\r\ntransferred.\r\n<\/p>\r\n\r\n<p>\r\nExamples may include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>name;<\/li>\r\n  <li>phone;<\/li>\r\n  <li>email;<\/li>\r\n  <li>desired service;<\/li>\r\n  <li>date;<\/li>\r\n  <li>location;<\/li>\r\n  <li>number of guests;<\/li>\r\n  <li>preferences;<\/li>\r\n  <li>special instructions.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h2>16. Allied Companies and Third Parties<\/h2>\r\n\r\n<p>\r\nLimitless may work with independent or affiliated companies.\r\n<\/p>\r\n\r\n<p>\r\nThese may include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>tourism businesses;<\/li>\r\n  <li>accommodation providers;<\/li>\r\n  <li>transportation providers;<\/li>\r\n  <li>restaurants;<\/li>\r\n  <li>service providers;<\/li>\r\n  <li>payment processors;<\/li>\r\n  <li>technology providers;<\/li>\r\n  <li>marketing partners;<\/li>\r\n  <li>real-estate companies;<\/li>\r\n  <li>vacation-property or fractional-related companies;<\/li>\r\n  <li>businesses seeking brokerage or promotional services;<\/li>\r\n  <li>other providers selected by users.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe fact that a company or service appears in Gods Galaxy Game does not\r\nnecessarily mean that Limitless owns or operates that company.\r\n<\/p>\r\n\r\n<p>\r\nWhen a user affirmatively requests a third-party or allied service, relevant\r\ninformation may be transferred to that entity to process the request.\r\n<\/p>\r\n\r\n\r\n<h2>17. Real-Estate Referrals<\/h2>\r\n\r\n<p>\r\nWhere a user intentionally requests real-estate assistance, relevant\r\ninformation may be provided to the appropriate real-estate company or\r\nprofessional.\r\n<\/p>\r\n\r\n<p>\r\nThis may include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>name;<\/li>\r\n  <li>contact information;<\/li>\r\n  <li>property interests;<\/li>\r\n  <li>desired location;<\/li>\r\n  <li>transaction type;<\/li>\r\n  <li>inquiry details.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nReal-estate providers may process such information under their own privacy\r\nand legal obligations.\r\n<\/p>\r\n\r\n\r\n<h2>18. Third-Party Websites and Checkout Links<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may contain links to:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>provider websites;<\/li>\r\n  <li>social-media pages;<\/li>\r\n  <li>payment pages;<\/li>\r\n  <li>booking platforms;<\/li>\r\n  <li>external forms;<\/li>\r\n  <li>maps;<\/li>\r\n  <li>third-party services.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nOnce a user leaves Gods Galaxy Game, the destination site's own privacy policy\r\nand terms may apply.\r\n<\/p>\r\n\r\n<p>\r\nLimitless is not responsible for the privacy practices of independent\r\nthird-party websites.\r\n<\/p>\r\n\r\n\r\n<h2>19. Payment Processors<\/h2>\r\n\r\n<p>\r\nPayments may be processed by third-party payment providers.\r\n<\/p>\r\n\r\n<p>\r\nThese providers may independently collect:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>payment-card information;<\/li>\r\n  <li>billing information;<\/li>\r\n  <li>fraud-prevention information;<\/li>\r\n  <li>transaction data.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nLimitless may receive transaction confirmation and limited payment metadata\r\nneeded to administer the transaction.\r\n<\/p>\r\n\r\n\r\n<h2>20. Cookies, Local Storage and Similar Technologies<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may use:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>cookies;<\/li>\r\n  <li>local storage;<\/li>\r\n  <li>session storage;<\/li>\r\n  <li>browser storage;<\/li>\r\n  <li>analytics technologies;<\/li>\r\n  <li>security technologies.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThese technologies may help:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>keep users logged in;<\/li>\r\n  <li>remember preferences;<\/li>\r\n  <li>save selections;<\/li>\r\n  <li>preserve Reservations information;<\/li>\r\n  <li>maintain membership access;<\/li>\r\n  <li>improve performance;<\/li>\r\n  <li>prevent fraud;<\/li>\r\n  <li>measure engagement.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h2>21. Marketing Communications<\/h2>\r\n\r\n<p>\r\nLimitless may send marketing or promotional communications where permitted\r\nby law and where appropriate consent has been obtained.\r\n<\/p>\r\n\r\n<p>\r\nUsers may be able to unsubscribe from optional marketing communications.\r\n<\/p>\r\n\r\n<p>\r\nTransactional or service-related messages may still be sent when necessary\r\nto operate an account, membership, payment or requested service.\r\n<\/p>\r\n\r\n\r\n<h2>22. How We Share Information<\/h2>\r\n\r\n<p>\r\nPersonal information may be shared with:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>technology providers;<\/li>\r\n  <li>hosting providers;<\/li>\r\n  <li>email providers;<\/li>\r\n  <li>Google where applicable;<\/li>\r\n  <li>payment processors;<\/li>\r\n  <li>analytics providers;<\/li>\r\n  <li>participating businesses;<\/li>\r\n  <li>providers specifically selected by the user;<\/li>\r\n  <li>allied companies;<\/li>\r\n  <li>real-estate providers;<\/li>\r\n  <li>tourism or reservation providers;<\/li>\r\n  <li>business participants;<\/li>\r\n  <li>professional advisers;<\/li>\r\n  <li>governmental or legal authorities where required.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nWe do not sell personal information merely because a user creates a\r\nGods Galaxy Game account.\r\n<\/p>\r\n\r\n\r\n<h2>23. International Data Processing<\/h2>\r\n\r\n<p>\r\nSome technology, hosting, email, analytics, payment or service providers may\r\nprocess information outside Colombia.\r\n<\/p>\r\n\r\n<p>\r\nWhere applicable, international transmission or transfer of data will be\r\nhandled subject to applicable Colombian data-protection requirements.\r\n<\/p>\r\n\r\n\r\n<h2>24. Security<\/h2>\r\n\r\n<p>\r\nLimitless uses reasonable administrative, technical and organizational\r\nsafeguards designed to protect personal information.\r\n<\/p>\r\n\r\n<p>\r\nThese may include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>authentication controls;<\/li>\r\n  <li>password protections;<\/li>\r\n  <li>access restrictions;<\/li>\r\n  <li>administrative permissions;<\/li>\r\n  <li>secure communications;<\/li>\r\n  <li>security monitoring;<\/li>\r\n  <li>third-party security systems;<\/li>\r\n  <li>Platform logging.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nNo digital platform can guarantee absolute security.\r\n<\/p>\r\n\r\n\r\n<h2>25. Data Retention<\/h2>\r\n\r\n<p>\r\nPersonal information may be retained for as long as reasonably necessary to:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>maintain accounts;<\/li>\r\n  <li>provide memberships;<\/li>\r\n  <li>fulfill requested services;<\/li>\r\n  <li>process transactions;<\/li>\r\n  <li>maintain reservation history;<\/li>\r\n  <li>maintain legally required records;<\/li>\r\n  <li>resolve disputes;<\/li>\r\n  <li>prevent fraud;<\/li>\r\n  <li>enforce agreements;<\/li>\r\n  <li>comply with legal obligations.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nInformation that is no longer necessary may be deleted, anonymized or\r\nsecurely archived as permitted by law.\r\n<\/p>\r\n\r\n\r\n<h2>26. Personal Data Rights Under Colombian Law<\/h2>\r\n\r\n<p>\r\nWhere Colombian data-protection law applies, individuals may have the right to:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>know their personal data;<\/li>\r\n  <li>access their personal data;<\/li>\r\n  <li>update their personal data;<\/li>\r\n  <li>correct inaccurate data;<\/li>\r\n  <li>request proof of authorization where applicable;<\/li>\r\n  <li>obtain information regarding the use of their data;<\/li>\r\n  <li>request deletion where legally permitted;<\/li>\r\n  <li>revoke authorization where legally permitted;<\/li>\r\n  <li>submit complaints regarding improper processing.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThese rights arise from Colombia's personal-data framework, including\r\nLaw 1581 of 2012 and related regulations incorporated into Decree 1074 of 2015.\r\n<\/p>\r\n\r\n\r\n<h2>27. Privacy Requests<\/h2>\r\n\r\n<p>\r\nUsers may request:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>access;<\/li>\r\n  <li>correction;<\/li>\r\n  <li>updating;<\/li>\r\n  <li>deletion;<\/li>\r\n  <li>information regarding processing;<\/li>\r\n  <li>revocation of authorization where permitted;<\/li>\r\n  <li>review of a privacy complaint.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nPrivacy requests may be submitted to:\r\n<\/p>\r\n\r\n<div class=\"gggLegalContact\">\r\n  <strong>Email:<\/strong><br>\r\n  edwardraigozallc@gmail.com\r\n<\/div>\r\n\r\n<p>\r\nA request should include enough information to identify the user and\r\nunderstand the request.\r\n<\/p>\r\n\r\n<p>\r\nIdentity verification may be required before certain requests are processed.\r\n<\/p>\r\n\r\n\r\n<h2>28. Children and Minors<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game does not knowingly seek to process personal information\r\nrelating to minors in violation of applicable law.\r\n<\/p>\r\n\r\n<p>\r\nWhere information concerning a minor is processed, appropriate legal\r\nprotections and authorization requirements may apply.\r\n<\/p>\r\n\r\n\r\n<h2>29. Changes to This Privacy Policy<\/h2>\r\n\r\n<p>\r\nLimitless may update this Privacy Policy when:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Platform functionality changes;<\/li>\r\n  <li>new products or services are added;<\/li>\r\n  <li>new allied companies are integrated;<\/li>\r\n  <li>data-processing practices change;<\/li>\r\n  <li>legal requirements change;<\/li>\r\n  <li>Google or other technology integrations change.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nMaterial updates will be reflected by changing the Last Updated date.\r\n<\/p>\r\n\r\n\r\n<h2>30. Contact<\/h2>\r\n\r\n<div class=\"gggLegalContact\">\r\n\r\n  <strong>Gods Galaxy Game \/ Limitless<\/strong><br>\r\n  Medell\u00edn, Antioquia, Colombia<br><br>\r\n\r\n  <strong>Website:<\/strong><br>\r\n  https:\/\/godsgalaxygame.com\/<br><br>\r\n\r\n  <strong>Privacy and Legal Contact:<\/strong><br>\r\n  edwardraigozallc@gmail.com<br><br>\r\n\r\n  <strong>Transactional Platform Email:<\/strong><br>\r\n  godsgalaxygame@gmail.com\r\n\r\n<\/div>\r\n\r\n<!-- PRIVACY POLICY CONTENT END -->\r\n\r\n      \r\n\r\n    <\/article>\r\n\r\n\r\n\r\n    <!-- =====================================\r\n         TERMS OF SERVICE\r\n    ====================================== -->\r\n\r\n    <article\r\n      id=\"gggLegalTerms\"\r\n      class=\"gggLegalDocument\"\r\n    >\r\n\r\n      <div class=\"gggLegalEyebrow\">\r\n        Gods Galaxy Game \/ Limitless\r\n      <\/div>\r\n\r\n      <h1>\r\n        Terms of Service\r\n      <\/h1>\r\n\r\n      <div class=\"gggLegalDate\">\r\n        Effective Date: August 31, 2026\r\n        \u00b7\r\n        Last Updated: August 31, 2026\r\n      <\/div>\r\n\r\n\r\n      <!-- TERMS OF SERVICE CONTENT START -->\r\n\r\n<p>\r\nThese Terms of Service (\u201cTerms\u201d) govern access to and use of Gods Galaxy Game,\r\navailable through godsgalaxygame.com, and the digital products, membership\r\nfeatures, interactive experiences, promotional systems, business-growth tools,\r\ntravel-related features, reservation-request functions and other services\r\noperated through the Limitless platform.\r\n<\/p>\r\n\r\n<p>\r\nBy creating an account, purchasing a membership, accessing a paid level,\r\nsubmitting a request, making a purchase or otherwise using Gods Galaxy Game,\r\nyou agree to these Terms.\r\n<\/p>\r\n\r\n<p>\r\nIf you do not agree to these Terms, do not use the Platform.\r\n<\/p>\r\n\r\n\r\n<h2>1. Gods Galaxy Game and Limitless<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game (\u201cGGG\u201d) is a digital ecosystem operated through Limitless.\r\n<\/p>\r\n\r\n<p>\r\nLimitless uses Gods Galaxy Game as a platform for technology, marketing,\r\nadvertising, promotion, discovery, membership experiences, business\r\ndevelopment, business connections, business brokerage, gifting, discounts,\r\ntravel-related discovery and other interactive services.\r\n<\/p>\r\n\r\n<p>\r\nThe existing Limitless system describes Gods Galaxy Game as a centralized\r\nsystem connecting users with marketing exposure, business opportunities,\r\ntravel benefits, gifting pathways and strategic growth opportunities.\r\n<\/p>\r\n\r\n<p>\r\nThe Platform contains multiple sections and experiences. Not every business,\r\nprofile, service, opportunity, property or provider displayed on\r\nGods Galaxy Game is owned or operated by Limitless.\r\n<\/p>\r\n\r\n\r\n<h2>2. Platform Structure<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may include, among other things:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>free and paid membership levels;<\/li>\r\n  <li>Astro-related experiences;<\/li>\r\n  <li>destination and travel discovery;<\/li>\r\n  <li>Explore Medell\u00edn;<\/li>\r\n  <li>travel recommendations;<\/li>\r\n  <li>accommodations;<\/li>\r\n  <li>restaurants;<\/li>\r\n  <li>entertainment;<\/li>\r\n  <li>local experiences;<\/li>\r\n  <li>transportation;<\/li>\r\n  <li>private drivers;<\/li>\r\n  <li>concierge-related services;<\/li>\r\n  <li>translation;<\/li>\r\n  <li>local guides;<\/li>\r\n  <li>security support;<\/li>\r\n  <li>VIP support;<\/li>\r\n  <li>Reservations;<\/li>\r\n  <li>Discounts;<\/li>\r\n  <li>Gift;<\/li>\r\n  <li>gifting or support of selected profiles;<\/li>\r\n  <li>Business Growth;<\/li>\r\n  <li>Artist profiles;<\/li>\r\n  <li>Athlete profiles;<\/li>\r\n  <li>Entrepreneur profiles;<\/li>\r\n  <li>business marketing;<\/li>\r\n  <li>business brokerage;<\/li>\r\n  <li>Request My Service;<\/li>\r\n  <li>Connect;<\/li>\r\n  <li>sponsorship opportunities;<\/li>\r\n  <li>Dream Engine;<\/li>\r\n  <li>business or investment-interest inquiries;<\/li>\r\n  <li>real-estate connections;<\/li>\r\n  <li>vacation-property or fractional-related opportunities;<\/li>\r\n  <li>promotional campaigns;<\/li>\r\n  <li>sustainability or community initiatives;<\/li>\r\n  <li>other services introduced in the future.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe current Travel functionality includes Private Driver, Concierge,\r\nTranslator, Local Guide, Nightlife Help, Reservations, Security Support\r\nand VIP Custom Support.\r\n<\/p>\r\n\r\n<p>\r\nNames, designs, levels and individual sections may be reorganized, renamed\r\nor updated without changing the overall applicability of these Terms.\r\n<\/p>\r\n\r\n\r\n<h2>3. Accounts<\/h2>\r\n\r\n<p>\r\nSome Gods Galaxy Game features may require a user account.\r\n<\/p>\r\n\r\n<p>\r\nUsers agree to:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>provide accurate information;<\/li>\r\n  <li>keep account information reasonably current;<\/li>\r\n  <li>protect passwords and login credentials;<\/li>\r\n  <li>not knowingly permit unauthorized persons to use their account;<\/li>\r\n  <li>notify Limitless if unauthorized access is suspected.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nUsers are responsible for activity conducted through their account except\r\nwhere applicable law provides otherwise.\r\n<\/p>\r\n\r\n<p>\r\nLimitless may use email, including transactional email and password-recovery\r\ncommunications, in connection with account administration.\r\n<\/p>\r\n\r\n\r\n<h2>4. Membership Levels and Access<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may contain different membership levels, paid access areas\r\nor premium experiences.\r\n<\/p>\r\n\r\n<p>\r\nAccess to a particular level may depend on:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>whether the user is logged in;<\/li>\r\n  <li>membership purchased;<\/li>\r\n  <li>access rights associated with the account;<\/li>\r\n  <li>promotional access;<\/li>\r\n  <li>administrator authorization;<\/li>\r\n  <li>other eligibility requirements displayed at the time.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe existing membership system can identify whether a user is logged in and\r\nwhich of the Platform's levels are owned or available to that account.\r\n<\/p>\r\n\r\n<p>\r\nPurchasing one membership or feature does not automatically grant access to\r\nevery other Gods Galaxy Game level, product or affiliated service.\r\n<\/p>\r\n\r\n<p>\r\nLimitless may add, remove, rename or reorganize membership levels and benefits.\r\n<\/p>\r\n\r\n\r\n<h2>5. Free and Paid Features<\/h2>\r\n\r\n<p>\r\nSome Gods Galaxy Game features may be free while others require payment.\r\n<\/p>\r\n\r\n<p>\r\nBefore charging a user, the Platform should identify the applicable price\r\nor direct the user to a checkout where the price is displayed.\r\n<\/p>\r\n\r\n<p>\r\nPayments may include, depending on the feature:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>memberships;<\/li>\r\n  <li>access fees;<\/li>\r\n  <li>gifts;<\/li>\r\n  <li>sponsorships;<\/li>\r\n  <li>promotional products;<\/li>\r\n  <li>discounts or special offers;<\/li>\r\n  <li>reservation-related access or services;<\/li>\r\n  <li>business services;<\/li>\r\n  <li>other clearly identified purchases.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe payment charged by Limitless may be separate from amounts later owed\r\nto an independent service provider.\r\n<\/p>\r\n\r\n\r\n<h2>6. Payment Processing<\/h2>\r\n\r\n<p>\r\nPayments may be processed through third-party payment processors.\r\n<\/p>\r\n\r\n<p>\r\nUsers authorize the applicable payment processor to process the payment\r\ninformation submitted at checkout.\r\n<\/p>\r\n\r\n<p>\r\nLimitless may receive information such as:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>transaction amount;<\/li>\r\n  <li>payment status;<\/li>\r\n  <li>transaction ID;<\/li>\r\n  <li>billing name;<\/li>\r\n  <li>customer identifier;<\/li>\r\n  <li>subscription status.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nLimitless may not directly receive or store full card credentials where\r\nthey are collected and processed by the payment processor.\r\n<\/p>\r\n\r\n<p>\r\nThird-party payment processors are subject to their own terms and privacy\r\npractices.\r\n<\/p>\r\n\r\n\r\n<h2>7. Prices<\/h2>\r\n\r\n<p>\r\nPrices displayed through Gods Galaxy Game may relate to different types\r\nof transactions.\r\n<\/p>\r\n\r\n<p>\r\nFor example:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>a Limitless membership;<\/li>\r\n  <li>an access fee;<\/li>\r\n  <li>a participating business's product or service;<\/li>\r\n  <li>a gift;<\/li>\r\n  <li>a sponsorship;<\/li>\r\n  <li>a third-party reservation;<\/li>\r\n  <li>an external checkout;<\/li>\r\n  <li>a promotional offer.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nUsers should review the applicable checkout before payment.\r\n<\/p>\r\n\r\n<p>\r\nUnless expressly stated otherwise, a price charged by Limitless does not\r\ninclude unrelated third-party charges.\r\n<\/p>\r\n\r\n<p>\r\nTaxes, service charges, provider fees or other amounts may apply where\r\ndisclosed.\r\n<\/p>\r\n\r\n\r\n<h2>8. Cancellations and Refunds<\/h2>\r\n\r\n<p>\r\nRefund and cancellation rights may vary depending on the transaction.\r\n<\/p>\r\n\r\n<p>\r\nA purchase from Limitless is subject to the refund or cancellation conditions\r\ndisplayed for that Limitless product at the time of purchase.\r\n<\/p>\r\n\r\n<p>\r\nA purchase, reservation or service supplied by an independent provider\r\nmay be subject to that provider's own:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>cancellation policy;<\/li>\r\n  <li>modification policy;<\/li>\r\n  <li>refund policy;<\/li>\r\n  <li>no-show policy;<\/li>\r\n  <li>availability rules.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nLimitless does not automatically control an independent provider's refund\r\ndecisions.\r\n<\/p>\r\n\r\n<p>\r\nWhere a transaction is processed through another booking or checkout provider,\r\nthe rules shown by that provider may also apply.\r\n<\/p>\r\n\r\n\r\n<h2>9. Discounts<\/h2>\r\n\r\n<p>\r\nThe Discounts section may display coupons, promotions, special prices,\r\noffers or other incentives from participating businesses.\r\n<\/p>\r\n\r\n<p>\r\nThe current system supports discount inventory across categories such as\r\nHotels, Restaurants, Spa and Work Formation, with individual business offers\r\nand external checkout\/action URLs.\r\n<\/p>\r\n\r\n<p>\r\nUnless expressly stated otherwise:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Limitless is promoting or facilitating access to the offer;<\/li>\r\n  <li>the participating business provides the underlying product or service;<\/li>\r\n  <li>availability is not guaranteed;<\/li>\r\n  <li>the provider determines whether eligibility conditions have been satisfied;<\/li>\r\n  <li>the provider is responsible for fulfilling its offer.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nDiscounts may expire, change or become unavailable.\r\n<\/p>\r\n\r\n\r\n<h2>10. Gift<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may allow users to purchase or select gifts, experiences\r\nor benefits for another person.\r\n<\/p>\r\n\r\n<p>\r\nGift listings may contain:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>gift descriptions;<\/li>\r\n  <li>prices;<\/li>\r\n  <li>recipient messages;<\/li>\r\n  <li>participating businesses;<\/li>\r\n  <li>checkout links;<\/li>\r\n  <li>redemption information.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe actual Gift inventory system supports a gift name, description, price,\r\ncheckout URL and recipient message or notes.\r\n<\/p>\r\n\r\n<p>\r\nA Gift is subject to the availability, restrictions, expiration conditions\r\nor redemption requirements disclosed for that Gift.\r\n<\/p>\r\n\r\n<p>\r\nUsers providing another person's information for delivery or redemption\r\nare responsible for having appropriate authority to provide that information.\r\n<\/p>\r\n\r\n\r\n<h2>11. Profile Support Gifts<\/h2>\r\n\r\n<p>\r\nCertain Artists, Athletes, Entrepreneurs or other selected profiles may allow\r\nusers to send a small Gift or other support.\r\n<\/p>\r\n\r\n<p>\r\nThe existing platform can present $1, $2, $3 or Custom Gift options for\r\nparticipating profiles.\r\n<\/p>\r\n\r\n<p>\r\nA support Gift is not automatically:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>a purchase of ownership;<\/li>\r\n  <li>an investment;<\/li>\r\n  <li>a loan;<\/li>\r\n  <li>a security;<\/li>\r\n  <li>an entitlement to profits;<\/li>\r\n  <li>a charitable tax deduction.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nUnless a specific transaction expressly states otherwise in separate legally\r\napplicable documents, a Gift is simply voluntary support.\r\n<\/p>\r\n\r\n\r\n<h2>12. Charitable or Community Initiatives<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may display campaigns intended to support individuals,\r\ncommunities, sustainability projects, nonprofit organizations or other causes.\r\n<\/p>\r\n\r\n<p>\r\nWhere Limitless links to an independent charitable organization or donation\r\nprocessor, the contribution may be made directly through that organization\r\nrather than to Limitless.\r\n<\/p>\r\n\r\n<p>\r\nUnless expressly stated and legally authorized, Limitless does not represent\r\nthat a payment is tax-deductible.\r\n<\/p>\r\n\r\n<p>\r\nUsers should rely on the receiving organization's documentation for tax\r\ntreatment and charitable status.\r\n<\/p>\r\n\r\n<p>\r\nThe Platform's current sustainability functionality also anticipates\r\nconfigurable donation and community-report pathways.\r\n<\/p>\r\n\r\n\r\n<h2>13. Business Growth \/ Digital Album<\/h2>\r\n\r\n<p>\r\nThe Business Growth area may present profiles of:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Artists;<\/li>\r\n  <li>Athletes;<\/li>\r\n  <li>Entrepreneurs;<\/li>\r\n  <li>businesses;<\/li>\r\n  <li>creators;<\/li>\r\n  <li>other participants.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe experience may function in an album or collectible-profile format.\r\n<\/p>\r\n\r\n<p>\r\nA profile may contain:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>biography;<\/li>\r\n  <li>story;<\/li>\r\n  <li>photographs;<\/li>\r\n  <li>videos;<\/li>\r\n  <li>business information;<\/li>\r\n  <li>achievements;<\/li>\r\n  <li>status;<\/li>\r\n  <li>rewards;<\/li>\r\n  <li>rarity or collectible-style designations;<\/li>\r\n  <li>links;<\/li>\r\n  <li>contact information;<\/li>\r\n  <li>service opportunities;<\/li>\r\n  <li>sponsorship opportunities;<\/li>\r\n  <li>business-growth opportunities.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe current Business Growth Album includes Request, Connect, Invest and\r\nSponsor interaction points.\r\n<\/p>\r\n\r\n<p>\r\nCollectible-style graphics, rarity labels, stars, crowns, VIP indicators\r\nor similar game elements do not, by themselves, represent monetary value,\r\nownership, securities, legal status or guaranteed rewards unless expressly\r\nstated otherwise.\r\n<\/p>\r\n\r\n\r\n<h2>14. Request My Service<\/h2>\r\n\r\n<p>\r\nParticipating profiles may permit users to submit requests.\r\n<\/p>\r\n\r\n<p>\r\nThe current system can offer:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Service Request;<\/li>\r\n  <li>Booking Request;<\/li>\r\n  <li>Sponsor Request;<\/li>\r\n  <li>Investment Request;<\/li>\r\n  <li>Custom Request.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nSubmitting a request does not guarantee:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>acceptance;<\/li>\r\n  <li>availability;<\/li>\r\n  <li>performance;<\/li>\r\n  <li>a booking;<\/li>\r\n  <li>sponsorship;<\/li>\r\n  <li>investment eligibility;<\/li>\r\n  <li>formation of a contract.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe request initiates communication or review.\r\n<\/p>\r\n\r\n<p>\r\nAny final agreement may require additional documentation between the\r\napplicable parties.\r\n<\/p>\r\n\r\n\r\n<h2>15. Connect \/ Contact<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may provide links enabling a user to contact or follow\r\na profile through:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>websites;<\/li>\r\n  <li>Instagram;<\/li>\r\n  <li>Facebook;<\/li>\r\n  <li>YouTube;<\/li>\r\n  <li>TikTok;<\/li>\r\n  <li>WhatsApp;<\/li>\r\n  <li>email;<\/li>\r\n  <li>other communication systems.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe current control system supports multiple external contact channels\r\nfor participating profiles.\r\n<\/p>\r\n\r\n<p>\r\nOnce a user interacts with an independent platform or provider,\r\nthat service's own terms and privacy rules apply.\r\n<\/p>\r\n\r\n\r\n<h2>16. Sponsorship<\/h2>\r\n\r\n<p>\r\nCertain profiles or projects may offer sponsorship opportunities.\r\n<\/p>\r\n\r\n<p>\r\nPossible sponsorship pathways currently include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Life Film;<\/li>\r\n  <li>City Stage;<\/li>\r\n  <li>Create Event;<\/li>\r\n  <li>Global Movement.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe present Sponsor Portal can display support levels of $10, $25,\r\n$100 and Custom.\r\n<\/p>\r\n\r\n<p>\r\nSpecific prices, packages and benefits may be changed or configured\r\nfor individual profiles.\r\n<\/p>\r\n\r\n<p>\r\nUnless explicitly stated in a separate written contract, sponsorship\r\ndoes not provide:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>company ownership;<\/li>\r\n  <li>equity;<\/li>\r\n  <li>investment returns;<\/li>\r\n  <li>voting rights;<\/li>\r\n  <li>guaranteed publicity;<\/li>\r\n  <li>guaranteed financial benefits.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nAny commercial sponsorship carrying negotiated rights or obligations\r\nmay require a separate agreement.\r\n<\/p>\r\n\r\n\r\n<h2>17. Dream Engine and Investment-Related Interest<\/h2>\r\n\r\n<p>\r\nCertain Business Growth profiles may include a Dream Engine or\r\ninvestment-interest section.\r\n<\/p>\r\n\r\n<p>\r\nThe current system contains pathways identified as:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Life Film;<\/li>\r\n  <li>Dream Build;<\/li>\r\n  <li>Growth Path;<\/li>\r\n  <li>Investor Circle.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe system can display fields such as Goal, Raised and Offer.\r\n<\/p>\r\n\r\n<p>\r\nThese features may be used to:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>tell the story behind a project;<\/li>\r\n  <li>describe funding or development needs;<\/li>\r\n  <li>describe business-growth concepts;<\/li>\r\n  <li>allow users to request additional information;<\/li>\r\n  <li>request a presentation;<\/li>\r\n  <li>contact a team;<\/li>\r\n  <li>review a business opportunity.<\/li>\r\n<\/ul>\r\n\r\n<div class=\"gggLegalNotice\">\r\n  <strong>Important Investment Disclosure<\/strong><br><br>\r\n\r\n  Unless expressly stated in legally compliant transaction documents\r\n  provided by the party legally offering the opportunity, Gods Galaxy Game\r\n  and Limitless do not, merely by displaying an opportunity, offer or sell\r\n  securities.\r\n<\/div>\r\n\r\n<p>\r\nLimitless does not represent itself through the Platform as:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>a broker-dealer;<\/li>\r\n  <li>securities exchange;<\/li>\r\n  <li>investment adviser;<\/li>\r\n  <li>investment fund;<\/li>\r\n  <li>portfolio manager;<\/li>\r\n  <li>custodian of investment assets.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe Platform's existing opportunity notice likewise states that\r\ninvestment-related references are informational\/promotional, that financial\r\nreturns are not guaranteed, and that Limitless does not operate as an\r\ninvestment manager, financial adviser or securities provider through those\r\nlistings.\r\n<\/p>\r\n\r\n<p>\r\nA user must independently review any actual investment transaction,\r\noffering documents, risks and the identity and authorization of the party\r\noffering it.\r\n<\/p>\r\n\r\n\r\n<h2>18. Business Brokerage \/ Corretaje Empresarial<\/h2>\r\n\r\n<p>\r\nLimitless may provide business marketing, business-development, introduction\r\nand business brokerage \/ corretaje empresarial services.\r\n<\/p>\r\n\r\n<p>\r\nThis may include facilitating introductions relating to:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>sale of a business;<\/li>\r\n  <li>purchase of a business;<\/li>\r\n  <li>business growth;<\/li>\r\n  <li>commercial partnerships;<\/li>\r\n  <li>sponsorship;<\/li>\r\n  <li>promotion;<\/li>\r\n  <li>licensing;<\/li>\r\n  <li>franchising;<\/li>\r\n  <li>strategic opportunities.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe existing Platform expressly identifies Limitless activity involving\r\nmarketing and business brokerage, including connections concerning the\r\npurchase, sale, promotion or growth of businesses.\r\n<\/p>\r\n\r\n<p>\r\nUnless expressly agreed otherwise in writing, displaying a business\r\nor opportunity does not mean Limitless:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>owns the business;<\/li>\r\n  <li>guarantees its financial information;<\/li>\r\n  <li>guarantees that a transaction will close;<\/li>\r\n  <li>guarantees profitability;<\/li>\r\n  <li>acts as attorney, accountant or financial adviser for either party.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nBusiness transactions may require separate brokerage, referral,\r\nconfidentiality, commission, purchase, due-diligence or other agreements.\r\n<\/p>\r\n\r\n\r\n<h2>19. Information Provided by Businesses and Profiles<\/h2>\r\n\r\n<p>\r\nBusinesses and participating profiles are responsible for providing truthful\r\nand authorized information.\r\n<\/p>\r\n\r\n<p>\r\nThey must have the right to submit:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>photographs;<\/li>\r\n  <li>logos;<\/li>\r\n  <li>trademarks;<\/li>\r\n  <li>videos;<\/li>\r\n  <li>descriptions;<\/li>\r\n  <li>offers;<\/li>\r\n  <li>prices;<\/li>\r\n  <li>contact information;<\/li>\r\n  <li>opportunity information;<\/li>\r\n  <li>other content.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nLimitless may remove or modify listings that appear fraudulent, misleading,\r\ninfringing, unlawful or inconsistent with Platform rules.\r\n<\/p>\r\n\r\n\r\n<h2>20. Travel Discovery<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may present travel-related businesses, destinations,\r\nrecommendations, accommodations, restaurants, transportation, experiences\r\nand local services.\r\n<\/p>\r\n\r\n<p>\r\nThis may function as:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>advertising;<\/li>\r\n  <li>discovery;<\/li>\r\n  <li>recommendation;<\/li>\r\n  <li>referral;<\/li>\r\n  <li>marketing;<\/li>\r\n  <li>informational content;<\/li>\r\n  <li>connection with a third-party provider.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe presence of a provider on the Platform does not automatically mean\r\nLimitless owns, controls or operates that provider.\r\n<\/p>\r\n\r\n\r\n<h2>21. Reservations<\/h2>\r\n\r\n<p>\r\nA user may be able to move from discovery into a Reservations area.\r\n<\/p>\r\n\r\n<p>\r\nReservations may display or manage:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>saved selections;<\/li>\r\n  <li>requested services;<\/li>\r\n  <li>pending requests;<\/li>\r\n  <li>confirmed requests;<\/li>\r\n  <li>completed experiences;<\/li>\r\n  <li>accommodations;<\/li>\r\n  <li>transportation;<\/li>\r\n  <li>dining;<\/li>\r\n  <li>local services;<\/li>\r\n  <li>concierge requests;<\/li>\r\n  <li>other travel-related activity.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nA request shown as Saved, Pending, Requested, Waiting or similar is\r\nnot a confirmed reservation.\r\n<\/p>\r\n\r\n<p>\r\nA reservation becomes confirmed only when the applicable provider\r\nor authorized reservation operator provides confirmation.\r\n<\/p>\r\n\r\n\r\n<h2>22. Reserve With Bliss \/ Concierge Functions<\/h2>\r\n\r\n<p>\r\nCertain areas may use names such as Reserve With Bliss, Bliss Concierge\r\nor similar service labels.\r\n<\/p>\r\n\r\n<p>\r\nThese features may allow a user to request assistance arranging a service\r\ndiscovered through Gods Galaxy Game.\r\n<\/p>\r\n\r\n<p>\r\nA request may involve:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>accommodation;<\/li>\r\n  <li>restaurant;<\/li>\r\n  <li>transportation;<\/li>\r\n  <li>private driver;<\/li>\r\n  <li>entertainment;<\/li>\r\n  <li>attraction;<\/li>\r\n  <li>experience;<\/li>\r\n  <li>nightlife;<\/li>\r\n  <li>local guide;<\/li>\r\n  <li>translator;<\/li>\r\n  <li>concierge assistance;<\/li>\r\n  <li>security support;<\/li>\r\n  <li>VIP arrangements;<\/li>\r\n  <li>another custom request.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nSubmitting a request does not guarantee availability.\r\n<\/p>\r\n\r\n<p>\r\nThe applicable provider, allied entity or reservation operator may need\r\nto confirm price, availability and terms before a binding reservation exists.\r\n<\/p>\r\n\r\n\r\n<h2>23. Third-Party Travel Inventory<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may eventually display inventory or booking technology\r\nsupplied by external travel companies, hotel distributors, car-rental systems,\r\nAPIs, affiliate networks or booking platforms.\r\n<\/p>\r\n\r\n<p>\r\nWhere such inventory is supplied by another company:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>availability may change;<\/li>\r\n  <li>prices may change;<\/li>\r\n  <li>third-party taxes and fees may apply;<\/li>\r\n  <li>third-party cancellation rules may apply;<\/li>\r\n  <li>the third party may become the merchant or contracting provider.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nUsers should review the information provided at checkout.\r\n<\/p>\r\n\r\n\r\n<h2>24. Independent Service Providers<\/h2>\r\n\r\n<p>\r\nServices displayed through the Platform may be fulfilled by independent\r\nproviders.\r\n<\/p>\r\n\r\n<p>\r\nThese may include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>accommodations;<\/li>\r\n  <li>hotels;<\/li>\r\n  <li>restaurants;<\/li>\r\n  <li>drivers;<\/li>\r\n  <li>tour providers;<\/li>\r\n  <li>guides;<\/li>\r\n  <li>beauty or wellness businesses;<\/li>\r\n  <li>entertainment businesses;<\/li>\r\n  <li>security providers;<\/li>\r\n  <li>translators;<\/li>\r\n  <li>professional services;<\/li>\r\n  <li>other merchants.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nUnless expressly stated otherwise, independent providers are responsible for:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>their licenses;<\/li>\r\n  <li>insurance;<\/li>\r\n  <li>employees;<\/li>\r\n  <li>safety;<\/li>\r\n  <li>service quality;<\/li>\r\n  <li>pricing;<\/li>\r\n  <li>availability;<\/li>\r\n  <li>cancellations;<\/li>\r\n  <li>refunds;<\/li>\r\n  <li>taxes;<\/li>\r\n  <li>legal compliance.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h2>25. Allied Companies<\/h2>\r\n\r\n<p>\r\nLimitless may work with legally separate businesses or allied companies.\r\n<\/p>\r\n\r\n<p>\r\nAn allied company may provide a specialized service that a user reaches\r\nthrough Gods Galaxy Game.\r\n<\/p>\r\n\r\n<p>\r\nFor example, an allied business may handle:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>tourism or reservations;<\/li>\r\n  <li>fractional or vacation-property activities;<\/li>\r\n  <li>real estate;<\/li>\r\n  <li>specialized professional services;<\/li>\r\n  <li>other services outside Limitless's direct operations.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe Platform should identify the applicable provider when reasonably\r\nnecessary for the transaction.\r\n<\/p>\r\n\r\n<p>\r\nAn allied company's separate terms may apply once the user requests\r\nor purchases that company's service.\r\n<\/p>\r\n\r\n\r\n<h2>26. Real Estate<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may promote or direct users toward real-estate opportunities\r\nor an allied real-estate business.\r\n<\/p>\r\n\r\n<p>\r\nUnless Limitless itself is expressly identified as the licensed real-estate\r\nprovider for a particular transaction, real-estate brokerage services are\r\nperformed by the identified licensed real-estate company or professional.\r\n<\/p>\r\n\r\n<p>\r\nAny real-estate representation, brokerage commission, property contract\r\nor transaction is governed by the applicable separate real-estate agreements.\r\n<\/p>\r\n\r\n\r\n<h2>27. Vacation Property \/ Fractional Opportunities<\/h2>\r\n\r\n<p>\r\nThe Platform may display vacation-property, fractional-use, timeshare-related,\r\nexchange, presentation or similar opportunities.\r\n<\/p>\r\n\r\n<p>\r\nThe existing game includes vacation-property exchange and fractional-use\r\nconcepts that can direct users toward a specialized fractional club.\r\n<\/p>\r\n\r\n<p>\r\nParticipation may be subject to separate disclosures, eligibility requirements,\r\npresentation conditions and contracts.\r\n<\/p>\r\n\r\n<p>\r\nNothing displayed inside the game should replace legally required\r\ndocumentation for an actual vacation-ownership or fractional transaction.\r\n<\/p>\r\n\r\n\r\n<h2>28. Franchise and City Opportunities<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may invite users, businesses or local stakeholders to\r\ninquire about:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>bringing Gods Galaxy Game to another city;<\/li>\r\n  <li>becoming a City Ambassador;<\/li>\r\n  <li>sponsorship;<\/li>\r\n  <li>local business participation;<\/li>\r\n  <li>licensing;<\/li>\r\n  <li>franchising;<\/li>\r\n  <li>city launches;<\/li>\r\n  <li>community projects.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe game presently includes paths such as Connect Your City and\r\nLaunch Gods Galaxy Game, including potential connections with businesses,\r\ntourism leaders, venues, investors or officials.\r\n<\/p>\r\n\r\n<p>\r\nAn inquiry does not grant a franchise, license, territory or exclusivity.\r\n<\/p>\r\n\r\n<p>\r\nThose rights exist only through a separate executed agreement.\r\n<\/p>\r\n\r\n\r\n<h2>29. User Content<\/h2>\r\n\r\n<p>\r\nUsers may be able to submit:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>messages;<\/li>\r\n  <li>photos;<\/li>\r\n  <li>requests;<\/li>\r\n  <li>reviews;<\/li>\r\n  <li>business information;<\/li>\r\n  <li>profile information;<\/li>\r\n  <li>stories;<\/li>\r\n  <li>suggestions;<\/li>\r\n  <li>location reports;<\/li>\r\n  <li>other materials.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nUsers retain ownership of content they legally own.\r\n<\/p>\r\n\r\n<p>\r\nBy submitting content for publication or use within Gods Galaxy Game,\r\nthe user grants Limitless a non-exclusive license to host, display,\r\nreproduce, format and use that content as reasonably necessary to operate\r\nand promote the applicable Platform feature, subject to applicable law\r\nand any separate agreement.\r\n<\/p>\r\n\r\n<p>\r\nUsers must not submit content they do not have the right to use.\r\n<\/p>\r\n\r\n\r\n<h2>30. Intellectual Property<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game, Limitless branding, original designs, software,\r\nvisual systems, game mechanics, graphics, layouts, text, logos and other\r\noriginal Platform content may be protected by intellectual-property laws.\r\n<\/p>\r\n\r\n<p>\r\nExcept where expressly permitted, users may not:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>copy substantial Platform content;<\/li>\r\n  <li>reproduce the software;<\/li>\r\n  <li>scrape protected Platform content;<\/li>\r\n  <li>sell copies;<\/li>\r\n  <li>reverse engineer protected code;<\/li>\r\n  <li>falsely claim ownership;<\/li>\r\n  <li>use Limitless\/GGG branding in a misleading manner.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThird-party logos, trademarks, photographs and other materials remain\r\nthe property of their respective owners.\r\n<\/p>\r\n\r\n\r\n<h2>31. Prohibited Use<\/h2>\r\n\r\n<p>\r\nUsers may not use Gods Galaxy Game to:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>commit fraud;<\/li>\r\n  <li>impersonate another person;<\/li>\r\n  <li>submit deliberately false information;<\/li>\r\n  <li>interfere with Platform security;<\/li>\r\n  <li>attempt unauthorized account access;<\/li>\r\n  <li>distribute malware;<\/li>\r\n  <li>scrape or attack systems in violation of law;<\/li>\r\n  <li>harass other users or providers;<\/li>\r\n  <li>violate intellectual-property rights;<\/li>\r\n  <li>conduct unlawful financial activity;<\/li>\r\n  <li>promote illegal products or services;<\/li>\r\n  <li>exploit children;<\/li>\r\n  <li>facilitate criminal conduct;<\/li>\r\n  <li>misuse payment systems;<\/li>\r\n  <li>circumvent membership access controls.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nLimitless may restrict access for suspected abuse.\r\n<\/p>\r\n\r\n\r\n<h2>32. Platform Availability<\/h2>\r\n\r\n<p>\r\nLimitless does not guarantee that Gods Galaxy Game will operate without\r\ninterruption.\r\n<\/p>\r\n\r\n<p>\r\nFeatures may occasionally be:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>unavailable;<\/li>\r\n  <li>under maintenance;<\/li>\r\n  <li>modified;<\/li>\r\n  <li>replaced;<\/li>\r\n  <li>discontinued;<\/li>\r\n  <li>affected by third-party services.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nLimitless may update or reorganize the Platform as the business develops.\r\n<\/p>\r\n\r\n\r\n<h2>33. No Guarantee of Third-Party Services<\/h2>\r\n\r\n<p>\r\nLimitless cannot guarantee the quality or performance of every independent\r\nprovider displayed through the Platform.\r\n<\/p>\r\n\r\n<p>\r\nA user's dispute concerning an independent provider may ultimately need\r\nto be resolved with that provider.\r\n<\/p>\r\n\r\n<p>\r\nNothing in these Terms eliminates consumer rights that cannot legally\r\nbe waived.\r\n<\/p>\r\n\r\n\r\n<h2>34. Opportunity and Financial Information<\/h2>\r\n\r\n<p>\r\nBusiness, sponsorship or growth information appearing through\r\nGods Galaxy Game may come from third parties.\r\n<\/p>\r\n\r\n<p>\r\nUsers should conduct independent due diligence.\r\n<\/p>\r\n\r\n<p>\r\nLimitless does not guarantee:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>revenue;<\/li>\r\n  <li>valuations;<\/li>\r\n  <li>earnings;<\/li>\r\n  <li>financial statements;<\/li>\r\n  <li>projected returns;<\/li>\r\n  <li>future business performance;<\/li>\r\n  <li>funding success;<\/li>\r\n  <li>sponsorship results;<\/li>\r\n  <li>investment outcomes.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nPast or projected performance does not guarantee future results.\r\n<\/p>\r\n\r\n\r\n<h2>35. Disclaimers<\/h2>\r\n\r\n<p>\r\nTo the maximum extent permitted by law, Gods Galaxy Game is provided\r\non an \u201cas available\u201d basis.\r\n<\/p>\r\n\r\n<p>\r\nLimitless does not warrant that:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>every listing is error-free;<\/li>\r\n  <li>every third-party provider will perform;<\/li>\r\n  <li>every request will be accepted;<\/li>\r\n  <li>every reservation will be available;<\/li>\r\n  <li>every discount will remain active;<\/li>\r\n  <li>every opportunity will produce a result;<\/li>\r\n  <li>every external website will remain available.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThis section does not limit mandatory legal warranties or consumer\r\nprotections that cannot legally be excluded.\r\n<\/p>\r\n\r\n\r\n<h2>36. Limitation of Liability<\/h2>\r\n\r\n<p>\r\nTo the maximum extent permitted by applicable law, Limitless will not\r\nbe responsible for indirect, incidental, special, consequential or\r\nspeculative losses resulting solely from:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>an independent provider's conduct;<\/li>\r\n  <li>an external site's conduct;<\/li>\r\n  <li>unavailable third-party inventory;<\/li>\r\n  <li>failed business opportunities;<\/li>\r\n  <li>investment losses;<\/li>\r\n  <li>events outside Limitless's reasonable control.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nNothing in these Terms excludes liability that applicable law does not\r\npermit Limitless to exclude.\r\n<\/p>\r\n\r\n\r\n<h2>37. Indemnification<\/h2>\r\n\r\n<p>\r\nTo the extent permitted by law, a user or business participant agrees\r\nto be responsible for claims resulting from their own:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>unlawful conduct;<\/li>\r\n  <li>fraud;<\/li>\r\n  <li>infringement;<\/li>\r\n  <li>unauthorized content;<\/li>\r\n  <li>misuse of the Platform;<\/li>\r\n  <li>material violation of these Terms.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h2>38. Suspension or Termination<\/h2>\r\n\r\n<p>\r\nLimitless may suspend or terminate Platform access where reasonably\r\nnecessary because of:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>fraud;<\/li>\r\n  <li>abuse;<\/li>\r\n  <li>security threats;<\/li>\r\n  <li>prohibited conduct;<\/li>\r\n  <li>material Terms violations;<\/li>\r\n  <li>payment disputes or chargebacks involving fraud;<\/li>\r\n  <li>legal requirements.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nWhere appropriate, Limitless may also remove a listing or disable an\r\nindividual feature without terminating the entire account.\r\n<\/p>\r\n\r\n\r\n<h2>39. Privacy<\/h2>\r\n\r\n<p>\r\nUse of Gods Galaxy Game is also governed by the Gods Galaxy Game \/\r\nLimitless Privacy Policy &amp; Personal Data Treatment Policy.\r\n<\/p>\r\n\r\n<p>\r\nThe Privacy Policy explains how personal information is collected, used,\r\nstored, shared and protected.\r\n<\/p>\r\n\r\n<p>\r\nIt should be accessible through the dedicated public Privacy Policy URL.\r\n<\/p>\r\n\r\n\r\n<h2>40. Changes to These Terms<\/h2>\r\n\r\n<p>\r\nLimitless may update these Terms to reflect:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Platform changes;<\/li>\r\n  <li>new products;<\/li>\r\n  <li>new membership systems;<\/li>\r\n  <li>changes in allied-company relationships;<\/li>\r\n  <li>new payment functions;<\/li>\r\n  <li>new legal requirements;<\/li>\r\n  <li>new technology.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe Last Updated date will identify the current version.\r\n<\/p>\r\n\r\n<p>\r\nWhere required by law, additional notice or consent may be provided\r\nfor material changes.\r\n<\/p>\r\n\r\n\r\n<h2>41. Governing Law<\/h2>\r\n\r\n<p>\r\nExcept where mandatory consumer or other applicable law requires otherwise,\r\nthese Terms are governed by the laws applicable to the legal operator of\r\nLimitless and the Gods Galaxy Game Platform in Colombia.\r\n<\/p>\r\n\r\n<p>\r\nThe Platform currently identifies its operations from Medell\u00edn,\r\nAntioquia, Colombia.\r\n<\/p>\r\n\r\n<p>\r\nNothing in this section deprives a consumer of mandatory rights or\r\njurisdiction that applicable law provides.\r\n<\/p>\r\n\r\n\r\n<h2>42. Severability<\/h2>\r\n\r\n<p>\r\nIf any provision of these Terms is found unenforceable, the remaining\r\nprovisions remain in effect to the extent permitted by law.\r\n<\/p>\r\n\r\n\r\n<h2>43. Entire Platform Terms<\/h2>\r\n\r\n<p>\r\nThese Terms constitute the general Terms of Service for Gods Galaxy Game\r\nand Limitless.\r\n<\/p>\r\n\r\n<p>\r\nCertain activities may require additional agreements, including:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>business-brokerage agreements;<\/li>\r\n  <li>sponsorship agreements;<\/li>\r\n  <li>franchise or licensing agreements;<\/li>\r\n  <li>investment or opportunity documentation;<\/li>\r\n  <li>tourism or reservation conditions;<\/li>\r\n  <li>real-estate agreements;<\/li>\r\n  <li>fractional or vacation-property agreements;<\/li>\r\n  <li>provider or host agreements.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nIf a specific written agreement conflicts with these general Terms\r\nconcerning that specific transaction, the specific agreement controls\r\nto the extent stated in it.\r\n<\/p>\r\n\r\n\r\n<h2>44. Contact<\/h2>\r\n\r\n<div class=\"gggLegalContact\">\r\n\r\n  <strong>Gods Galaxy Game \/ Limitless<\/strong><br>\r\n  Medell\u00edn, Antioquia, Colombia<br><br>\r\n\r\n  <strong>Website:<\/strong><br>\r\n  https:\/\/godsgalaxygame.com\/<br><br>\r\n\r\n  <strong>Legal \/ Support Contact:<\/strong><br>\r\n  edwardraigozallc@gmail.com<br><br>\r\n\r\n  <strong>Platform Email:<\/strong><br>\r\n  godsgalaxygame@gmail.com\r\n\r\n<\/div>\r\n\r\n<!-- TERMS OF SERVICE CONTENT END -->\r\n\r\n    <\/article>\r\n\r\n\r\n\r\n    <!-- =====================================\r\n         OPERATIONS DISCLOSURE\r\n    ====================================== -->\r\n\r\n    <article\r\n      id=\"gggLegalOperations\"\r\n      class=\"gggLegalDocument\"\r\n    >\r\n\r\n      <div class=\"gggLegalEyebrow\">\r\n        Gods Galaxy Game \/ Limitless\r\n      <\/div>\r\n\r\n      <h1>\r\n        Platform & Business Operations Disclosure\r\n      <\/h1>\r\n\r\n      <div class=\"gggLegalDate\">\r\n        Effective Date: August 31, 2026\r\n        \u00b7\r\n        Last Updated: August 31, 2026\r\n      <\/div>\r\n\r\n\r\n      <!-- OPERATIONS DISCLOSURE CONTENT START -->\r\n\r\n<p>\r\nThis Platform &amp; Business Operations Disclosure explains\r\n<strong>what Limitless is, what Gods Galaxy Game is, how the Platform operates,\r\nhow users move between its different areas, how Limitless works with independent\r\nbusinesses and allied companies, and which party may be responsible for a\r\nparticular service or transaction.<\/strong>\r\n<\/p>\r\n\r\n<p>\r\nThis document should be read together with the\r\n<strong>Privacy Policy &amp; Personal Data Treatment Policy<\/strong>\r\nand the <strong>Terms of Service<\/strong>.\r\n<\/p>\r\n\r\n\r\n<h2>1. The Company and the Platform<\/h2>\r\n\r\n<p>\r\n<strong>Limitless<\/strong> operates <strong>Gods Galaxy Game (\u201cGGG\u201d)<\/strong>,\r\na digital ecosystem available through godsgalaxygame.com.\r\n<\/p>\r\n\r\n<p>\r\nGods Galaxy Game is the technology and customer-facing platform through which\r\nLimitless organizes multiple forms of:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>marketing;<\/li>\r\n  <li>advertising;<\/li>\r\n  <li>promotion;<\/li>\r\n  <li>discovery;<\/li>\r\n  <li>memberships;<\/li>\r\n  <li>discounts;<\/li>\r\n  <li>gifting;<\/li>\r\n  <li>travel discovery;<\/li>\r\n  <li>business exposure;<\/li>\r\n  <li>business growth;<\/li>\r\n  <li>sponsorship;<\/li>\r\n  <li>business brokerage;<\/li>\r\n  <li>referrals;<\/li>\r\n  <li>service requests;<\/li>\r\n  <li>commercial introductions;<\/li>\r\n  <li>community initiatives;<\/li>\r\n  <li>other interactive opportunities.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe existing Platform itself describes Gods Galaxy Game as a centralized system\r\nconnecting users, brands and businesses through\r\n<strong>marketing exposure, business opportunities, travel benefits,\r\ngifting pathways and strategic growth routes<\/strong>.\r\n<\/p>\r\n\r\n<p>\r\nGods Galaxy Game is therefore <strong>not a separate company for every section\r\ndisplayed inside the website<\/strong>.\r\n<\/p>\r\n\r\n<p>\r\nDifferent areas of Gods Galaxy Game may simply be different products,\r\nexperiences or marketing divisions operated through Limitless.\r\n<\/p>\r\n\r\n\r\n<h2>2. One Digital Ecosystem<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game is designed as a connected ecosystem rather than a collection\r\nof unrelated websites.\r\n<\/p>\r\n\r\n<p>\r\nA user may enter through one area of the Platform and later interact with\r\nother areas.\r\n<\/p>\r\n\r\n<p>\r\nDepending on the feature, Gods Galaxy Game may provide:\r\n<\/p>\r\n\r\n<div class=\"gggLegalNotice\">\r\n  <strong>\r\n  Discovery \u2192 Information \u2192 Selection \u2192 Connection \u2192 Request \u2192 Checkout\r\n  \u2192 Provider Fulfillment\r\n  <\/strong>\r\n<\/div>\r\n\r\n<p>\r\nNot every step is necessarily performed by Limitless.\r\n<\/p>\r\n\r\n<p>\r\nFor example, a user might discover a restaurant through Gods Galaxy Game,\r\nsave it, request help reserving it, and ultimately receive the restaurant\r\nservice from the independent restaurant.\r\n<\/p>\r\n\r\n<p>\r\nSimilarly, a user may discover a business opportunity through Gods Galaxy Game\r\nand later enter into a separate agreement directly with the business owner\r\nor another legally responsible party.\r\n<\/p>\r\n\r\n\r\n<h2>3. What Limitless Does Directly<\/h2>\r\n\r\n<p>\r\nLimitless may directly operate activities such as:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>operating GodsGalaxyGame.com;<\/li>\r\n  <li>developing and maintaining the Platform;<\/li>\r\n  <li>operating membership systems;<\/li>\r\n  <li>selling access to Limitless\/GGG memberships or Platform features;<\/li>\r\n  <li>marketing businesses;<\/li>\r\n  <li>creating promotional campaigns;<\/li>\r\n  <li>selling advertising exposure;<\/li>\r\n  <li>displaying business profiles;<\/li>\r\n  <li>managing digital directories and inventories;<\/li>\r\n  <li>creating discounts and promotional pathways;<\/li>\r\n  <li>operating Gift interfaces;<\/li>\r\n  <li>generating leads;<\/li>\r\n  <li>receiving business inquiries;<\/li>\r\n  <li>providing business-introduction services;<\/li>\r\n  <li>providing business-brokerage or <strong>corretaje empresarial<\/strong> services where applicable;<\/li>\r\n  <li>connecting users with independent providers;<\/li>\r\n  <li>operating digital Business Growth profiles;<\/li>\r\n  <li>displaying sponsorship opportunities;<\/li>\r\n  <li>facilitating requests for more information;<\/li>\r\n  <li>operating software and customer dashboards;<\/li>\r\n  <li>administering Platform accounts;<\/li>\r\n  <li>collecting Platform-related payments where Limitless is identified as the seller;<\/li>\r\n  <li>licensing, franchising or expanding Gods Galaxy Game where separately agreed.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe existing Limitless legal information expressly describes marketing and\r\nbusiness brokerage activities involving visibility and potential connections\r\nfor the <strong>purchase, sale, promotion or growth of businesses<\/strong>.\r\n<\/p>\r\n\r\n\r\n<h2>4. What Limitless Does Not Automatically Do<\/h2>\r\n\r\n<p>\r\nThe fact that something appears inside Gods Galaxy Game does\r\n<strong>not automatically mean Limitless is the underlying provider<\/strong>.\r\n<\/p>\r\n\r\n<p>\r\nUnless specifically identified otherwise, Limitless does not automatically become:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>the hotel;<\/li>\r\n  <li>accommodation owner;<\/li>\r\n  <li>restaurant;<\/li>\r\n  <li>transportation company;<\/li>\r\n  <li>driver;<\/li>\r\n  <li>tour operator;<\/li>\r\n  <li>security company;<\/li>\r\n  <li>spa;<\/li>\r\n  <li>medical provider;<\/li>\r\n  <li>real-estate brokerage;<\/li>\r\n  <li>property owner;<\/li>\r\n  <li>fractional-property seller;<\/li>\r\n  <li>investment issuer;<\/li>\r\n  <li>financial adviser;<\/li>\r\n  <li>securities broker;<\/li>\r\n  <li>charitable organization;<\/li>\r\n  <li>artist;<\/li>\r\n  <li>athlete;<\/li>\r\n  <li>entrepreneur;<\/li>\r\n  <li>event organizer;<\/li>\r\n  <li>seller of every third-party product appearing on the Platform.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe Platform may instead function as the\r\n<strong>marketing, technology, discovery, referral or connection layer<\/strong>\r\nbetween the user and the applicable provider.\r\n<\/p>\r\n\r\n\r\n<h2>5. Platform Sections Are Not Necessarily Separate Companies<\/h2>\r\n\r\n<p>\r\nNames used inside Gods Galaxy Game may identify a:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>feature;<\/li>\r\n  <li>section;<\/li>\r\n  <li>membership level;<\/li>\r\n  <li>campaign;<\/li>\r\n  <li>experience;<\/li>\r\n  <li>service label;<\/li>\r\n  <li>internal brand;<\/li>\r\n  <li>allied-company service.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nA name appearing inside Gods Galaxy Game does not, by itself, mean a separate\r\nlegal entity exists.\r\n<\/p>\r\n\r\n<p>\r\nThe identity of the actual seller or service provider should be determined\r\nby the specific transaction, checkout, reservation confirmation or agreement.\r\n<\/p>\r\n\r\n\r\n<h2>6. Memberships and Levels<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may organize access through different membership levels.\r\n<\/p>\r\n\r\n<p>\r\nMembership levels control access to specific Platform experiences.\r\n<\/p>\r\n\r\n<p>\r\nThe current Platform technology can determine whether a user is logged in\r\nand which levels have been acquired or unlocked.\r\n<\/p>\r\n\r\n<p>\r\nA membership purchase from Limitless may provide:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>digital access;<\/li>\r\n  <li>premium Platform functionality;<\/li>\r\n  <li>member-only discovery features;<\/li>\r\n  <li>access to specific levels;<\/li>\r\n  <li>eligibility to use certain request functions;<\/li>\r\n  <li>other benefits displayed at purchase.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nPurchasing a Gods Galaxy Game membership does not automatically mean the user\r\nhas purchased every third-party service displayed within that level.\r\n<\/p>\r\n\r\n\r\n<h2>7. Travel Discovery Within Limitless<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game contains travel-related discovery and marketing features.\r\n<\/p>\r\n\r\n<p>\r\nThese may include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Astro Travel recommendations;<\/li>\r\n  <li>Explore Medell\u00edn;<\/li>\r\n  <li>accommodations;<\/li>\r\n  <li>restaurants;<\/li>\r\n  <li>transportation;<\/li>\r\n  <li>entertainment;<\/li>\r\n  <li>experiences;<\/li>\r\n  <li>local guides;<\/li>\r\n  <li>nightlife;<\/li>\r\n  <li>wellness;<\/li>\r\n  <li>other travel-related businesses.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe Travel area allows users to\r\n<strong>discover businesses and experiences inside the Limitless\/GGG ecosystem<\/strong>.\r\n<\/p>\r\n\r\n<p>\r\nIt should not be interpreted to mean that Limitless owns every travel provider\r\ndisplayed.\r\n<\/p>\r\n\r\n<p>\r\nThe Platform currently allows host listings to include actions such as:\r\n<\/p>\r\n\r\n<ul>\r\n  <li><strong>Visit Website<\/strong><\/li>\r\n  <li><strong>Save<\/strong><\/li>\r\n  <li><strong>Reserve With Bliss<\/strong><\/li>\r\n<\/ul>\r\n\r\n\r\n<h2>8. Advertising and Discovery<\/h2>\r\n\r\n<p>\r\nA business may appear on Gods Galaxy Game because Limitless:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>created an informational listing;<\/li>\r\n  <li>has a promotional relationship with the business;<\/li>\r\n  <li>sells marketing exposure to the business;<\/li>\r\n  <li>receives authorized business information;<\/li>\r\n  <li>receives inventory through a technology provider;<\/li>\r\n  <li>has a referral arrangement;<\/li>\r\n  <li>has another lawful commercial relationship.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nWhere appropriate, sponsored or paid placement may be identified.\r\n<\/p>\r\n\r\n<p>\r\nDisplaying a business does not necessarily constitute an endorsement,\r\npartnership or ownership relationship.\r\n<\/p>\r\n\r\n\r\n<h2>9. Hosts and Participating Businesses<\/h2>\r\n\r\n<p>\r\nA <strong>Host<\/strong> or participating business is a business, professional,\r\nindividual or service provider whose information may be displayed through\r\nGods Galaxy Game.\r\n<\/p>\r\n\r\n<p>\r\nHosts may provide:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>photographs;<\/li>\r\n  <li>business names;<\/li>\r\n  <li>descriptions;<\/li>\r\n  <li>locations;<\/li>\r\n  <li>pricing information;<\/li>\r\n  <li>offers;<\/li>\r\n  <li>discounts;<\/li>\r\n  <li>website links;<\/li>\r\n  <li>checkout links;<\/li>\r\n  <li>reservation links;<\/li>\r\n  <li>contact information.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nHosts may remain legally and operationally independent from Limitless.\r\n<\/p>\r\n\r\n\r\n<h2>10. Discounts<\/h2>\r\n\r\n<p>\r\nLimitless may operate a Discounts system allowing businesses to advertise\r\noffers through Gods Galaxy Game.\r\n<\/p>\r\n\r\n<p>\r\nThe current system contains categories including:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Hotels;<\/li>\r\n  <li>Restaurants;<\/li>\r\n  <li>Spa;<\/li>\r\n  <li>Work Formation.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nEach participating offer may contain its own business information, promotional\r\namount, checkout URL, action URL and location information.\r\n<\/p>\r\n\r\n<p>\r\nLimitless may earn revenue from businesses through arrangements such as:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>advertising fees;<\/li>\r\n  <li>promotional fees;<\/li>\r\n  <li>membership participation;<\/li>\r\n  <li>referral arrangements;<\/li>\r\n  <li>commissions;<\/li>\r\n  <li>other commercial agreements.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe exact commercial arrangement may differ by participating business.\r\n<\/p>\r\n\r\n\r\n<h2>11. Gift<\/h2>\r\n\r\n<p>\r\nLimitless also operates Gift functionality.\r\n<\/p>\r\n\r\n<p>\r\nGift may allow users to purchase an experience, benefit or other item intended\r\nfor another person.\r\n<\/p>\r\n\r\n<p>\r\nThe current Gift inventory can include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Gift name;<\/li>\r\n  <li>Gift image;<\/li>\r\n  <li>Gift description;<\/li>\r\n  <li>Gift price;<\/li>\r\n  <li>Gift checkout;<\/li>\r\n  <li>recipient message;<\/li>\r\n  <li>location information.<\/li>\r\n<\/ul>\r\n\r\n<div class=\"gggLegalNotice\">\r\n  <strong>Typical Gift Flow<\/strong><br><br>\r\n  Limitless as Platform<br>\r\n  \u2193<br>\r\n  Participating business or provider<br>\r\n  \u2193<br>\r\n  Purchaser<br>\r\n  \u2193<br>\r\n  Gift recipient\r\n<\/div>\r\n\r\n<p>\r\nThe identity of the party fulfilling the Gift depends on the specific offer.\r\n<\/p>\r\n\r\n\r\n<h2>12. Small Gifts and Profile Support<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game also contains a different type of Gift inside the Business\r\nGrowth system.\r\n<\/p>\r\n\r\n<p>\r\nEligible Artists, Athletes or Entrepreneurs may receive voluntary support\r\nthrough a profile Gift function.\r\n<\/p>\r\n\r\n<p>\r\nThe current system can present:\r\n<\/p>\r\n\r\n<ul>\r\n  <li><strong>Gift $1<\/strong><\/li>\r\n  <li><strong>Gift $2<\/strong><\/li>\r\n  <li><strong>Gift $3<\/strong><\/li>\r\n  <li><strong>Custom Gift<\/strong><\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThese profile Gifts are separate from purchasing a Gift experience.\r\n<\/p>\r\n\r\n<p>\r\nUnless specifically stated otherwise, a profile Gift is voluntary support\r\nand does not provide:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>ownership;<\/li>\r\n  <li>equity;<\/li>\r\n  <li>repayment rights;<\/li>\r\n  <li>investment rights;<\/li>\r\n  <li>profit participation.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h2>13. Community and Donation Pathways<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may also promote community, environmental, humanitarian\r\nor charitable initiatives.\r\n<\/p>\r\n\r\n<p>\r\nThe Platform's current sustainability system includes functionality designed\r\nto support reports and a configurable donation pathway.\r\n<\/p>\r\n\r\n<p>\r\nWhere a donation button sends the user to an independent charity or organization,\r\nthe receiving organization is responsible for the donation transaction.\r\n<\/p>\r\n\r\n<p>\r\nLimitless should not be treated as the charitable recipient merely because\r\nthe donation opportunity was promoted through Gods Galaxy Game.\r\n<\/p>\r\n\r\n\r\n<h2>14. Business Growth \u2014 The Digital Album<\/h2>\r\n\r\n<p>\r\nThe <strong>Business Growth<\/strong> portion of Limitless operates as an\r\ninteractive digital album.\r\n<\/p>\r\n\r\n<p>\r\nCurrent profile categories include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Artists;<\/li>\r\n  <li>Athletes;<\/li>\r\n  <li>Entrepreneurs.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nEach profile may present the person's or business's:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>story;<\/li>\r\n  <li>media;<\/li>\r\n  <li>profile information;<\/li>\r\n  <li>accomplishments;<\/li>\r\n  <li>service opportunities;<\/li>\r\n  <li>contact methods;<\/li>\r\n  <li>sponsorship opportunities;<\/li>\r\n  <li>support opportunities;<\/li>\r\n  <li>business-growth pathways.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe album's principal actions currently include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li><strong>Request<\/strong><\/li>\r\n  <li><strong>Connect<\/strong><\/li>\r\n  <li><strong>Invest<\/strong><\/li>\r\n  <li><strong>Sponsor<\/strong><\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe Business Growth system combines\r\n<strong>storytelling, marketing, visibility and commercial connections<\/strong>.\r\n<\/p>\r\n\r\n\r\n<h2>15. Request My Service<\/h2>\r\n\r\n<p>\r\nA profile may allow users to request services from the person or business\r\nrepresented.\r\n<\/p>\r\n\r\n<p>\r\nPossible requests currently include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Service Request;<\/li>\r\n  <li>Booking Request;<\/li>\r\n  <li>Sponsor Request;<\/li>\r\n  <li>Investment Request;<\/li>\r\n  <li>Custom Request.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nGods Galaxy Game can facilitate the request, but the request itself does not\r\nautomatically form a contract.\r\n<\/p>\r\n\r\n<p>\r\nThe relevant participant may accept, decline or negotiate the request separately.\r\n<\/p>\r\n\r\n\r\n<h2>16. Connect<\/h2>\r\n\r\n<p>\r\nThe Connect function allows users to move from a Gods Galaxy Game profile\r\nto direct communication with the profile or business.\r\n<\/p>\r\n\r\n<p>\r\nPossible destinations include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>website;<\/li>\r\n  <li>Instagram;<\/li>\r\n  <li>TikTok;<\/li>\r\n  <li>YouTube;<\/li>\r\n  <li>WhatsApp;<\/li>\r\n  <li>email;<\/li>\r\n  <li>other approved contact channels.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe purpose is to facilitate direct communication and commercial connection.\r\n<\/p>\r\n\r\n\r\n<h2>17. Sponsor Portal<\/h2>\r\n\r\n<p>\r\nParticipating profiles may offer sponsorship opportunities.\r\n<\/p>\r\n\r\n<p>\r\nThe current Sponsor Portal includes:\r\n<\/p>\r\n\r\n<ul>\r\n  <li><strong>Life Film<\/strong><\/li>\r\n  <li><strong>City Stage<\/strong><\/li>\r\n  <li><strong>Create Event<\/strong><\/li>\r\n  <li><strong>Global Movement<\/strong><\/li>\r\n<\/ul>\r\n\r\n<p>\r\nCurrent configurable sponsorship levels include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li><strong>Support \u2014 $10<\/strong><\/li>\r\n  <li><strong>Power \u2014 $25<\/strong><\/li>\r\n  <li><strong>Sponsor \u2014 $100<\/strong><\/li>\r\n  <li><strong>Custom<\/strong><\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThese amounts may be changed for individual opportunities.\r\n<\/p>\r\n\r\n<p>\r\nSponsorship is distinct from investment.\r\n<\/p>\r\n\r\n<p>\r\nA sponsorship may support:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>an individual;<\/li>\r\n  <li>a story;<\/li>\r\n  <li>an event;<\/li>\r\n  <li>a project;<\/li>\r\n  <li>a promotional initiative;<\/li>\r\n  <li>a community activity.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nSpecific commercial sponsorship rights may require a separate written agreement.\r\n<\/p>\r\n\r\n\r\n<h2>18. Dream Engine<\/h2>\r\n\r\n<p>\r\nThe Business Growth Album may also contain the <strong>Dream Engine<\/strong>.\r\n<\/p>\r\n\r\n<h3>Life Film<\/h3>\r\n\r\n<p>\r\nThe person's story, history, struggle and vision.\r\n<\/p>\r\n\r\n<h3>Dream Build<\/h3>\r\n\r\n<p>\r\nWhat resources may help move the project forward, such as equipment,\r\ntraining, production, transportation or launch support.\r\n<\/p>\r\n\r\n<h3>Growth Path<\/h3>\r\n\r\n<p>\r\nHow the project might develop into a:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>business;<\/li>\r\n  <li>brand;<\/li>\r\n  <li>tour;<\/li>\r\n  <li>product;<\/li>\r\n  <li>event;<\/li>\r\n  <li>scalable opportunity.<\/li>\r\n<\/ul>\r\n\r\n<h3>Investor Circle<\/h3>\r\n\r\n<p>\r\nA pathway for a person interested in:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>additional information;<\/li>\r\n  <li>a meeting;<\/li>\r\n  <li>a presentation;<\/li>\r\n  <li>reviewing an opportunity.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe system can show information such as:\r\n<\/p>\r\n\r\n<ul>\r\n  <li><strong>Goal<\/strong><\/li>\r\n  <li><strong>Raised<\/strong><\/li>\r\n  <li><strong>Offer<\/strong><\/li>\r\n<\/ul>\r\n\r\n<p>\r\nand actions such as:\r\n<\/p>\r\n\r\n<ul>\r\n  <li><strong>Support This Dream<\/strong><\/li>\r\n  <li><strong>Live Presentation<\/strong><\/li>\r\n  <li><strong>Contact Team<\/strong><\/li>\r\n<\/ul>\r\n\r\n\r\n<h2>19. Investment-Related References<\/h2>\r\n\r\n<p>\r\nThe words <strong>Invest<\/strong>, <strong>Investor<\/strong>,\r\n<strong>Investment Request<\/strong>, <strong>Offer<\/strong>,\r\n<strong>Percentage<\/strong> or similar terms may appear in the Business Growth\r\nsystem.\r\n<\/p>\r\n\r\n<p>\r\nThese features are intended to facilitate\r\n<strong>interest, communication, presentation and business-opportunity discovery<\/strong>.\r\n<\/p>\r\n\r\n<p>\r\nThey do not mean Limitless itself automatically becomes the issuer or seller\r\nof a security.\r\n<\/p>\r\n\r\n<div class=\"gggLegalNotice\">\r\n  The Platform's existing disclosure states that opportunity and investment-related\r\n  references are informational and promotional and that Limitless does not operate\r\n  through those listings as a financial adviser, investment manager, broker-dealer\r\n  or regulated securities provider.\r\n<\/div>\r\n\r\n<p>\r\nIf an actual investment opportunity later exists, the party legally offering\r\nthat opportunity must provide whatever separate agreements, disclosures,\r\nqualifications and regulatory compliance are legally required.\r\n<\/p>\r\n\r\n\r\n<h2>20. Business Brokerage \/ Corretaje Empresarial<\/h2>\r\n\r\n<p>\r\nBusiness brokerage is one of the commercial activities contemplated for Limitless.\r\n<\/p>\r\n\r\n<p>\r\nLimitless may assist with:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>promoting a business for sale;<\/li>\r\n  <li>finding potential purchasers;<\/li>\r\n  <li>finding potential business partners;<\/li>\r\n  <li>introducing business owners and interested parties;<\/li>\r\n  <li>promoting franchise opportunities;<\/li>\r\n  <li>promoting expansion opportunities;<\/li>\r\n  <li>connecting entrepreneurs with potential opportunities;<\/li>\r\n  <li>facilitating negotiations or introductions;<\/li>\r\n  <li>assisting with business-growth transactions.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nLimitless may receive compensation such as:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>marketing fees;<\/li>\r\n  <li>listing fees;<\/li>\r\n  <li>brokerage fees;<\/li>\r\n  <li>referral fees;<\/li>\r\n  <li>commissions;<\/li>\r\n  <li>success-based compensation where legally permitted and separately agreed.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nA specific brokerage transaction may require a separate brokerage or commission\r\nagreement.\r\n<\/p>\r\n\r\n\r\n<h2>21. Limitless Is Not the Owner of Every Business It Brokers<\/h2>\r\n\r\n<p>\r\nWhen Limitless markets or brokers a business opportunity, Limitless generally\r\nacts as a connector or intermediary.\r\n<\/p>\r\n\r\n<p>\r\nUnless expressly disclosed otherwise, Limitless does not own the business\r\nbeing sold and does not control its daily operations.\r\n<\/p>\r\n\r\n<p>\r\nThe buyer, seller and their professional advisers remain responsible for\r\nappropriate due diligence.\r\n<\/p>\r\n\r\n\r\n<h2>22. Franchising and GGG City Expansion<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game contains concepts allowing users to inquire about expanding\r\nGods Galaxy Game into another city.\r\n<\/p>\r\n\r\n<p>\r\nThe current system includes:\r\n<\/p>\r\n\r\n<ul>\r\n  <li><strong>Imagine GGG in Your City<\/strong><\/li>\r\n  <li><strong>Connect Your City<\/strong><\/li>\r\n  <li><strong>Sponsor or Build a Stadium<\/strong><\/li>\r\n  <li><strong>Launch Gods Galaxy Game<\/strong><\/li>\r\n<\/ul>\r\n\r\n<p>\r\nand invites connections with local businesses, tourism leaders, venues,\r\ninvestors or officials.\r\n<\/p>\r\n\r\n<p>\r\nThese functions generate interest and potential connections.\r\n<\/p>\r\n\r\n<p>\r\nThey do not automatically grant a:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>franchise;<\/li>\r\n  <li>license;<\/li>\r\n  <li>city territory;<\/li>\r\n  <li>trademark right;<\/li>\r\n  <li>exclusive operating area.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nAny actual franchise, license, territory or expansion relationship requires\r\nseparate written documentation.\r\n<\/p>\r\n\r\n\r\n<h2>23. Creative and Commercial Collaboration<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may also connect users for:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>music;<\/li>\r\n  <li>film;<\/li>\r\n  <li>media;<\/li>\r\n  <li>podcasts;<\/li>\r\n  <li>photography;<\/li>\r\n  <li>creative collaboration;<\/li>\r\n  <li>cultural exchange;<\/li>\r\n  <li>distribution;<\/li>\r\n  <li>licensing;<\/li>\r\n  <li>promotion.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe existing Legacy system includes pathways to connect with creators,\r\nproduce media and potentially distribute, license, promote or expand\r\ncreative work.\r\n<\/p>\r\n\r\n<p>\r\nAny ownership or intellectual-property rights relating to a specific project\r\nmust be established separately between the parties.\r\n<\/p>\r\n\r\n\r\n<h2>24. Reservations \u2014 The Bridge From Discovery to Service<\/h2>\r\n\r\n<p>\r\nWithin the evolving customer experience, <strong>Reservations<\/strong>\r\nfunctions as the bridge between discovering something on Gods Galaxy Game\r\nand requesting the actual service.\r\n<\/p>\r\n\r\n<div class=\"gggLegalNotice\">\r\n  <strong>User sees a provider<\/strong><br>\r\n  \u2193<br>\r\n  <strong>User selects Reserve With Bliss<\/strong><br>\r\n  \u2193<br>\r\n  <strong>Reservation request is created<\/strong><br>\r\n  \u2193<br>\r\n  <strong>Request is reviewed<\/strong><br>\r\n  \u2193<br>\r\n  <strong>Provider or appropriate reservation operator confirms<\/strong><br>\r\n  \u2193<br>\r\n  <strong>Service is ultimately delivered by the responsible provider<\/strong>\r\n<\/div>\r\n\r\n<p>\r\nThe current system already identifies reservation items separately and tracks\r\nrequests by status.\r\n<\/p>\r\n\r\n\r\n<h2>25. Reserve With Bliss<\/h2>\r\n\r\n<p>\r\n<strong>Reserve With Bliss<\/strong> is an action available in certain Travel\r\nand local-service areas.\r\n<\/p>\r\n\r\n<p>\r\nIt does not mean that clicking the button instantly creates a guaranteed\r\nreservation.\r\n<\/p>\r\n\r\n<p>\r\nThe current implementation expressly treats the action as a request and can\r\nmark the reservation status as <strong>Requested<\/strong>.\r\n<\/p>\r\n\r\n<p>\r\nActual confirmation may require:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>review;<\/li>\r\n  <li>provider availability;<\/li>\r\n  <li>price confirmation;<\/li>\r\n  <li>payment;<\/li>\r\n  <li>additional customer information;<\/li>\r\n  <li>acceptance by the responsible provider.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h2>26. Bliss Concierge<\/h2>\r\n\r\n<p>\r\nThe Platform may use <strong>Bliss Concierge<\/strong> as the customer-facing\r\nconcierge and reservation-support concept.\r\n<\/p>\r\n\r\n<p>\r\nThe current system describes concierge support as human review and confirmation\r\nof restaurants, transportation, tours and local-service requests.\r\n<\/p>\r\n\r\n<p>\r\nBliss Concierge may help coordinate:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>restaurants;<\/li>\r\n  <li>drivers;<\/li>\r\n  <li>accommodations;<\/li>\r\n  <li>experiences;<\/li>\r\n  <li>nightlife;<\/li>\r\n  <li>guides;<\/li>\r\n  <li>translation;<\/li>\r\n  <li>transportation;<\/li>\r\n  <li>custom local requests.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe entity legally responsible for a particular concierge or tourism transaction\r\nshould be identified in the applicable checkout, confirmation or service\r\ndocumentation.\r\n<\/p>\r\n\r\n\r\n<h2>27. Independent Travel Providers<\/h2>\r\n\r\n<p>\r\nHotels, restaurants, drivers, tour businesses and other local providers may\r\nremain independent from Limitless.\r\n<\/p>\r\n\r\n<p>\r\nA provider may be responsible for:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>service delivery;<\/li>\r\n  <li>operational safety;<\/li>\r\n  <li>employees;<\/li>\r\n  <li>insurance;<\/li>\r\n  <li>availability;<\/li>\r\n  <li>prices;<\/li>\r\n  <li>cancellations;<\/li>\r\n  <li>refunds;<\/li>\r\n  <li>licenses;<\/li>\r\n  <li>taxes;<\/li>\r\n  <li>regulatory compliance.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nLimitless may facilitate discovery, marketing, communication or reservation\r\nrequests without becoming the operator of the underlying business.\r\n<\/p>\r\n\r\n\r\n<h2>28. Allied Companies<\/h2>\r\n\r\n<p>\r\nLimitless may work with legally separate <strong>allied companies<\/strong>.\r\n<\/p>\r\n\r\n<p>\r\nAn allied company may provide a specialized service that complements\r\nGods Galaxy Game.\r\n<\/p>\r\n\r\n<p>\r\nThe relationship may involve:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>referrals;<\/li>\r\n  <li>marketing;<\/li>\r\n  <li>platform access;<\/li>\r\n  <li>advertising;<\/li>\r\n  <li>licensing;<\/li>\r\n  <li>lead sharing;<\/li>\r\n  <li>technology access;<\/li>\r\n  <li>commissions;<\/li>\r\n  <li>service fulfillment;<\/li>\r\n  <li>other contractual arrangements.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nAn allied company does not become Limitless merely because its services can\r\nbe reached through Gods Galaxy Game.\r\n<\/p>\r\n\r\n<p>\r\nLikewise, Limitless does not automatically become the allied company.\r\n<\/p>\r\n\r\n\r\n<h2>29. Customer Handoffs to Allied Companies<\/h2>\r\n\r\n<p>\r\nA <strong>handoff<\/strong> occurs when a user intentionally chooses a service\r\nthat will be handled by another company.\r\n<\/p>\r\n\r\n<div class=\"gggLegalNotice\">\r\n  <strong>Gods Galaxy Game \/ Limitless<\/strong><br>\r\n  \u2193<br>\r\n  Customer selects specialized service<br>\r\n  \u2193<br>\r\n  The Platform identifies or routes the request to the applicable allied provider<br>\r\n  \u2193<br>\r\n  The allied provider handles its part of the transaction.\r\n<\/div>\r\n\r\n<p>\r\nThe Privacy Policy explains when relevant customer information may be transferred\r\nto facilitate such a requested service.\r\n<\/p>\r\n\r\n\r\n<h2>30. Real Estate and ENP<\/h2>\r\n\r\n<p>\r\nWhere Gods Galaxy Game displays or promotes real-estate opportunities, a user\r\nmay be connected to <strong>ENP Luxury Homes<\/strong> or another appropriately\r\nidentified real-estate provider.\r\n<\/p>\r\n\r\n<p>\r\nIn that situation:\r\n<\/p>\r\n\r\n<p>\r\n<strong>Limitless\/GGG<\/strong> may provide the discovery, advertising or\r\nreferral pathway.\r\n<\/p>\r\n\r\n<p>\r\n<strong>ENP or the identified brokerage<\/strong> handles the licensed\r\nreal-estate brokerage activity, agency relationship and property transaction\r\nwhere applicable.\r\n<\/p>\r\n\r\n<p>\r\nThe property transaction is subject to separate:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>brokerage disclosures;<\/li>\r\n  <li>representation agreements;<\/li>\r\n  <li>purchase contracts;<\/li>\r\n  <li>listing agreements;<\/li>\r\n  <li>real-estate regulations.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nLimitless should not be presented as the licensed real-estate brokerage for\r\na transaction handled by ENP unless that is separately and legally true.\r\n<\/p>\r\n\r\n\r\n<h2>31. Vacation Property and Fractional Services<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game contains pathways related to vacation-property exchange\r\nand fractional use.\r\n<\/p>\r\n\r\n<p>\r\nThe current Platform specifically directs a Vacation Property Exchange pathway\r\nto <strong>Bliss Fractional Club<\/strong>.\r\n<\/p>\r\n\r\n<div class=\"gggLegalNotice\">\r\n  <strong>GGG \/ Limitless creates the discovery and connection<\/strong><br>\r\n  \u2193<br>\r\n  <strong>User selects the specialized fractional opportunity<\/strong><br>\r\n  \u2193<br>\r\n  <strong>User enters the applicable Fractional Club experience or service<\/strong>\r\n<\/div>\r\n\r\n<p>\r\nAn actual fractional, vacation-ownership or timeshare transaction must be\r\ngoverned by the provider's specific disclosures, contracts and regulatory\r\nrequirements.\r\n<\/p>\r\n\r\n\r\n<h2>32. Platform Space Used by Allied Providers<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may provide digital space, technology, marketing exposure\r\nor customer-access tools to an allied company.\r\n<\/p>\r\n\r\n<p>\r\nDepending on the agreement, Limitless may receive:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>advertising fees;<\/li>\r\n  <li>platform fees;<\/li>\r\n  <li>licensing fees;<\/li>\r\n  <li>commissions;<\/li>\r\n  <li>referral fees;<\/li>\r\n  <li>technology fees;<\/li>\r\n  <li>other compensation.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe existence of such compensation does not necessarily make Limitless\r\nthe provider of the allied company's underlying service.\r\n<\/p>\r\n\r\n\r\n<h2>33. Who Receives the Customer's Money<\/h2>\r\n\r\n<p>\r\nThe party receiving payment depends on the transaction.\r\n<\/p>\r\n\r\n<h3>Limitless may receive payment for:<\/h3>\r\n\r\n<ul>\r\n  <li>Gods Galaxy Game membership;<\/li>\r\n  <li>Limitless access fees;<\/li>\r\n  <li>advertising;<\/li>\r\n  <li>marketing services;<\/li>\r\n  <li>business-brokerage services;<\/li>\r\n  <li>Limitless-sponsored Gift or promotional products;<\/li>\r\n  <li>other Limitless products.<\/li>\r\n<\/ul>\r\n\r\n<h3>A participating provider may receive payment for:<\/h3>\r\n\r\n<ul>\r\n  <li>accommodation;<\/li>\r\n  <li>restaurant services;<\/li>\r\n  <li>transportation;<\/li>\r\n  <li>spa services;<\/li>\r\n  <li>tours;<\/li>\r\n  <li>activities;<\/li>\r\n  <li>local services;<\/li>\r\n  <li>other provider products.<\/li>\r\n<\/ul>\r\n\r\n<h3>An allied company may receive payment for:<\/h3>\r\n\r\n<ul>\r\n  <li>services legally operated by that allied company.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe checkout or transaction documentation should identify the applicable\r\nseller or payment recipient where necessary.\r\n<\/p>\r\n\r\n\r\n<h2>34. Commissions and Referrals<\/h2>\r\n\r\n<p>\r\nLimitless may earn compensation when it successfully:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>advertises a business;<\/li>\r\n  <li>generates a lead;<\/li>\r\n  <li>refers a customer;<\/li>\r\n  <li>connects commercial parties;<\/li>\r\n  <li>facilitates a business opportunity;<\/li>\r\n  <li>provides business brokerage;<\/li>\r\n  <li>promotes a product;<\/li>\r\n  <li>directs a customer to an allied company;<\/li>\r\n  <li>facilitates another commercial relationship.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nSuch compensation may include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>fixed fees;<\/li>\r\n  <li>commissions;<\/li>\r\n  <li>referral payments;<\/li>\r\n  <li>revenue sharing;<\/li>\r\n  <li>success fees;<\/li>\r\n  <li>marketing fees.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe presence of compensation does not necessarily increase the price charged\r\nto the customer unless stated.\r\n<\/p>\r\n\r\n\r\n<h2>35. External Inventory and Technology Providers<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game may integrate third-party technology or inventory in the future.\r\n<\/p>\r\n\r\n<p>\r\nExamples may include:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>hotel inventory;<\/li>\r\n  <li>accommodations;<\/li>\r\n  <li>rental cars;<\/li>\r\n  <li>ticketing;<\/li>\r\n  <li>reservation technology;<\/li>\r\n  <li>travel APIs.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nIn those situations, Limitless may operate the customer interface while\r\nanother company supplies the inventory or booking infrastructure.\r\n<\/p>\r\n\r\n<p>\r\nThe user may become subject to the applicable provider's terms.\r\n<\/p>\r\n\r\n\r\n<h2>36. Provider Confirmation<\/h2>\r\n\r\n<p>\r\nA listing on Gods Galaxy Game is not necessarily proof that inventory remains\r\navailable.\r\n<\/p>\r\n\r\n<p>\r\nA request may remain:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Saved;<\/li>\r\n  <li>Pending;<\/li>\r\n  <li>Requested;<\/li>\r\n  <li>Awaiting Confirmation.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThe current system states that restaurant, transportation, tour and local-service\r\nrequests remain requested until Bliss or the provider confirms them.\r\n<\/p>\r\n\r\n<p>\r\nOnly an actual confirmation creates a confirmed reservation.\r\n<\/p>\r\n\r\n\r\n<h2>37. Gods Galaxy Game as a Marketing Platform<\/h2>\r\n\r\n<p>\r\nMarketing is a central Limitless activity.\r\n<\/p>\r\n\r\n<p>\r\nLimitless may help businesses with:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>visibility;<\/li>\r\n  <li>storytelling;<\/li>\r\n  <li>advertising;<\/li>\r\n  <li>audience exposure;<\/li>\r\n  <li>promotional campaigns;<\/li>\r\n  <li>profiles;<\/li>\r\n  <li>videos;<\/li>\r\n  <li>social links;<\/li>\r\n  <li>offers;<\/li>\r\n  <li>discount campaigns;<\/li>\r\n  <li>lead generation;<\/li>\r\n  <li>sponsorship exposure;<\/li>\r\n  <li>business-development opportunities.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nLimitless does not guarantee a specific level of:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>views;<\/li>\r\n  <li>sales;<\/li>\r\n  <li>leads;<\/li>\r\n  <li>customers;<\/li>\r\n  <li>revenue;<\/li>\r\n  <li>sponsorship;<\/li>\r\n  <li>investment;<\/li>\r\n  <li>business success.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h2>38. Business Information<\/h2>\r\n\r\n<p>\r\nInformation shown about a third-party business may be:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>provided by the business;<\/li>\r\n  <li>provided through a partner;<\/li>\r\n  <li>publicly available;<\/li>\r\n  <li>supplied through an API;<\/li>\r\n  <li>manually entered into the Platform.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nLimitless may attempt to keep information accurate but does not guarantee\r\nthat every third-party listing remains current.\r\n<\/p>\r\n\r\n<p>\r\nBusinesses remain responsible for their own terms, prices and service delivery.\r\n<\/p>\r\n\r\n\r\n<h2>39. User Choice<\/h2>\r\n\r\n<p>\r\nThe Platform is designed around user choice.\r\n<\/p>\r\n\r\n<p>\r\nA user may:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>browse;<\/li>\r\n  <li>save;<\/li>\r\n  <li>request;<\/li>\r\n  <li>visit an external business;<\/li>\r\n  <li>buy;<\/li>\r\n  <li>Gift;<\/li>\r\n  <li>Sponsor;<\/li>\r\n  <li>connect;<\/li>\r\n  <li>request business information;<\/li>\r\n  <li>request reservation assistance.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nDifferent choices may create different relationships.\r\n<\/p>\r\n\r\n<p>\r\nSimply browsing Gods Galaxy Game does not automatically create a contract\r\nwith every company shown on the Platform.\r\n<\/p>\r\n\r\n\r\n<h2>40. No Automatic Partnership<\/h2>\r\n\r\n<p>\r\nDisplaying, promoting or linking a person, company or service does not by\r\nitself create:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>legal partnership;<\/li>\r\n  <li>joint venture;<\/li>\r\n  <li>employment;<\/li>\r\n  <li>agency;<\/li>\r\n  <li>franchise;<\/li>\r\n  <li>ownership;<\/li>\r\n  <li>fiduciary relationship.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nAny such relationship must arise from the applicable written agreement\r\nor legal arrangement.\r\n<\/p>\r\n\r\n\r\n<h2>41. Transparency at the Point of Transaction<\/h2>\r\n\r\n<p>\r\nBecause Gods Galaxy Game connects multiple business activities, Limitless\r\nintends to identify the responsible party at the appropriate point in the\r\ncustomer's transaction.\r\n<\/p>\r\n\r\n<p>\r\nDepending on the feature, the user may be informed:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>who is selling;<\/li>\r\n  <li>who receives payment;<\/li>\r\n  <li>who confirms the reservation;<\/li>\r\n  <li>who performs the service;<\/li>\r\n  <li>whether the company is independent or allied;<\/li>\r\n  <li>whether separate terms apply.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThis prevents the Gods Galaxy Game interface from being mistaken for legal\r\nownership of every service displayed within it.\r\n<\/p>\r\n\r\n\r\n<h2>42. Data Between Limitless and Allied Companies<\/h2>\r\n\r\n<p>\r\nWhere a user intentionally requests an allied company's service, information\r\nreasonably necessary to fulfill that request may be transferred to that company.\r\n<\/p>\r\n\r\n<p>\r\nFor example:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>A real-estate inquiry may be sent to the applicable real-estate provider.<\/li>\r\n  <li>A reservation request may be sent to the applicable travel or concierge provider.<\/li>\r\n  <li>A business inquiry may be sent to the business or opportunity selected by the user.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nSuch processing is governed by the\r\n<strong>Privacy Policy &amp; Personal Data Treatment Policy<\/strong>.\r\n<\/p>\r\n\r\n\r\n<h2>43. Customer Support<\/h2>\r\n\r\n<p>\r\nUsers may contact Limitless regarding:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>Gods Galaxy Game accounts;<\/li>\r\n  <li>memberships;<\/li>\r\n  <li>Platform access;<\/li>\r\n  <li>technical issues;<\/li>\r\n  <li>Limitless payments;<\/li>\r\n  <li>listings;<\/li>\r\n  <li>business connections;<\/li>\r\n  <li>referral questions.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nIf the issue concerns an independent provider's actual service, Limitless may\r\ndirect the user to that provider.\r\n<\/p>\r\n\r\n\r\n<h2>44. Platform Evolution<\/h2>\r\n\r\n<p>\r\nGods Galaxy Game is an evolving digital ecosystem.\r\n<\/p>\r\n\r\n<p>\r\nLimitless may:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>add features;<\/li>\r\n  <li>rename sections;<\/li>\r\n  <li>reorganize levels;<\/li>\r\n  <li>introduce new cities;<\/li>\r\n  <li>add providers;<\/li>\r\n  <li>add allied companies;<\/li>\r\n  <li>integrate APIs;<\/li>\r\n  <li>update memberships;<\/li>\r\n  <li>discontinue features.<\/li>\r\n<\/ul>\r\n\r\n<p>\r\nThis Operations Disclosure may therefore be updated as the actual business\r\nstructure changes.\r\n<\/p>\r\n\r\n\r\n<h2>45. The Basic Business Model in One View<\/h2>\r\n\r\n<p>\r\nThe simplest way to understand the system is:\r\n<\/p>\r\n\r\n<div class=\"gggLegalNotice\">\r\n\r\n  <strong>LIMITLESS<\/strong><br>\r\n  The operating marketing, technology and business-connection company.\r\n  <br><br>\r\n\r\n  \u2193\r\n  <br><br>\r\n\r\n  <strong>GODS GALAXY GAME<\/strong><br>\r\n  The digital ecosystem and customer interface operated through Limitless.\r\n  <br><br>\r\n\r\n  \u2193\r\n  <br><br>\r\n\r\n  <strong>PLATFORM EXPERIENCES<\/strong><br>\r\n  Memberships \u00b7 Travel Discovery \u00b7 Discounts \u00b7 Gift \u00b7 Business Growth \u00b7\r\n  Sponsor \u00b7 Dream Engine \u00b7 Business Brokerage \u00b7 City \/ Franchise Opportunities \u00b7\r\n  Community Initiatives \u00b7 Other experiences\r\n  <br><br>\r\n\r\n  \u2193\r\n  <br><br>\r\n\r\n  <strong>CUSTOMER DECISION<\/strong><br>\r\n  Browse \u00b7 Save \u00b7 Buy \u00b7 Gift \u00b7 Request \u00b7 Sponsor \u00b7 Connect \u00b7 Reserve \u00b7 Inquire\r\n  <br><br>\r\n\r\n  \u2193\r\n  <br><br>\r\n\r\n  <strong>THEN ONE OF THREE THINGS HAPPENS<\/strong>\r\n  <br><br>\r\n\r\n  <strong>1. LIMITLESS TRANSACTION<\/strong><br>\r\n  Limitless itself provides or sells the product\/service.\r\n  <br><br>\r\n\r\n  or\r\n  <br><br>\r\n\r\n  <strong>2. INDEPENDENT PROVIDER TRANSACTION<\/strong><br>\r\n  Limitless connects the customer to a third-party business.\r\n  <br><br>\r\n\r\n  or\r\n  <br><br>\r\n\r\n  <strong>3. ALLIED-COMPANY HANDOFF<\/strong><br>\r\n  The user intentionally moves into a specialized service operated by a\r\n  legally separate allied company.\r\n\r\n<\/div>\r\n\r\n<p>\r\nThat is the operating model.\r\n<\/p>\r\n\r\n\r\n<h2>46. Relationship to Other Legal Documents<\/h2>\r\n\r\n<p>\r\nThis Operations Disclosure explains <strong>how the business works<\/strong>.\r\n<\/p>\r\n\r\n<h3>Privacy Policy<\/h3>\r\n\r\n<p>\r\nExplains how personal information is handled.\r\n<\/p>\r\n\r\n<h3>Terms of Service<\/h3>\r\n\r\n<p>\r\nGovern the user's legal relationship with Gods Galaxy Game and Limitless.\r\n<\/p>\r\n\r\n<h3>Transaction-Specific Agreements<\/h3>\r\n\r\n<p>\r\nMay govern particular activities such as:\r\n<\/p>\r\n\r\n<ul>\r\n  <li>business brokerage;<\/li>\r\n  <li>provider advertising;<\/li>\r\n  <li>sponsorship;<\/li>\r\n  <li>franchising;<\/li>\r\n  <li>real estate;<\/li>\r\n  <li>tourism;<\/li>\r\n  <li>fractional ownership;<\/li>\r\n  <li>other specialized services.<\/li>\r\n<\/ul>\r\n\r\n\r\n<h2>47. Contact<\/h2>\r\n\r\n<div class=\"gggLegalContact\">\r\n\r\n  <strong>Gods Galaxy Game \/ Limitless<\/strong><br>\r\n  Medell\u00edn, Antioquia, Colombia\r\n  <br><br>\r\n\r\n  <strong>Website:<\/strong><br>\r\n  https:\/\/godsgalaxygame.com\/\r\n  <br><br>\r\n\r\n  <strong>Legal \/ Administrative Contact:<\/strong><br>\r\n  edwardraigozallc@gmail.com\r\n  <br><br>\r\n\r\n  <strong>Platform Email:<\/strong><br>\r\n  godsgalaxygame@gmail.com\r\n\r\n<\/div>\r\n\r\n<!-- OPERATIONS DISCLOSURE CONTENT END -->\r\n\r\n    <\/article>\r\n\r\n\r\n\r\n    <div class=\"gggLegalFooter\">\r\n      Gods Galaxy Game \u00b7 Limitless \u00b7 Legal Center\r\n    <\/div>\r\n\r\n  <\/main>\r\n\r\n<\/div>\r\n\r\n\r\n\r\n<script>\r\n\r\n(function(){\r\n\r\n  \"use strict\";\r\n\r\n\r\n  \/* ==========================================\r\n     DETECT WHICH HIDDEN LEGAL URL WAS USED\r\n  ========================================== *\/\r\n\r\n  const params =\r\n    new URLSearchParams(\r\n      window.location.search\r\n    );\r\n\r\n\r\n  let firstPage = null;\r\n\r\n\r\n  if(\r\n    params.get(\"privacy\") === \"1\"\r\n  ){\r\n\r\n    firstPage = \"privacy\";\r\n\r\n  }\r\n\r\n  else if(\r\n    params.get(\"terms\") === \"1\"\r\n  ){\r\n\r\n    firstPage = \"terms\";\r\n\r\n  }\r\n\r\n  else if(\r\n    params.get(\"operations\") === \"1\"\r\n  ){\r\n\r\n    firstPage = \"operations\";\r\n\r\n  }\r\n\r\n  else if(\r\n    params.get(\"legal\") === \"1\"\r\n  ){\r\n\r\n    firstPage = \"legal\";\r\n\r\n  }\r\n\r\n\r\n  \/*\r\n  Normal Astro page.\r\n  Do absolutely nothing.\r\n  *\/\r\n\r\n  if(!firstPage){\r\n    return;\r\n  }\r\n\r\n\r\n\r\n  const overlay =\r\n    document.getElementById(\r\n      \"gggLegalOverlay\"\r\n    );\r\n\r\n\r\n  if(!overlay){\r\n    return;\r\n  }\r\n\r\n\r\n\r\n  \/*\r\n  Move legal overlay directly\r\n  under BODY.\r\n\r\n  This prevents WordPress\r\n  containers from clipping it.\r\n  *\/\r\n\r\n  if(\r\n    overlay.parentElement !==\r\n    document.body\r\n  ){\r\n\r\n    document.body.appendChild(\r\n      overlay\r\n    );\r\n\r\n  }\r\n\r\n\r\n\r\n  document.documentElement\r\n    .classList\r\n    .add(\r\n      \"gggLegalActive\"\r\n    );\r\n\r\n\r\n  document.body\r\n    .classList\r\n    .add(\r\n      \"gggLegalActive\",\r\n      \"gggLegalHide\"\r\n    );\r\n\r\n\r\n  overlay.style.setProperty(\r\n    \"display\",\r\n    \"block\",\r\n    \"important\"\r\n  );\r\n\r\n\r\n  overlay.setAttribute(\r\n    \"aria-hidden\",\r\n    \"false\"\r\n  );\r\n\r\n\r\n\r\n  const legalHome =\r\n    document.getElementById(\r\n      \"gggLegalHome\"\r\n    );\r\n\r\n\r\n  const privacy =\r\n    document.getElementById(\r\n      \"gggLegalPrivacy\"\r\n    );\r\n\r\n\r\n  const terms =\r\n    document.getElementById(\r\n      \"gggLegalTerms\"\r\n    );\r\n\r\n\r\n  const operations =\r\n    document.getElementById(\r\n      \"gggLegalOperations\"\r\n    );\r\n\r\n\r\n\r\n  function directURL(page){\r\n\r\n    const base =\r\n      window.location.pathname;\r\n\r\n\r\n    if(\r\n      page === \"legal\"\r\n    ){\r\n\r\n      return (\r\n        base +\r\n        \"?legal=1\"\r\n      );\r\n\r\n    }\r\n\r\n\r\n    return (\r\n      base +\r\n      \"?\" +\r\n      page +\r\n      \"=1\"\r\n    );\r\n\r\n  }\r\n\r\n\r\n\r\n  function showLegalPage(\r\n    page,\r\n    updateURL\r\n  ){\r\n\r\n    const allowed = [\r\n      \"legal\",\r\n      \"privacy\",\r\n      \"terms\",\r\n      \"operations\"\r\n    ];\r\n\r\n\r\n    if(\r\n      !allowed.includes(page)\r\n    ){\r\n\r\n      page = \"legal\";\r\n\r\n    }\r\n\r\n\r\n\r\n    legalHome.style.display =\r\n      page === \"legal\"\r\n        ? \"block\"\r\n        : \"none\";\r\n\r\n\r\n    privacy.classList.toggle(\r\n      \"active\",\r\n      page === \"privacy\"\r\n    );\r\n\r\n\r\n    terms.classList.toggle(\r\n      \"active\",\r\n      page === \"terms\"\r\n    );\r\n\r\n\r\n    operations.classList.toggle(\r\n      \"active\",\r\n      page === \"operations\"\r\n    );\r\n\r\n\r\n\r\n    document\r\n      .querySelectorAll(\r\n        \"[data-legal-page]\"\r\n      )\r\n      .forEach(\r\n        function(button){\r\n\r\n          button.classList.toggle(\r\n            \"active\",\r\n            button.getAttribute(\r\n              \"data-legal-page\"\r\n            ) === page\r\n          );\r\n\r\n        }\r\n      );\r\n\r\n\r\n\r\n    overlay.scrollTo({\r\n      top:0,\r\n      behavior:\"auto\"\r\n    });\r\n\r\n\r\n\r\n    \/*\r\n    Change browser URL so each\r\n    document still has its own\r\n    direct public address.\r\n    *\/\r\n\r\n    if(updateURL){\r\n\r\n      history.pushState(\r\n        {\r\n          gggLegalPage:page\r\n        },\r\n        \"\",\r\n        directURL(page)\r\n      );\r\n\r\n    }\r\n\r\n  }\r\n\r\n\r\n\r\n  \/* ==========================================\r\n     NAVIGATION BUTTONS\r\n  ========================================== *\/\r\n\r\n  document.addEventListener(\r\n    \"click\",\r\n    function(event){\r\n\r\n      const button =\r\n        event.target.closest(\r\n          \"[data-legal-page]\"\r\n        );\r\n\r\n\r\n      if(!button){\r\n        return;\r\n      }\r\n\r\n\r\n      event.preventDefault();\r\n\r\n\r\n      showLegalPage(\r\n        button.getAttribute(\r\n          \"data-legal-page\"\r\n        ),\r\n        true\r\n      );\r\n\r\n    }\r\n  );\r\n\r\n\r\n\r\n  \/* ==========================================\r\n     BACK BUTTON\r\n  ========================================== *\/\r\n\r\n  document\r\n    .getElementById(\r\n      \"gggLegalBack\"\r\n    )\r\n    .addEventListener(\r\n      \"click\",\r\n      function(){\r\n\r\n        \/*\r\n        If inside one legal document,\r\n        first return to Legal Center.\r\n        *\/\r\n\r\n        const current =\r\n          new URLSearchParams(\r\n            window.location.search\r\n          );\r\n\r\n\r\n        if(\r\n          current.get(\"privacy\") === \"1\" ||\r\n          current.get(\"terms\") === \"1\" ||\r\n          current.get(\"operations\") === \"1\"\r\n        ){\r\n\r\n          showLegalPage(\r\n            \"legal\",\r\n            true\r\n          );\r\n\r\n          return;\r\n\r\n        }\r\n\r\n\r\n        \/*\r\n        Already on Legal Center:\r\n        return to normal GGG.\r\n        *\/\r\n\r\n        window.location.href =\r\n          \"\/GGG\/\";\r\n\r\n      }\r\n    );\r\n\r\n\r\n\r\n  \/* ==========================================\r\n     PHONE \/ BROWSER BACK BUTTON\r\n  ========================================== *\/\r\n\r\n  window.addEventListener(\r\n    \"popstate\",\r\n    function(){\r\n\r\n      const p =\r\n        new URLSearchParams(\r\n          window.location.search\r\n        );\r\n\r\n\r\n      const page =\r\n\r\n        p.get(\"privacy\") === \"1\"\r\n          ? \"privacy\"\r\n\r\n        : p.get(\"terms\") === \"1\"\r\n          ? \"terms\"\r\n\r\n        : p.get(\"operations\") === \"1\"\r\n          ? \"operations\"\r\n\r\n        : p.get(\"legal\") === \"1\"\r\n          ? \"legal\"\r\n\r\n        : null;\r\n\r\n\r\n\r\n      \/*\r\n      User backed completely out of\r\n      legal mode.\r\n      *\/\r\n\r\n      if(!page){\r\n\r\n        window.location.reload();\r\n\r\n        return;\r\n\r\n      }\r\n\r\n\r\n      showLegalPage(\r\n        page,\r\n        false\r\n      );\r\n\r\n    }\r\n  );\r\n\r\n\r\n\r\n  \/* ==========================================\r\n     OPEN CORRECT PAGE IMMEDIATELY\r\n  ========================================== *\/\r\n\r\n  showLegalPage(\r\n    firstPage,\r\n    false\r\n  );\r\n\r\n\r\n})();\r\n\r\n<\/script>\r\n","protected":false},"excerpt":{"rendered":"<p>\ud83d\udca1 Insight \ud83d\udcbc Entrepreneur \ud83c\udf0c Cosmic \ud83c\udf81 Give \ud83d\udde3\ufe0f Conference \ud83c\udf7d\ufe0f Gastronomic \ud83d\udc91 Survival \ud83d\udc91 Survival \ud83d\udcb3 Social Digital Business Famous Network Contest FB Blind Social Dating Hop Festival Progressive City Dinner Meet Fam. Wed Plan Tv Picm 1 Marry Marry \ud83d\udcb3 Pay with Bliss Coin Enter your digital wallet #: Send payment to: HOST-WALLET-ADDRESS-123 [&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-2911","page","type-page","status-publish","hentry"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/godsgalaxygame.com\/GGG\/wp-json\/wp\/v2\/pages\/2911","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=2911"}],"version-history":[{"count":178,"href":"https:\/\/godsgalaxygame.com\/GGG\/wp-json\/wp\/v2\/pages\/2911\/revisions"}],"predecessor-version":[{"id":10485,"href":"https:\/\/godsgalaxygame.com\/GGG\/wp-json\/wp\/v2\/pages\/2911\/revisions\/10485"}],"wp:attachment":[{"href":"https:\/\/godsgalaxygame.com\/GGG\/wp-json\/wp\/v2\/media?parent=2911"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}