<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>

<!– ✅ TITLE WHITE –>
<title style=”color:white;”>Diamond Essence – Luxury Affiliate</title>

<script src=”https://cdn.tailwindcss.com”></script>
<link href=”https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&display=swap” rel=”stylesheet”>

<style>
body {
font-family: ‘Montserrat’, sans-serif;
}

/* HEADER */
.header-dark {
background: #000;
}

/* HERO */
.hero-bg {
background: radial-gradient(circle at center, #b80000 0%, #2a0000 100%);
min-height: 520px;
position: relative;
overflow: hidden;
}
.hero-bg::after {
content: “”;
position: absolute;
inset: 0;
background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

/* Neon */
.neon-line {
height: 3px;
background: #ff1a1a;
box-shadow: 0 0 15px #ff0000;
border-radius: 10px;
margin-bottom: 12px;
}

/* FORM */
.gold-card {
background: #F7E5B5;
border-radius: 40px;
overflow: hidden;
}
.input-box {
background: #EAD9A4;
border-radius: 10px;
padding: 14px;
width: 100%;
}
.submit-btn {
background: #EEB318;
color: white;
font-weight: bold;
}
</style>
</head>

<body>

<!– HEADER –>
<header class=”header-dark py-5 px-10 flex justify-between items-center text-white”>

<div class=”flex items-center gap-3″>
<div class=”w-10 h-10 border border-yellow-400 flex items-center justify-center text-xs font-bold”>
DE
</div>
<div class=”text-xs font-bold uppercase”>
Diamond <br><span class=”text-yellow-400″>Essence</span>
</div>
</div>

<div class=”flex gap-5 text-xl”>
<span>🛒</span>
<span>👤</span>
</div>

</header>

<!– HERO –>
<section class=”hero-bg flex items-center px-10 md:px-24″>

<!– Neon –>
<div class=”absolute top-10 left-1/2 -translate-x-1/2 flex flex-col items-center z-10″>
<div class=”neon-line w-40″></div>
<div class=”neon-line w-60″></div>
<div class=”neon-line w-80″></div>
</div>

<div class=”flex flex-col md:flex-row items-center w-full justify-between mt-10 relative z-10″>

<!– TEXT –>
<div class=”max-w-xl text-white text-center md:text-left”>
<h1 class=”text-5xl font-black uppercase text-white”>
Diamond Essence <br> Affiliate Program
</h1>

<p class=”text-sm mt-6 opacity-80 max-w-sm”>
Share luxury fragrances and earn rewards with our premium affiliate program.
</p>
</div>

<!– CIRCLE IMAGE –>
<div class=”relative mt-10 md:mt-0 flex items-center justify-center”>

<div class=”absolute w-72 h-72 rounded-full bg-yellow-400 opacity-20 blur-3xl”></div>

<div class=”w-56 h-56 md:w-72 md:h-72 rounded-full overflow-hidden border-4 border-yellow-400 shadow-2xl”>

<img
src=”https://images.unsplash.com/photo-1594035910387-fea47794261f”
class=”w-full h-full object-cover”
alt=”Perfume”
>

</div>

</div>

</div>
</section>

<!– TITLE –>
<section class=”py-20 text-center”>
<h2 class=”text-4xl font-black uppercase”>
Join the Diamond Essence Affiliate Family
</h2>
</section>

<!– FORM –>
<section class=”max-w-6xl mx-auto px-6 mb-24″>
<div class=”flex flex-col md:flex-row gold-card”>

<!– LEFT –>
<div class=”w-full md:w-1/2 p-12″>
<h3 class=”text-2xl font-bold”>Affiliate Sign-Up</h3>

<form class=”space-y-4 mt-6″>
<input type=”text” placeholder=”Name” class=”input-box”>
<input type=”email” placeholder=”Email” class=”input-box”>

<div class=”grid grid-cols-2 gap-4″>
<input type=”text” placeholder=”Followers” class=”input-box”>
<input type=”text” placeholder=”Social Links” class=”input-box”>
</div>

<textarea placeholder=”Message” rows=”4″ class=”input-box”></textarea>

<button class=”submit-btn w-full py-4 rounded-lg hover:scale-105 transition”>
Submit
</button>
</form>
</div>

<!– RIGHT –>
<div class=”w-full md:w-1/2 relative min-h-[400px]”>

<img
src=”https://images.unsplash.com/photo-1615634260167-c8cdede054de”
class=”w-full h-full object-cover”
alt=”Perfume”
>

<div class=”absolute bottom-10 left-1/2 -translate-x-1/2 w-4/5 bg-black/60 p-6 rounded-xl text-white text-center”>
<p class=”text-xs text-yellow-400 uppercase”>Official Partner</p>
<p class=”text-sm italic”>”Share the essence, earn luxury.”</p>
</div>

</div>

</div>
</section>

<!– FOOTER –>
<footer class=”py-10 text-center text-xs opacity-40 uppercase text-white bg-black”>
© 2026 Diamond Essence
</footer>

</body>
</html>