<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TendanceBuzz - Accueil</title>
<style>
body {
margin: 0;
padding: 0;
background: linear-gradient(to bottom right, #4a00e0, #8e2de2);
font-family: 'Poppins', sans-serif;
color: white;
overflow-x: hidden;
}
.flash-star {
background: yellow;
color: black;
padding: 10px 20px;
border-radius: 50px;
font-weight: bold;
animation: pulse 2s infinite;
display: inline-block;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
.shooting-star {
position: absolute;
top: 20%;
white-space: nowrap;
font-weight: bold;
animation: shoot 10s linear infinite;
}
.shooting-star.second { top: 35%; animation-delay: 3s; }
.shooting-star.third { top: 50%; animation-delay: 6s; }
@keyframes shoot {
0% { left: -100%; }
100% { left: 100%; }
}
.wheel-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 80px;
}
.wheel {
width: 200px;
height: 200px;
border: 10px solid #fff;
border-radius: 50%;
position: relative;
animation: spin 10s linear infinite;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.wheel div {
position: absolute;
width: 100%;
text-align: center;
transform-origin: center;
color: #fff;
}
.wheel div:nth-child(1) { transform: rotate(0deg) translateY(-90px); }
.wheel div:nth-child(2) { transform: rotate(72deg) translateY(-90px); }
.wheel div:nth-child(3) { transform: rotate(144deg) translateY(-90px); }
.wheel div:nth-child(4) { transform: rotate(216deg) translateY(-90px); }
.wheel div:nth-child(5) { transform: rotate(288deg) translateY(-90px); }
h1 {
text-align: center;
font-size: 2.5em;
margin-top: 20px;
}
</style>
</head>
<body>
<h1>Bienvenue sur TendanceBuzz</h1>
<div style="text-align: center; margin-top: 30px;">
<span class="flash-star">Jeu concours mensuel pour gagner 1000€ sans minimum d'achat</span>
</div>
<div class="shooting-star">🌠 Jeu concours annuel pour gagner une voiture ou un voyage en famille All Inclusive pour 15 jours !</div>
<div class="shooting-star second">🌠 Devenez testeur de nos produits et choisissez le produit que vous avez envie de tester !</div>
<div class="shooting-star third">🌠 Encore plus d’offres exclusives chaque semaine…</div>
<div class="wheel-container">
<div class="wheel">
<div>Projecteur HY300</div>
<div>Correcteur de posture</div>
<div>Lisseur & Boucleur</div>
<div>Mini Ventilateur USB</div>
<div>Montre connectée</div>
</div>
</div>
</body>
</html>