Contacts

Talk to the LmxMisterbianco team

Do you need information about laser tag matches, birthday parties, events, groups, or bookings? Write to us and we will get back to you as soon as possible.

LmxMisterbianco

Address
Via Galileo Galilei, 76 int 4 - 95045 Misterbianco (CT)

You can easily reach us from Catania and the entire surrounding area.

Matches, birthday parties, and groups

We organize laser tag matches, birthday parties, celebrations, groups, and special events. If you would like quick information, use this form or contact us directly at 366 365 6742.

For immediate requests, you can also message us on WhatsApp.

Social channels

Facebook
Instagram

{% endblock %} {% block body %}
Contatti

Parla con il team di LmxMisterbianco

Hai bisogno di informazioni su partite laser tag, compleanni, eventi, gruppi o prenotazioni? Scrivici e ti risponderemo il prima possibile.

LmxMisterbianco

Indirizzo
Via Galileo Galilei, 76 int 4 - 95045 Misterbianco (CT)

Ci trovi facilmente da Catania e da tutto l’hinterland.

Contatti diretti

Telefono
+39 366 365 6742

WhatsApp
Scrivici su WhatsApp

E-mail
lmxmisterbianco@gmail.com

Partite, compleanni e gruppi

Organizziamo partite laser tag, compleanni, feste, gruppi ed eventi speciali. Se vuoi ricevere informazioni rapide, usa questo modulo oppure contattaci direttamente al 366 365 6742.

Per richieste immediate puoi anche scriverci su WhatsApp.

Canali social

Facebook
Instagram

{% endblock %} {% block scripts %} {{ super() }} {% endblock %}", "new": "{% extends \"base.html\" %}\n{% block title %}Contatti - LmxMisterbianco{% endblock %}\n\n{% block meta_description %}\n \n{% endblock %}\n\n{% block page_container_class %}w-full max-w-none px-0 pb-0{% endblock %}\n\n{% block head %}\n{{ super() }}\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n{% endblock %}\n\n{% block body %}\n
\n\n
\n \n \n
\n
\n
\n
\n
\n
\n\n
\n
\n\n
\n \n Contatti\n
\n\n

Parla con il team di LmxMisterbianco

\n

\n Hai bisogno di informazioni su partite laser tag, compleanni, eventi, gruppi o prenotazioni?\n Scrivici e ti risponderemo il prima possibile.\n

\n\n
\n\n
\n
\n\n
\n \n \n \n \n\n \n \n\n \n
\n \n \n
\n\n
\n
\n \n \n
\n\n
\n \n \n
\n
\n\n
\n
\n \n \n
\n\n
\n \n \n
\n
\n\n
\n \n {{ form_data.messaggio if form_data is defined else '' }}\n
\n\n
\n \n \n
\n\n
\n \n
\n
\n
\n\n
\n
\n

LmxMisterbianco

\n

\n Indirizzo
\n \n Via Galileo Galilei, 76 int 4 - 95045 Misterbianco (CT)\n \n

\n

\n Ci trovi facilmente da Catania e da tutto l’hinterland.\n

\n
\n\n
\n

Contatti diretti

\n

\n Telefono
\n +39 366 365 6742\n

\n

\n WhatsApp
\n Scrivici su WhatsApp\n

\n

\n E-mail
\n lmxmisterbianco@gmail.com\n

\n
\n\n
\n

Partite, compleanni e gruppi

\n

\n Organizziamo partite laser tag, compleanni, feste, gruppi ed eventi speciali.\n Se vuoi ricevere informazioni rapide, usa questo modulo oppure contattaci direttamente al\n 366 365 6742.\n

\n

\n Per richieste immediate puoi anche scriverci su\n WhatsApp.\n

\n
\n\n
\n

Canali social

\n

\n Facebook
\n Instagram\n

\n
\n
\n\n
\n
\n
\n{% endblock %}\n\n{% block scripts %}\n{{ super() }}\n\n{% endblock %}"}, {"old": "Organizziamo partite laser tag, compleanni, feste, gruppi ed eventi speciali. Se vuoi ricevere informazioni rapide, usa questo modulo oppure contattaci direttamente al 366 365 6742...", "new": "Organizziamo partite laser tag, compleanni, feste, gruppi ed eventi speciali. Se vuoi ricevere informazioni rapide, usa questo modulo oppure contattaci direttamente al 366 365 6742..."}, {"old": "Organizziamo partite laser tag, compleanni, feste, gruppi ed eventi speciali. Se vuoi ricevere informazioni rapide, usa questo modulo oppure contattaci direttamente al 366 365 6742..", "new": "Organizziamo partite laser tag, compleanni, feste, gruppi ed eventi speciali. Se vuoi ricevere informazioni rapide, usa questo modulo oppure contattaci direttamente al 366 365 6742.."}]; function norm(s){ return String(s || "") .replace(/\u00a0/g, " ") .replace(/\s+/g, " ") .trim(); } function shouldSkip(el){ if(!el) return true; const tag = (el.tagName || "").toLowerCase(); return ["script","style","textarea","input","select","option","code","pre"].includes(tag); } function replaceTextNodes(root, oldText, newText){ let changed = false; const walker = document.createTreeWalker( root, NodeFilter.SHOW_TEXT, { acceptNode(node){ if(!node.nodeValue || !norm(node.nodeValue)) return NodeFilter.FILTER_REJECT; if(shouldSkip(node.parentElement)) return NodeFilter.FILTER_REJECT; return NodeFilter.FILTER_ACCEPT; } } ); const nodes = []; while(walker.nextNode()) nodes.push(walker.currentNode); nodes.forEach(node => { const raw = node.nodeValue; if(raw.includes(oldText)){ node.nodeValue = raw.split(oldText).join(newText); changed = true; } }); return changed; } function replaceWholeElements(oldText, newText){ let changed = false; const candidates = Array.from(document.querySelectorAll( "h1,h2,h3,h4,h5,p,span,a,button,li,strong,em,small,div" )); const oldNorm = norm(oldText); candidates.forEach(el => { if(shouldSkip(el)) return; const text = norm(el.innerText || el.textContent || ""); if(!text) return; // match preciso o contenuto spezzato tra tag if(text === oldNorm || text.includes(oldNorm)){ // evita di sostituire contenitori enormi if(text.length <= Math.max(oldNorm.length + 80, 180)){ el.textContent = text.replace(oldNorm, newText); changed = true; } } }); return changed; } function applyOverrides(){ overrides.forEach(item => { const oldText = item.old || ""; const newText = item.new || ""; if(!oldText || !newText) return; const changedNode = replaceTextNodes(document.body, oldText, newText); const changedElement = replaceWholeElements(oldText, newText); if(changedNode || changedElement){ console.log("[LMX DOM OVERRIDE] applicato", oldText, "=>", newText); } else { console.warn("[LMX DOM OVERRIDE] non trovato nel DOM visibile", oldText); } }); } if(document.readyState === "loading"){ document.addEventListener("DOMContentLoaded", applyOverrides); } else { applyOverrides(); } window.addEventListener("load", applyOverrides); // alcuni testi arrivano dopo via JS/animazioni setTimeout(applyOverrides, 300); setTimeout(applyOverrides, 1000); setTimeout(applyOverrides, 2000); })(); \n\n\n{% endblock %}\n\n{% block body %}\n
\n\n
\n \n \n
\n
\n
\n
\n
\n
\n\n
\n
\n\n
\n \n Contatti\n
\n\n

Parla con il team di LmxMisterbianco

\n

\n Hai bisogno di informazioni su partite laser tag, compleanni, eventi, gruppi o prenotazioni?\n Scrivici e ti risponderemo il prima possibile.\n

\n\n
\n\n
\n
\n\n
\n \n \n \n \n\n \n \n\n \n
\n \n \n
\n\n
\n
\n \n \n
\n\n
\n \n \n
\n
\n\n
\n
\n \n \n
\n\n
\n \n \n
\n
\n\n
\n \n {{ form_data.messaggio if form_data is defined else '' }}\n
\n\n
\n \n \n
\n\n
\n \n
\n
\n
\n\n
\n
\n

LmxMisterbianco

\n

\n Indirizzo
\n \n Via Galileo Galilei, 76 int 4 - 95045 Misterbianco (CT)\n \n

\n

\n Ci trovi facilmente da Catania e da tutto l’hinterland.\n

\n
\n\n
\n

Contatti diretti

\n

\n Telefono
\n +39 366 365 6742\n

\n

\n WhatsApp
\n Scrivici su WhatsApp\n

\n

\n E-mail
\n lmxmisterbianco@gmail.com\n

\n
\n\n
\n

Partite, compleanni e gruppi

\n

\n Organizziamo partite laser tag, compleanni, feste, gruppi ed eventi speciali.\n Se vuoi ricevere informazioni rapide, usa questo modulo oppure contattaci direttamente al\n 366 365 6742.\n

\n

\n Per richieste immediate puoi anche scriverci su\n WhatsApp.\n

\n
\n\n
\n

Canali social

\n

\n Facebook
\n Instagram\n

\n
\n
\n\n
\n
\n
\n{% endblock %}\n\n{% block scripts %}\n{{ super() }}\n\n{% endblock %}"}, {"old": "Indirizzo Via Galileo Galilei, 76 int 4 - 95045 Misterbianco (CT)", "new": "LMXMISTERBIANCO."}, {"old": "LMXMISTERBIANCO", "new": "Organizziamo partite laser tag, compleanni, feste, gruppi ed eventi speciali. Se vuoi ricevere informazioni rapide, usa questo modulo oppure contattaci direttamente al 366 365 6742.."}]; function norm(s){ return String(s || "") .replace(/\u00a0/g, " ") .replace(/\s+/g, " ") .trim(); } function shouldSkip(el){ if(!el) return true; const tag = (el.tagName || "").toLowerCase(); return ["script","style","textarea","input","select","option","code","pre"].includes(tag); } function replaceTextNodes(root, oldText, newText){ let changed = false; const walker = document.createTreeWalker( root, NodeFilter.SHOW_TEXT, { acceptNode(node){ if(!node.nodeValue || !norm(node.nodeValue)) return NodeFilter.FILTER_REJECT; if(shouldSkip(node.parentElement)) return NodeFilter.FILTER_REJECT; return NodeFilter.FILTER_ACCEPT; } } ); const nodes = []; while(walker.nextNode()) nodes.push(walker.currentNode); nodes.forEach(node => { const raw = node.nodeValue; if(raw.includes(oldText)){ node.nodeValue = raw.split(oldText).join(newText); changed = true; } }); return changed; } function replaceWholeElements(oldText, newText){ let changed = false; const candidates = Array.from(document.querySelectorAll( "h1,h2,h3,h4,h5,p,span,a,button,li,strong,em,small,div" )); const oldNorm = norm(oldText); candidates.forEach(el => { if(shouldSkip(el)) return; const text = norm(el.innerText || el.textContent || ""); if(!text) return; // match preciso o contenuto spezzato tra tag if(text === oldNorm || text.includes(oldNorm)){ // evita di sostituire contenitori enormi if(text.length <= Math.max(oldNorm.length + 80, 180)){ el.textContent = text.replace(oldNorm, newText); changed = true; } } }); return changed; } function applyOverrides(){ overrides.forEach(item => { const oldText = item.old || ""; const newText = item.new || ""; if(!oldText || !newText) return; const changedNode = replaceTextNodes(document.body, oldText, newText); const changedElement = replaceWholeElements(oldText, newText); if(changedNode || changedElement){ console.log("[LMX DOM OVERRIDE] applicato", oldText, "=>", newText); } else { console.warn("[LMX DOM OVERRIDE] non trovato nel DOM visibile", oldText); } }); } if(document.readyState === "loading"){ document.addEventListener("DOMContentLoaded", applyOverrides); } else { applyOverrides(); } window.addEventListener("load", applyOverrides); // alcuni testi arrivano dopo via JS/animazioni setTimeout(applyOverrides, 300); setTimeout(applyOverrides, 1000); setTimeout(applyOverrides, 2000); })();