Rebrand to match CBP's cyberpunk palette — #080015 bg, cyan accents, magenta highlights, Orbitron font, HUD-style cards
This commit is contained in:
+51
-43
@@ -5,25 +5,28 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Crypto Team Build Network — ClickBaitPays Training Hub</title>
|
||||
<style>
|
||||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Orbitron:wght@600;700;900&display=swap');
|
||||
:root {
|
||||
--bg: #0f1117;
|
||||
--card: #1a1d2e;
|
||||
--card-hover: #212539;
|
||||
--border: #2a2e45;
|
||||
--accent: #6c5ce7;
|
||||
--accent-glow: rgba(108,92,231,0.3);
|
||||
--green: #00d68f;
|
||||
--green-dim: rgba(0,214,143,0.12);
|
||||
--red: #ff6b6b;
|
||||
--yellow: #ffd93d;
|
||||
--orange: #ff9f43;
|
||||
--text: #e4e6f0;
|
||||
--text-dim: #8a8fa8;
|
||||
--text-muted: #5a5e7a;
|
||||
--font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
--radius: 12px;
|
||||
--radius-sm: 8px;
|
||||
}
|
||||
--bg: #080015;
|
||||
--card: #140532;
|
||||
--card-hover: #1e0a4a;
|
||||
--border: rgba(0,229,255,0.12);
|
||||
--accent: #00e5ff;
|
||||
--accent-glow: rgba(0,229,255,0.3);
|
||||
--accent-magenta: #ff00ff;
|
||||
--accent-magenta-glow: rgba(255,0,255,0.3);
|
||||
--green: #00d68f;
|
||||
--green-dim: rgba(0,214,143,0.12);
|
||||
--red: #ff6b6b;
|
||||
--yellow: #ffd93d;
|
||||
--orange: #ff9f43;
|
||||
--text: #e4e6f0;
|
||||
--text-dim: #8a8fa8;
|
||||
--text-muted: #5a5e7a;
|
||||
--font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
||||
--radius: 12px;
|
||||
--radius-sm: 8px;
|
||||
}
|
||||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
html { scroll-behavior: smooth; }
|
||||
body {
|
||||
@@ -37,18 +40,18 @@
|
||||
HERO SECTION — Above the fold
|
||||
══════════════════════════════════════════════════════════ */
|
||||
.hero {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 40px 20px 60px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
background:
|
||||
radial-gradient(ellipse at 20% 50%, rgba(108,92,231,0.12) 0%, transparent 60%),
|
||||
radial-gradient(ellipse at 80% 20%, rgba(0,214,143,0.06) 0%, transparent 50%),
|
||||
var(--bg);
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 40px 20px 60px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
background:
|
||||
radial-gradient(ellipse at 20% 50%, rgba(0,229,255,0.08) 0%, transparent 60%),
|
||||
radial-gradient(ellipse at 80% 20%, rgba(255,0,255,0.05) 0%, transparent 50%),
|
||||
var(--bg);
|
||||
}
|
||||
|
||||
/* Decorative grid lines */
|
||||
@@ -57,8 +60,8 @@
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background-image:
|
||||
linear-gradient(rgba(108,92,231,0.04) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(108,92,231,0.04) 1px, transparent 1px);
|
||||
linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
|
||||
background-size: 60px 60px;
|
||||
pointer-events: none;
|
||||
}
|
||||
@@ -76,13 +79,13 @@
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
background: rgba(108,92,231,0.15);
|
||||
border: 1px solid rgba(108,92,231,0.3);
|
||||
background: rgba(0,229,255,0.1);
|
||||
border: 1px solid rgba(0,229,255,0.25);
|
||||
border-radius: 100px;
|
||||
padding: 8px 20px;
|
||||
font-size: 0.82rem;
|
||||
font-weight: 600;
|
||||
color: #a78bfa;
|
||||
color: #00e5ff;
|
||||
letter-spacing: 0.3px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
@@ -182,15 +185,17 @@
|
||||
}
|
||||
/* Step cards — needs more visual weight */
|
||||
.step-card {
|
||||
background: var(--card);
|
||||
border: 2px solid var(--border);
|
||||
background: rgba(20,5,50,0.6);
|
||||
border: 1px solid rgba(0,229,255,0.12);
|
||||
border-radius: var(--radius);
|
||||
padding: 20px 14px;
|
||||
text-align: center;
|
||||
transition: border-color 0.2s, transform 0.2s;
|
||||
position: relative;
|
||||
}
|
||||
.step-card:hover {
|
||||
border-color: var(--accent);
|
||||
border-color: rgba(0,229,255,0.3);
|
||||
box-shadow: 0 0 15px rgba(0,229,255,0.1);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
.step-num {
|
||||
@@ -200,8 +205,8 @@
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
background: rgba(108,92,231,0.2);
|
||||
color: var(--accent);
|
||||
background: rgba(0,229,255,0.15);
|
||||
color: #00e5ff;
|
||||
font-weight: 800;
|
||||
font-size: 0.85rem;
|
||||
margin-bottom: 10px;
|
||||
@@ -210,6 +215,7 @@
|
||||
font-size: 0.82rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 4px;
|
||||
color: #e4e6f0;
|
||||
}
|
||||
.step-card p {
|
||||
font-size: 0.72rem;
|
||||
@@ -224,8 +230,8 @@
|
||||
justify-content: center;
|
||||
gap: 16px;
|
||||
flex-wrap: wrap;
|
||||
background: linear-gradient(135deg, rgba(108,92,231,0.12), rgba(0,214,143,0.06));
|
||||
border: 1px solid rgba(108,92,231,0.25);
|
||||
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-radius: var(--radius);
|
||||
padding: 18px 24px;
|
||||
margin: 0 auto 32px;
|
||||
@@ -503,7 +509,7 @@
|
||||
.hero-login-link:hover {
|
||||
border-color: var(--accent);
|
||||
color: var(--accent);
|
||||
background: rgba(108,92,231,0.08);
|
||||
background: rgba(0,229,255,0.08);
|
||||
}
|
||||
|
||||
.checkbox-group {
|
||||
@@ -1069,6 +1075,8 @@
|
||||
|
||||
<!-- Headline -->
|
||||
<h1><span class="gradient-text">Turn Clicks Into<br>a Passive Income Machine</span></h1>
|
||||
<!-- HUD corner accent under headline -->
|
||||
<div style="height:2px;width:60px;background:linear-gradient(90deg,transparent,#00e5ff,transparent);margin:0 auto 8px;opacity:0.5;"></div>
|
||||
|
||||
<p class="hero-sub">
|
||||
ClickBaitPays is an ad platform where you run small campaigns,
|
||||
|
||||
Reference in New Issue
Block a user