Add hero banner strip — 'JOIN THE CRYPTO TEAM BUILD NETWORK' with gold CTA button, dyn referral link
This commit is contained in:
+146
-35
@@ -224,41 +224,135 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Team callout banner */
|
/* Team callout banner */
|
||||||
.team-callout {
|
.team-callout {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
gap: 16px;
|
gap: 16px;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
background: linear-gradient(135deg, rgba(0,229,255,0.08), rgba(255,0,255,0.04));
|
background: linear-gradient(135deg, rgba(0,229,255,0.08), rgba(255,0,255,0.04));
|
||||||
border: 1px solid rgba(0,229,255,0.2);
|
border: 1px solid rgba(0,229,255,0.2);
|
||||||
border-radius: var(--radius);
|
border-radius: var(--radius);
|
||||||
padding: 18px 24px;
|
padding: 18px 24px;
|
||||||
margin: 0 auto 32px;
|
margin: 0 auto 32px;
|
||||||
max-width: 620px;
|
max-width: 620px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.team-callout .callout-icon {
|
.team-callout .callout-icon {
|
||||||
font-size: 1.6rem;
|
font-size: 1.6rem;
|
||||||
}
|
}
|
||||||
.team-callout .callout-text {
|
.team-callout .callout-text {
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
.team-callout .callout-text strong {
|
.team-callout .callout-text strong {
|
||||||
color: #fff;
|
color: var(--text);
|
||||||
}
|
}
|
||||||
.team-callout a {
|
.team-callout a {
|
||||||
color: var(--accent);
|
color: var(--accent);
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
border-bottom: 2px solid var(--accent);
|
border-bottom: 2px solid var(--accent);
|
||||||
transition: opacity 0.2s;
|
transition: opacity 0.2s;
|
||||||
}
|
}
|
||||||
.team-callout a:hover {
|
.team-callout a:hover {
|
||||||
opacity: 0.8;
|
opacity: 0.8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ══════════════════════════════════════════════════════════
|
||||||
|
HERO BANNER — Join the Team CTA strip
|
||||||
|
══════════════════════════════════════════════════════════ */
|
||||||
|
.hero-banner {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 24px;
|
||||||
|
background: linear-gradient(135deg, rgba(0,229,255,0.06) 0%, rgba(255,0,255,0.04) 100%);
|
||||||
|
border: 1px solid rgba(0,229,255,0.15);
|
||||||
|
border-radius: 16px;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0 auto 28px;
|
||||||
|
max-width: 780px;
|
||||||
|
width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.hero-banner::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
background:
|
||||||
|
radial-gradient(ellipse at 30% 50%, rgba(0,229,255,0.06) 0%, transparent 60%),
|
||||||
|
radial-gradient(ellipse at 70% 50%, rgba(255,0,255,0.04) 0%, transparent 50%);
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.hero-banner-content {
|
||||||
|
flex: 1;
|
||||||
|
padding: 20px 0 20px 24px;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.hero-banner h3 {
|
||||||
|
font-family: 'Orbitron', sans-serif;
|
||||||
|
font-size: clamp(0.85rem, 2vw, 1.05rem);
|
||||||
|
font-weight: 700;
|
||||||
|
letter-spacing: 0.5px;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
background: linear-gradient(135deg, #00e5ff 0%, #c084fc 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
.hero-banner p {
|
||||||
|
font-size: 0.82rem;
|
||||||
|
color: var(--text-dim);
|
||||||
|
margin: 0;
|
||||||
|
line-height: 1.5;
|
||||||
|
}
|
||||||
|
.hero-banner p .highlight {
|
||||||
|
color: #00e5ff;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.hero-banner-btn-wrap {
|
||||||
|
flex-shrink: 0;
|
||||||
|
padding: 20px 24px 20px 0;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.hero-banner-btn {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
background: linear-gradient(135deg, #f59e0b, #eab308);
|
||||||
|
color: #0f1117;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 0.85rem;
|
||||||
|
padding: 10px 22px;
|
||||||
|
border-radius: 8px;
|
||||||
|
text-decoration: none;
|
||||||
|
box-shadow: 0 0 20px rgba(245,158,11,0.25);
|
||||||
|
transition: transform 0.2s, box-shadow 0.2s;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
.hero-banner-btn:hover {
|
||||||
|
transform: translateY(-1px);
|
||||||
|
box-shadow: 0 0 30px rgba(245,158,11,0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Mobile: stack banner */
|
||||||
|
@media (max-width: 640px) {
|
||||||
|
.hero-banner {
|
||||||
|
flex-direction: column;
|
||||||
|
text-align: center;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
.hero-banner-content {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.hero-banner-btn-wrap {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Quick stat pills */
|
/* Quick stat pills */
|
||||||
.stat-pills {
|
.stat-pills {
|
||||||
@@ -1097,6 +1191,19 @@
|
|||||||
<a href="https://clickbaitpays.me/login.php" target="_blank" rel="noopener" class="hero-login-link">🔐 Log into ClickBaitPays</a>
|
<a href="https://clickbaitpays.me/login.php" target="_blank" rel="noopener" class="hero-login-link">🔐 Log into ClickBaitPays</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Hero Banner — Join the Team -->
|
||||||
|
<div class="hero-banner">
|
||||||
|
<div class="hero-banner-content">
|
||||||
|
<h3>🚀 JOIN THE CRYPTO TEAM BUILD NETWORK</h3>
|
||||||
|
<p>Click ads. Build your team. Earn crypto with <span class="highlight">real payouts</span>. Start with just <strong>$14</strong></p>
|
||||||
|
</div>
|
||||||
|
<div class="hero-banner-btn-wrap">
|
||||||
|
<a class="hero-banner-btn" id="bannerSignupBtn" target="_blank" rel="noopener">
|
||||||
|
Join My Team →
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- 4-Step How It Works -->
|
<!-- 4-Step How It Works -->
|
||||||
<div class="steps-row">
|
<div class="steps-row">
|
||||||
<div class="step-card">
|
<div class="step-card">
|
||||||
@@ -1981,6 +2088,10 @@ function updateSharedLinkBox() {
|
|||||||
document.getElementById('sharedLink').value = shareUrl;
|
document.getElementById('sharedLink').value = shareUrl;
|
||||||
const signupBtn = document.getElementById('calcSignupBtn');
|
const signupBtn = document.getElementById('calcSignupBtn');
|
||||||
if (signupBtn) signupBtn.href = `https://clickbaitpays.me/?ref=${refUser}`;
|
if (signupBtn) signupBtn.href = `https://clickbaitpays.me/?ref=${refUser}`;
|
||||||
|
const bannerBtn = document.getElementById('bannerSignupBtn');
|
||||||
|
if (bannerBtn) bannerBtn.href = `https://clickbaitpays.me/?ref=${refUser}`;
|
||||||
|
const heroBtn = document.getElementById('heroSignupBtn');
|
||||||
|
if (heroBtn) heroBtn.href = `https://clickbaitpays.me/?ref=${refUser}`;
|
||||||
const qrImg = document.getElementById('refQrCode');
|
const qrImg = document.getElementById('refQrCode');
|
||||||
if (qrImg) qrImg.src = `https://api.qrserver.com/v1/create-qr-code/?size=200x200&data=${encodeURIComponent(shareUrl)}`;
|
if (qrImg) qrImg.src = `https://api.qrserver.com/v1/create-qr-code/?size=200x200&data=${encodeURIComponent(shareUrl)}`;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user