:root {
--noir: #0a0a0a;
--card: #111;
--card-2: #161616;
--border: #222;
--jaune: #f5c800;
--jaune-dim: rgba(245,200,0,.08);
--blanc: #f0ede6;
--gris: #666;
--rouge: #e03030;
--vert: #00e676;
--vert-dim: rgba(0,230,118,.1);
--bleu-tech: #00b4ff;
--bleu-dim: rgba(0,180,255,.1);
--or: #ffd700;
--or-dim: rgba(255,215,0,.1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--noir);
color: var(--blanc);
font-family: 'Barlow', sans-serif;
font-size: 17px;
line-height: 1.7;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
a { color: var(--jaune); text-decoration: none; }
p { color: #bbb; margin-bottom: 14px; }
strong { color: #eee; }
/* ══════════════════════════════════
BARRE TOP "ALERTE EXCLUSIVE"
══════════════════════════════════ */
.top-bar {
background: var(--rouge);
color: #fff;
text-align: center;
padding: 9px 16px;
font-family: 'Bebas Neue', sans-serif;
font-size: .95rem;
letter-spacing: 2px;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}
.top-bar-blink {
display: inline-block;
animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
/* ══════════════════════════════════
HERO PRODUIT
══════════════════════════════════ */
.hero {
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 80px 24px 60px;
overflow: hidden;
}
/* Fond tech animé */
.hero::before {
content: '';
position: absolute; inset: 0;
background:
radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0,180,255,.12), transparent 65%),
radial-gradient(ellipse 40% 40% at 80% 80%, rgba(245,200,0,.06), transparent 60%),
radial-gradient(ellipse 30% 30% at 20% 70%, rgba(0,230,118,.05), transparent 55%);
pointer-events: none;
}
/* Grille tech en fond */
.hero::after {
content: '';
position: absolute; inset: 0;
background-image:
linear-gradient(rgba(0,180,255,.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,180,255,.04) 1px, transparent 1px);
background-size: 60px 60px;
pointer-events: none;
}
.hero-eyebrow {
font-family: 'Rajdhani', sans-serif;
font-size: .85rem;
font-weight: 700;
letter-spacing: 4px;
color: var(--bleu-tech);
text-transform: uppercase;
margin-bottom: 16px;
opacity: 0;
animation: fadeUp .6s .2s forwards;
}
.hero h1 {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(3.5rem, 12vw, 8rem);
letter-spacing: 4px;
line-height: .95;
color: var(--blanc);
margin-bottom: 10px;
opacity: 0;
animation: fadeUp .6s .4s forwards;
}
.hero h1 span { color: var(--jaune); }
.hero-tagline {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(1.1rem, 3vw, 1.8rem);
letter-spacing: 3px;
color: var(--bleu-tech);
margin-bottom: 28px;
opacity: 0;
animation: fadeUp .6s .6s forwards;
}
/* Boule animée centrale */
.boule-hero {
position: relative;
width: 180px; height: 180px;
margin: 30px auto 30px;
opacity: 0;
animation: fadeUp .6s .5s forwards;
}
.boule-sphere {
width: 180px; height: 180px;
border-radius: 50%;
background: radial-gradient(circle at 35% 30%, #4a4a4a, #111 70%);
border: 2px solid #333;
box-shadow:
0 0 40px rgba(0,180,255,.4),
0 0 80px rgba(0,180,255,.15),
inset -6px -6px 20px rgba(0,0,0,.6);
position: relative;
animation: levitate 3s ease-in-out infinite;
}
.boule-sphere::before {
content: 'BAPA';
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
font-family: 'Bebas Neue', sans-serif;
font-size: 1.6rem;
letter-spacing: 4px;
color: var(--jaune);
text-shadow: 0 0 20px rgba(245,200,0,.8);
}
/* Orbite magnétique */
.boule-orbit {
position: absolute;
inset: -24px;
border-radius: 50%;
border: 1px solid rgba(0,180,255,.3);
border-top-color: var(--bleu-tech);
animation: orbit 4s linear infinite;
}
.boule-orbit-2 {
position: absolute;
inset: -40px;
border-radius: 50%;
border: 1px solid rgba(0,230,118,.2);
border-right-color: var(--vert);
animation: orbit 6s linear infinite reverse;
}
.orbit-dot {
position: absolute;
top: -5px; left: 50%;
transform: translateX(-50%);
width: 10px; height: 10px;
border-radius: 50%;
background: var(--bleu-tech);
box-shadow: 0 0 10px var(--bleu-tech);
}
.orbit-dot-2 {
position: absolute;
bottom: -5px; left: 50%;
transform: translateX(-50%);
width: 8px; height: 8px;
border-radius: 50%;
background: var(--vert);
box-shadow: 0 0 10px var(--vert);
}
@keyframes orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes levitate {
0%, 100% { transform: translateY(0); box-shadow: 0 0 40px rgba(0,180,255,.4), 0 0 80px rgba(0,180,255,.15), inset -6px -6px 20px rgba(0,0,0,.6); }
50% { transform: translateY(-12px); box-shadow: 0 20px 60px rgba(0,180,255,.5), 0 0 100px rgba(0,180,255,.2), inset -6px -6px 20px rgba(0,0,0,.6); }
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Badges hero */
.hero-badges {
display: flex;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
margin-bottom: 32px;
opacity: 0;
animation: fadeUp .6s .8s forwards;
}
.hbadge {
background: var(--card-2);
border: 1px solid var(--border);
border-radius: 20px;
padding: 5px 14px;
font-size: .8rem;
color: #888;
display: flex;
align-items: center;
gap: 6px;
}
.hbadge .dot { width: 7px; height: 7px; border-radius: 50%; }
.hbadge.tech .dot { background: var(--bleu-tech); box-shadow: 0 0 6px var(--bleu-tech); }
.hbadge.cert .dot { background: var(--vert); box-shadow: 0 0 6px var(--vert); }
.hbadge.lim .dot { background: var(--rouge); box-shadow: 0 0 6px var(--rouge); animation: blink 1.2s step-end infinite; }
/* CTA hero */
.hero-cta-wrap {
opacity: 0;
animation: fadeUp .6s 1s forwards;
}
.btn-reserve {
display: inline-flex;
align-items: center;
gap: 12px;
background: var(--jaune);
color: #000;
font-family: 'Bebas Neue', sans-serif;
font-size: 1.3rem;
letter-spacing: 2px;
padding: 18px 42px;
border-radius: 6px;
text-decoration: none;
box-shadow: 0 6px 30px rgba(245,200,0,.35);
transition: transform .2s, box-shadow .2s;
cursor: pointer;
border: none;
}
.btn-reserve:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(245,200,0,.45); }
.hero-stock {
margin-top: 10px;
font-size: .82rem;
color: var(--rouge);
font-family: 'Rajdhani', sans-serif;
font-weight: 700;
letter-spacing: 1px;
}
/* ══════════════════════════════════
COMPTEUR STOCK
══════════════════════════════════ */
.stock-bar-wrap {
max-width: 400px;
margin: 12px auto 0;
}
.stock-bar-label {
display: flex;
justify-content: space-between;
font-size: .78rem;
color: #555;
margin-bottom: 5px;
}
.stock-bar-label span:last-child { color: var(--rouge); font-weight: 700; }
.stock-track {
height: 6px;
background: #1a1a1a;
border-radius: 6px;
overflow: hidden;
}
.stock-fill {
height: 100%;
width: 83%;
background: linear-gradient(90deg, var(--vert), var(--rouge));
border-radius: 6px;
animation: stockpulse 2s ease-in-out infinite;
}
@keyframes stockpulse { 0%,100%{opacity:1} 50%{opacity:.7} }
/* ══════════════════════════════════
LAYOUT
══════════════════════════════════ */
.page-wrap { max-width: 900px; margin: 0 auto; padding: 0 24px 100px; }
/* ══════════════════════════════════
SECTION SPECS TECH
══════════════════════════════════ */
.section-titre {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(1.8rem, 4vw, 2.8rem);
color: var(--jaune);
letter-spacing: 2px;
margin: 64px 0 24px;
display: flex;
align-items: center;
gap: 14px;
}
.section-titre::before {
content: '';
display: block;
width: 5px; height: 34px;
background: var(--bleu-tech);
border-radius: 2px;
flex-shrink: 0;
}
.specs-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 12px;
margin: 28px 0;
}
.spec-card {
background: var(--card-2);
border: 1px solid var(--border);
border-radius: 12px;
padding: 20px 16px;
border-top: 2px solid var(--bleu-tech);
transition: border-color .2s, transform .2s;
}
.spec-card:hover { border-color: var(--jaune); transform: translateY(-3px); }
.spec-ico { font-size: 2rem; margin-bottom: 8px; display: block; }
.spec-nom {
font-family: 'Rajdhani', sans-serif;
font-weight: 700;
font-size: .8rem;
letter-spacing: 2px;
color: var(--bleu-tech);
text-transform: uppercase;
margin-bottom: 4px;
}
.spec-valeur {
font-family: 'Bebas Neue', sans-serif;
font-size: 1.2rem;
color: var(--blanc);
margin-bottom: 4px;
letter-spacing: 1px;
}
.spec-detail { font-size: .8rem; color: #666; line-height: 1.5; }
/* ══════════════════════════════════
FONCTIONNALITÉS
══════════════════════════════════ */
.features-list {
display: flex;
flex-direction: column;
gap: 12px;
margin: 28px 0;
}
.feature-item {
background: var(--card-2);
border: 1px solid var(--border);
border-radius: 10px;
padding: 18px 20px;
display: flex;
gap: 16px;
align-items: flex-start;
}
.fi-check {
width: 32px; height: 32px;
border-radius: 50%;
background: var(--vert-dim);
border: 1px solid rgba(0,230,118,.3);
display: flex; align-items: center; justify-content: center;
font-size: .95rem;
flex-shrink: 0;
color: var(--vert);
font-weight: 900;
}
.fi-content { flex: 1; }
.fi-titre {
font-family: 'Bebas Neue', sans-serif;
font-size: 1.05rem;
letter-spacing: 1.5px;
color: var(--blanc);
margin-bottom: 4px;
}
.fi-detail { font-size: .88rem; color: #888; line-height: 1.6; }
.fi-badge {
display: inline-block;
margin-top: 6px;
padding: 2px 8px;
border-radius: 3px;
font-size: .72rem;
font-weight: 700;
font-family: 'Rajdhani', sans-serif;
letter-spacing: 1px;
}
/* ══════════════════════════════════
TÉMOIGNAGES (les meilleurs)
══════════════════════════════════ */
.temoignages-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 12px;
margin: 28px 0;
}
.temo-card {
background: var(--card-2);
border: 1px solid var(--border);
border-radius: 10px;
padding: 18px 16px;
}
.temo-stars { color: var(--or); font-size: 1rem; margin-bottom: 8px; letter-spacing: 2px; }
.temo-texte { font-size: .88rem; color: #aaa; font-style: italic; margin-bottom: 10px; line-height: 1.6; }
.temo-auteur {
font-family: 'Rajdhani', sans-serif;
font-weight: 700;
font-size: .78rem;
letter-spacing: 1px;
color: #555;
}
.temo-auteur span { color: var(--bleu-tech); }
/* ══════════════════════════════════
CHRONO (compte à rebours)
══════════════════════════════════ */
.chrono-section {
background: linear-gradient(135deg, #100a00, #0a0a10);
border: 1px solid var(--border);
border-top: 2px solid var(--rouge);
border-radius: 12px;
padding: 32px 24px;
margin: 40px 0;
text-align: center;
}
.chrono-label {
font-family: 'Bebas Neue', sans-serif;
font-size: .85rem;
letter-spacing: 3px;
color: var(--rouge);
margin-bottom: 16px;
}
.chrono-digits {
display: flex;
justify-content: center;
gap: 8px;
flex-wrap: wrap;
}
.chrono-bloc {
background: #0d0d0d;
border: 1px solid #2a2a2a;
border-radius: 8px;
padding: 14px 16px;
min-width: 70px;
text-align: center;
}
.chrono-num {
font-family: 'Bebas Neue', sans-serif;
font-size: 2.5rem;
color: var(--rouge);
line-height: 1;
font-variant-numeric: tabular-nums;
}
.chrono-unit { font-size: .65rem; color: #444; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.chrono-sep { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: #333; align-self: center; }
/* ══════════════════════════════════
TABLEAU COMPARATIF
══════════════════════════════════ */
.compare-table {
width: 100%;
border-collapse: collapse;
font-size: .9rem;
margin: 28px 0;
border-radius: 10px;
overflow: hidden;
border: 1px solid var(--border);
}
.compare-table thead tr { background: #0a0a14; }
.compare-table thead th {
padding: 14px 16px;
text-align: center;
font-family: 'Bebas Neue', sans-serif;
font-size: .9rem;
letter-spacing: 2px;
}
.compare-table thead th:first-child { text-align: left; color: #555; }
.compare-table thead th.th-bapa { color: var(--jaune); }
.compare-table thead th.th-norm { color: #555; }
.compare-table tbody tr { border-bottom: 1px solid var(--border); background: var(--card-2); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody td { padding: 12px 16px; color: #888; }
.compare-table tbody td:first-child { color: #bbb; }
.compare-table tbody td:nth-child(2) { text-align: center; }
.compare-table tbody td:nth-child(3) { text-align: center; color: #444; }
.ct-yes { color: var(--vert); font-size: 1.1rem; }
.ct-no { color: var(--rouge); font-size: 1.1rem; }
.ct-val { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: var(--bleu-tech); }
/* ══════════════════════════════════
CTA MILIEU
══════════════════════════════════ */
.cta-milieu {
background: linear-gradient(135deg, rgba(245,200,0,.08), rgba(0,180,255,.06));
border: 1px solid rgba(245,200,0,.25);
border-radius: 14px;
padding: 36px 28px;
margin: 40px 0;
text-align: center;
}
.cta-milieu-titre {
font-family: 'Bebas Neue', sans-serif;
font-size: 2rem;
letter-spacing: 2px;
color: var(--jaune);
margin-bottom: 10px;
}
.cta-milieu p { color: #999; max-width: 500px; margin: 0 auto 20px; }
/* ══════════════════════════════════
RÉVÉLATION POISSON D'AVRIL
══════════════════════════════════ */
.reveal-section {
position: relative;
margin: 60px 0 0;
overflow: hidden;
}
/* Ligne de séparation dramatique */
.reveal-divider {
text-align: center;
position: relative;
margin-bottom: 40px;
}
.reveal-divider::before {
content: '';
position: absolute;
top: 50%; left: 0; right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--jaune), transparent);
}
.reveal-divider-text {
display: inline-block;
background: var(--noir);
padding: 0 20px;
font-family: 'Bebas Neue', sans-serif;
font-size: 1.1rem;
letter-spacing: 3px;
color: var(--jaune);
position: relative;
}
.poisson-reveal {
background: linear-gradient(135deg, #0a1500, #001500, #0a1000);
border: 2px solid rgba(0,230,118,.4);
border-radius: 20px;
padding: 48px 32px;
text-align: center;
position: relative;
overflow: hidden;
}
.poisson-reveal::before {
content: '';
position: absolute; inset: 0;
background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(0,230,118,.08), transparent 65%);
pointer-events: none;
}
/* Confettis CSS */
.confetti-wrap {
position: absolute;
inset: 0;
pointer-events: none;
overflow: hidden;
}
.confetti {
position: absolute;
width: 8px; height: 8px;
border-radius: 2px;
animation: confettiFall linear infinite;
}
@keyframes confettiFall {
0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
100% { transform: translateY(600px) rotate(720deg); opacity: 0; }
}
.poisson-ico { font-size: 5rem; margin-bottom: 16px; display: block; animation: bounce 1s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.poisson-titre {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(2.5rem, 8vw, 5rem);
letter-spacing: 3px;
color: var(--vert);
line-height: 1;
margin-bottom: 8px;
text-shadow: 0 0 40px rgba(0,230,118,.4);
}
.poisson-sous {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(1rem, 3vw, 1.8rem);
letter-spacing: 2px;
color: var(--jaune);
margin-bottom: 28px;
}
.poisson-texte {
font-size: 1rem;
color: #aaa;
max-width: 580px;
margin: 0 auto 32px;
line-height: 1.8;
}
.poisson-texte strong { color: var(--vert); }
/* Aveux de Paquita */
.aveux-card {
background: rgba(0,0,0,.4);
border: 1px solid rgba(0,230,118,.2);
border-radius: 12px;
padding: 24px;
max-width: 560px;
margin: 0 auto 28px;
text-align: left;
}
.aveux-label {
font-family: 'Bebas Neue', sans-serif;
font-size: .82rem;
letter-spacing: 2px;
color: var(--vert);
margin-bottom: 10px;
}
.aveux-texte {
font-size: .95rem;
color: #ccc;
font-style: italic;
line-height: 1.7;
border-left: 3px solid var(--jaune);
padding-left: 14px;
}
.aveux-sign {
font-family: 'Bebas Neue', sans-serif;
font-size: .85rem;
letter-spacing: 2px;
color: var(--jaune);
margin-top: 10px;
}
/* Vrai CTA */
.poisson-cta {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
margin-top: 12px;
}
.btn-vrai {
display: inline-flex;
align-items: center;
gap: 10px;
background: var(--jaune);
color: #000;
font-family: 'Bebas Neue', sans-serif;
font-size: 1rem;
letter-spacing: 2px;
padding: 14px 26px;
border-radius: 8px;
text-decoration: none;
transition: opacity .2s;
}
.btn-vrai:hover { opacity: .88; text-decoration: none; }
.btn-vrai.second {
background: transparent;
color: var(--vert);
border: 1px solid rgba(0,230,118,.4);
}
.btn-vrai.second:hover { background: rgba(0,230,118,.08); }
/* Stats ridicules */
.fake-stats {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
margin: 32px 0;
border: 1px solid var(--border);
border-radius: 10px;
overflow: hidden;
}
@media(max-width:500px){ .fake-stats { grid-template-columns: 1fr 1fr; } }
.fstat {
padding: 18px 10px;
text-align: center;
background: var(--card-2);
border-right: 1px solid var(--border);
}
.fstat:last-child { border-right: none; }
.fstat-val {
font-family: 'Bebas Neue', sans-serif;
font-size: 2rem;
color: var(--bleu-tech);
line-height: 1;
margin-bottom: 4px;
}
.fstat-label { font-size: .72rem; color: #555; line-height: 1.4; }
/* Petits caractères légaux */
.legal {
font-size: .7rem;
color: #2a2a2a;
line-height: 1.6;
margin-top: 24px;
padding-top: 16px;
border-top: 1px solid #1a1a1a;
}
/* Footer */
.art-footer {
border-top: 1px solid #1a1a1a;
padding-top: 28px;
text-align: center;
color: #444;
font-size: .85rem;
}
.art-footer a { color: var(--jaune); }
/* Responsive */
@media(max-width:600px) {
.specs-grid { grid-template-columns: 1fr 1fr; }
.temoignages-grid { grid-template-columns: 1fr; }
}
⚡
ÉDITION LIMITÉE — PLUS QUE 17 EXEMPLAIRES DISPONIBLES — COMMANDEZ AVANT MINUIT
⚡
🔬 Technologie de rupture · Brevet FIPJP n°2026-BAPA-001 en cours
Boule Aimantée à Pointage Automatique
Noyau néodyme N52
Gyroscope interne
IA embarquée
100 exemplaires
🎯 Réserver ma triplette BAPA
🔴 ALERTE STOCK — 17 triplettes restantes sur 100
083% vendus
99,7%
taux de carreau garanti
(conditions météo normales)
47ms
temps de calcul trajectoire
par le microprocesseur
N52
grade néodyme
le plus puissant du marché
∞
patience de votre
adversaire requise
⚙️ Spécifications Techniques
🧲
Noyau magnétique
Néodyme N52
Le néodyme de grade N52 — le plus puissant de la galaxie observable. Tient le cochonnet à 6 mètres. Peut accidentellement vous coller à la balustrade du boulodrome.
🌀
Stabilisation
Gyroscope 6 axes
Correction en temps réel de la trajectoire pendant le vol. Le gyroscope compense même les lancers de votre beau-frère qui joue avec la main gauche alors qu'il est droitier.
🤖
Intelligence
IA PAQUITA-7
Modèle de langage entraîné sur 40 ans de parties de pétanque, 3 litres de rosé et les commentaires Facebook de PétanqueLand. Précision inégalée.
⚡
Autonomie
72h de concours
Rechargeable en 20 minutes via port USB-C (câble non inclus, comme tous les chargeurs depuis 2021). Compatible chargeur sans fil si vous posez la boule dessus sans rater.
🛡️
Protection
Champ répulsif
Repousse automatiquement les boules adverses dans un rayon de 30 cm. Peut aussi repousser les commentaires négatifs sur votre jeu. Fonctionnalité psychologique incluse.
📱
Connectivité
Bluetooth 5.4
Application BAPA Connect disponible sur App Store et Google Play. Analyse votre lancer en AR et envoie une notification à votre adversaire : "Préparez-vous à perdre."
✅ Ce que la BAPA fait pour vous
✓
Calcule la trajectoire parfaite vers le cochonnet
Le microprocesseur PAQUITA-7 analyse en 47ms la position du cochonnet, la topographie du terrain, l'humidité de l'air, la direction du vent et votre niveau de stress détecté via le capteur de sudation de la paume. Il en déduit la trajectoire optimale et guide votre bras via une légère vibration haptique. Votre beau-jeu sera entièrement de votre fait. Enfin presque.
BREVET EN COURS
✓
S'accroche magnétiquement au cochonnet à l'arrivée
Grâce au noyau néodyme N52, la boule "verrouille" sa position dans un rayon de 8 cm autour du cochonnet. Les joueurs adverses peuvent essayer de mesurer. La boule tiendra. Le mètre peut aller se rhabiller.
EXCLUSIVITÉ MONDIALE
✓
Repousse les boules adverses si elles s'approchent trop
Le champ magnétique répulsif s'active automatiquement si une boule adverse entre dans le rayon de protection. Elle sera gentiment repoussée de 30 à 50 cm. Techniquement on pourrait appeler ça de la triche mais on préfère dire "avantage concurrentiel".
HOMOLOGUÉ*
✓
Mode "Grand-mère" activable depuis l'application
Le mode dédié aux joueurs occasionnels amplifie tous les effets x2, ralentit la boule à 0,3 m/s pour lui laisser le temps de viser, et déclenche une musique de victoire à l'arrivée près du cochonnet. Votre grand-mère va détruire votre club. Vous l'aurez mérité.
NOUVEAU
🔴 OFFRE DE LANCEMENT — SE TERMINE DANS
00jours
:
00heures
:
00min
:
00sec
⭐ Ils ont testé la BAPA
★★★★★
"J'ai fait 14 carreaux consécutifs dès la première partie. Mes adversaires ont demandé un contrôle antidopage des boules. Je leur ai dit que c'était juste du travail. Merci BAPA."
Gérard M. — Vaison-la-Romaine, 68 ans
★★★★★
"Ma femme utilise le mode Grand-mère depuis 3 jours. Elle a battu le champion régional hier. Il pleure encore dans sa camionnette. Je suis un peu jaloux mais surtout impressionné."
Jean-Pierre V. — Montpellier
★★★★★
"Le champ répulsif a légèrement déréglé le GPS de mon téléphone et effacé mes données bancaires, mais mes boules ne bougent plus. Je considère ça comme un très bon échange."
Michel L. — Marseille
📊 BAPA vs Boule Classique
| Critère |
🏆 BAPA |
Boule ordinaire |
| Trajectoire calculée par IA | ✓ | ✗ |
| Accrochage magnétique cochonnet | ✓ | ✗ |
| Champ répulsif adversaires | ✓ | ✗ |
| Compatible mode Grand-mère | ✓ | ✗ |
| Nécessite d'apprendre à jouer | ✗ | ✓ |
| Nécessite de s'entraîner | ✗ | ✓ |
| Homologuée FIPJP | En cours* | ✓ |
| Poids conforme (650–800g) | 680g + 40g électronique | ✓ |
| Prix | 1 490 € | 35–200 € |
| Amour-propre de l'adversaire | Détruit | Préservé |
🎯 Réservez votre triplette BAPA
Édition limitée à 100 exemplaires mondiaux. Livraison avril 2026. Garantie 2 ans pièces et main d'œuvre gyroscopique. Câble USB-C non inclus.
✨ Commander pour 1 490 € →
*En cliquant vous acceptez nos CGV, notre politique de cookies, et la possibilité que votre adversaire porte plainte.
↓ VOUS AVEZ SCROLLÉ JUSQU'ICI ↓
🐟
POISSON D'AVRIL !
🎉 Félicitations, vous avez mordu à l'hameçon 🎉
La BAPA n'existe pas. Il n'y a pas de noyau en néodyme, pas de gyroscope interne, pas d'IA PAQUITA-7 (même si je rêve qu'elle existe). Aucune boule de pétanque ne calcule de trajectoire, ne s'accroche magnétiquement au cochonnet et ne repousse les adversaires.
Ce qui existe en revanche ? Le travail, la répétition, et la méthode. Comme d'hab.
🎙️ Les aveux de Paquita
"Bon. J'aurais pu vous vendre la BAPA 1 490 €, personne n'aurait vu le problème avant la livraison. Mais voilà — j'ai préféré vous offrir quelque chose qui marche vraiment : un livre avec 100 exercices numérotés, des programmes par niveau, la biomécanique complète et la gestion mentale en compétition. Ça coûte beaucoup moins cher. Et ça fonctionne, même sans gyroscope. Même sans câble USB-C."
— Paquita, ingénieure de faux produits, vraie méthode
📖 Le vrai livre de Paquita — Amazon
🏠 Retour sur PétanqueLand
* La BAPA (Boule Aimantée à Pointage Automatique) est un produit fictif créé à l'occasion du 1er avril. Aucun néodyme n'a été utilisé lors de la production de cette page. Le brevet FIPJP n°2026-BAPA-001 n'existe pas. Les témoignages de Gérard, Jean-Pierre et Michel sont inventés mais leurs problèmes de beau-frère gaucher sont universels. Le compte à rebours est un peu du JavaScript qui compte à rebours de façon dramatique. Les données bancaires de Michel sont en sécurité. En commandant la BAPA vous n'avez commandé qu'une bonne blague. Paquita assume entièrement ce poisson d'avril et n'assume aucune responsabilité pour les rosés renversés en lisant cette page. PétanqueLand · La Pétanque par Paquita · petanqueland.fr