Add cyberpunk hero section mockups

Three different cyberpunk design options:
- Option 1: Neon Matrix (green terminal aesthetic)
- Option 2: Purple Synthwave (80s retro-futuristic)  CHOSEN
- Option 3: Terminal Hacker (command line interface)

Each mockup includes:
- Complete responsive design
- Cyberpunk typography and effects
- Animated backgrounds and neon glows
- Status panels with futuristic styling
- Feature highlights with hover effects

Ready for Option 2 implementation in separate branch
This commit is contained in:
dilgenfritz 2025-11-03 06:13:33 -06:00
parent e66d89e1a1
commit 253b81277e
3 changed files with 1091 additions and 0 deletions

345
cyberpunk-hero-option1.html Normal file
View File

@ -0,0 +1,345 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cyberpunk Hero Option 1 - Neon Matrix</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&family=Share+Tech+Mono&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #000;
color: #00ff41;
font-family: 'Rajdhani', sans-serif;
overflow-x: hidden;
}
.hero-option1 {
position: relative;
min-height: 100vh;
background:
linear-gradient(45deg, transparent 30%, rgba(0, 255, 65, 0.05) 50%, transparent 70%),
linear-gradient(135deg, #000000 0%, #001a00 30%, #000000 70%, #003300 100%);
overflow: hidden;
}
.matrix-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
repeating-linear-gradient(
90deg,
transparent 0px,
rgba(0, 255, 65, 0.03) 1px,
transparent 2px,
transparent 40px
),
repeating-linear-gradient(
0deg,
transparent 0px,
rgba(0, 255, 65, 0.03) 1px,
transparent 2px,
transparent 40px
);
animation: matrixShift 8s linear infinite;
}
@keyframes matrixShift {
0% { transform: translate(0, 0); }
100% { transform: translate(40px, 40px); }
}
.hero-content {
position: relative;
z-index: 2;
padding: 60px 40px;
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 2fr 1fr;
gap: 60px;
align-items: center;
min-height: 100vh;
}
.hero-title-section {
text-align: left;
}
.hero-title-main {
font-family: 'Orbitron', monospace;
font-size: clamp(3rem, 8vw, 7rem);
font-weight: 900;
color: #00ff41;
text-shadow:
0 0 10px #00ff41,
0 0 20px #00ff41,
0 0 40px #00ff41,
0 4px 8px rgba(0, 0, 0, 0.8);
text-transform: uppercase;
letter-spacing: 4px;
line-height: 0.9;
margin-bottom: 20px;
animation: titlePulse 2s ease-in-out infinite alternate;
}
@keyframes titlePulse {
from {
text-shadow:
0 0 10px #00ff41,
0 0 20px #00ff41,
0 0 40px #00ff41,
0 4px 8px rgba(0, 0, 0, 0.8);
}
to {
text-shadow:
0 0 20px #00ff41,
0 0 40px #00ff41,
0 0 80px #00ff41,
0 4px 8px rgba(0, 0, 0, 0.8);
}
}
.hero-title-accent {
font-family: 'Share Tech Mono', monospace;
font-size: clamp(1rem, 2.5vw, 1.8rem);
color: #00cc33;
font-weight: 400;
text-transform: lowercase;
letter-spacing: 2px;
margin-left: 8px;
opacity: 0.9;
}
.hero-tagline {
margin: 40px 0;
}
.tagline-emphasis {
font-family: 'Rajdhani', sans-serif;
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
color: #ffffff;
text-shadow:
0 0 15px #00ff41,
0 2px 4px rgba(0, 0, 0, 0.8);
text-transform: uppercase;
letter-spacing: 3px;
margin-bottom: 15px;
display: block;
animation: taglineGlow 3s ease-in-out infinite alternate;
}
@keyframes taglineGlow {
from { text-shadow: 0 0 15px #00ff41, 0 2px 4px rgba(0, 0, 0, 0.8); }
to { text-shadow: 0 0 30px #00ff41, 0 0 40px #00ff41, 0 2px 4px rgba(0, 0, 0, 0.8); }
}
.tagline-subtitle {
font-family: 'Share Tech Mono', monospace;
font-size: 1.2rem;
color: #00cc33;
font-weight: 400;
text-transform: uppercase;
letter-spacing: 1px;
opacity: 0.8;
}
.hero-features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin: 40px 0;
}
.hero-feature {
background: rgba(0, 255, 65, 0.1);
border: 1px solid #00ff41;
border-radius: 0;
padding: 20px;
text-align: center;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.hero-feature::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.2), transparent);
transition: left 0.5s ease;
}
.hero-feature:hover::before {
left: 100%;
}
.hero-feature:hover {
background: rgba(0, 255, 65, 0.2);
box-shadow:
0 0 20px #00ff41,
inset 0 0 20px rgba(0, 255, 65, 0.1);
transform: translateY(-2px);
}
.feature-icon {
font-size: 2rem;
margin-bottom: 10px;
display: block;
}
.feature-text {
font-family: 'Rajdhani', sans-serif;
font-size: 1.1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
}
.hero-status-panel {
display: flex;
flex-direction: column;
gap: 30px;
}
.status-card {
background: rgba(0, 0, 0, 0.8);
border: 1px solid #00ff41;
border-radius: 0;
padding: 25px;
text-align: center;
position: relative;
overflow: hidden;
}
.status-card::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, #00ff41, transparent);
animation: scanLine 2s linear infinite;
}
@keyframes scanLine {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
.status-label {
font-family: 'Share Tech Mono', monospace;
font-size: 0.9rem;
color: #00cc33;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 15px;
}
.status-value {
font-family: 'Orbitron', monospace;
font-size: 2.5rem;
font-weight: 700;
color: #00ff41;
text-shadow: 0 0 15px #00ff41;
margin-bottom: 15px;
}
.status-bar {
height: 3px;
background: rgba(0, 255, 65, 0.3);
position: relative;
overflow: hidden;
}
.status-progress {
height: 100%;
background: linear-gradient(90deg, #00ff41, #00cc33);
box-shadow: 0 0 10px #00ff41;
}
@media (max-width: 1024px) {
.hero-content {
grid-template-columns: 1fr;
text-align: center;
}
.hero-title-section {
text-align: center;
}
}
</style>
</head>
<body>
<div class="hero-option1">
<div class="matrix-bg"></div>
<div class="hero-content">
<div class="hero-title-section">
<h1 class="hero-title-main">
GOONER TRAINING<br>
<span class="hero-title-accent">// academy_v3.0</span>
</h1>
<div class="hero-tagline">
<span class="tagline-emphasis">MASTER YOUR DEDICATION</span>
<span class="tagline-subtitle">&gt; ADVANCED_NEURAL_TRAINING &lt;</span>
</div>
<div class="hero-features">
<div class="hero-feature">
<span class="feature-icon">🎬</span>
<span class="feature-text">Multi-Stream Interface</span>
</div>
<div class="hero-feature">
<span class="feature-icon">📊</span>
<span class="feature-text">Neural Analytics</span>
</div>
<div class="hero-feature">
<span class="feature-icon">🏆</span>
<span class="feature-text">Achievement Protocol</span>
</div>
<div class="hero-feature">
<span class="feature-icon">🎵</span>
<span class="feature-text">Audio Matrix</span>
</div>
</div>
</div>
<div class="hero-status-panel">
<div class="status-card">
<div class="status-label">TOTAL_XP</div>
<div class="status-value">1,337</div>
<div class="status-bar">
<div class="status-progress" style="width: 65%"></div>
</div>
</div>
<div class="status-card">
<div class="status-label">SESSION_TIME</div>
<div class="status-value">42:13</div>
</div>
<div class="status-card">
<div class="status-label">NEURAL_SYNC</div>
<div class="status-value">98%</div>
<div class="status-bar">
<div class="status-progress" style="width: 98%"></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>

354
cyberpunk-hero-option2.html Normal file
View File

@ -0,0 +1,354 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cyberpunk Hero Option 2 - Purple Synthwave</title>
<link href="https://fonts.googleapis.com/css2?family=Audiowide&family=Electrolize:wght@400&family=Michroma&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #000;
color: #ff00ff;
font-family: 'Electrolize', sans-serif;
overflow-x: hidden;
}
.hero-option2 {
position: relative;
min-height: 100vh;
background:
linear-gradient(45deg, #0a0015 0%, #1a0030 25%, #2d0060 50%, #1a0030 75%, #0a0015 100%);
overflow: hidden;
}
.synthwave-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
linear-gradient(transparent 50%, rgba(255, 0, 255, 0.05) 50%),
repeating-linear-gradient(
0deg,
transparent,
transparent 98px,
rgba(255, 0, 255, 0.1) 100px
);
animation: synthwaveMove 6s linear infinite;
}
@keyframes synthwaveMove {
0% { transform: translateY(0); }
100% { transform: translateY(100px); }
}
.neon-grid {
position: absolute;
top: 50%;
left: 50%;
width: 120%;
height: 120%;
transform: translate(-50%, -50%) perspective(1000px) rotateX(60deg);
background-image:
linear-gradient(rgba(255, 0, 255, 0.3) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 0, 255, 0.3) 1px, transparent 1px);
background-size: 50px 50px;
animation: gridFloat 8s ease-in-out infinite alternate;
}
@keyframes gridFloat {
from { transform: translate(-50%, -50%) perspective(1000px) rotateX(60deg) translateZ(0); }
to { transform: translate(-50%, -50%) perspective(1000px) rotateX(60deg) translateZ(20px); }
}
.hero-content {
position: relative;
z-index: 2;
padding: 60px 40px;
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 2fr 1fr;
gap: 60px;
align-items: center;
min-height: 100vh;
}
.hero-title-section {
text-align: left;
}
.hero-title-main {
font-family: 'Michroma', monospace;
font-size: clamp(3rem, 8vw, 7rem);
font-weight: 400;
color: #ff00ff;
text-shadow:
0 0 20px #ff00ff,
0 0 40px #ff00ff,
0 0 80px #ff00ff,
0 4px 8px rgba(0, 0, 0, 0.8);
text-transform: uppercase;
letter-spacing: 8px;
line-height: 0.8;
margin-bottom: 30px;
animation: neonFlicker 4s ease-in-out infinite;
}
@keyframes neonFlicker {
0%, 18%, 22%, 25%, 53%, 57%, 100% {
text-shadow:
0 0 20px #ff00ff,
0 0 40px #ff00ff,
0 0 80px #ff00ff,
0 4px 8px rgba(0, 0, 0, 0.8);
}
20%, 24%, 55% {
text-shadow:
0 0 10px #ff00ff,
0 0 20px #ff00ff,
0 0 40px #ff00ff,
0 4px 8px rgba(0, 0, 0, 0.8);
}
}
.hero-title-accent {
font-family: 'Electrolize', sans-serif;
font-size: clamp(1rem, 2.5vw, 1.8rem);
color: #00ffff;
font-weight: 400;
text-transform: lowercase;
letter-spacing: 4px;
margin-left: 12px;
text-shadow: 0 0 10px #00ffff;
}
.hero-tagline {
margin: 40px 0;
}
.tagline-emphasis {
font-family: 'Audiowide', cursive;
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 400;
color: #ffffff;
text-shadow:
0 0 20px #ff00ff,
0 0 40px #ff00ff,
0 2px 4px rgba(0, 0, 0, 0.8);
text-transform: uppercase;
letter-spacing: 6px;
margin-bottom: 15px;
display: block;
animation: textGlow 2s ease-in-out infinite alternate;
}
@keyframes textGlow {
from {
text-shadow:
0 0 20px #ff00ff,
0 0 40px #ff00ff,
0 2px 4px rgba(0, 0, 0, 0.8);
}
to {
text-shadow:
0 0 30px #ff00ff,
0 0 60px #ff00ff,
0 0 90px #ff00ff,
0 2px 4px rgba(0, 0, 0, 0.8);
}
}
.tagline-subtitle {
font-family: 'Electrolize', sans-serif;
font-size: 1.2rem;
color: #00ffff;
font-weight: 400;
text-transform: uppercase;
letter-spacing: 2px;
opacity: 0.9;
text-shadow: 0 0 10px #00ffff;
}
.hero-features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 25px;
margin: 40px 0;
}
.hero-feature {
background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.05) 100%);
border: 2px solid;
border-image: linear-gradient(45deg, #ff00ff, #00ffff) 1;
padding: 25px;
text-align: center;
transition: all 0.3s ease;
position: relative;
clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}
.hero-feature:hover {
background: linear-gradient(135deg, rgba(255, 0, 255, 0.2) 0%, rgba(0, 255, 255, 0.1) 100%);
box-shadow:
0 0 30px rgba(255, 0, 255, 0.5),
0 0 60px rgba(0, 255, 255, 0.3);
transform: translateY(-3px);
}
.feature-icon {
font-size: 2rem;
margin-bottom: 12px;
display: block;
filter: hue-rotate(300deg);
}
.feature-text {
font-family: 'Electrolize', sans-serif;
font-size: 1.1rem;
font-weight: 400;
text-transform: uppercase;
letter-spacing: 2px;
color: #ffffff;
}
.hero-status-panel {
display: flex;
flex-direction: column;
gap: 30px;
}
.status-card {
background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(255, 0, 255, 0.1) 100%);
border: 2px solid #ff00ff;
padding: 30px;
text-align: center;
position: relative;
clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
transition: all 0.3s ease;
}
.status-card:hover {
box-shadow:
0 0 20px rgba(255, 0, 255, 0.5),
inset 0 0 20px rgba(255, 0, 255, 0.1);
}
.status-label {
font-family: 'Electrolize', sans-serif;
font-size: 0.9rem;
color: #00ffff;
text-transform: uppercase;
letter-spacing: 3px;
margin-bottom: 15px;
text-shadow: 0 0 10px #00ffff;
}
.status-value {
font-family: 'Michroma', monospace;
font-size: 2.5rem;
font-weight: 400;
color: #ff00ff;
text-shadow: 0 0 20px #ff00ff;
margin-bottom: 15px;
}
.status-bar {
height: 4px;
background: rgba(255, 0, 255, 0.3);
position: relative;
overflow: hidden;
}
.status-progress {
height: 100%;
background: linear-gradient(90deg, #ff00ff, #00ffff);
box-shadow: 0 0 15px #ff00ff;
animation: progressPulse 2s ease-in-out infinite alternate;
}
@keyframes progressPulse {
from { box-shadow: 0 0 15px #ff00ff; }
to { box-shadow: 0 0 25px #ff00ff, 0 0 35px #00ffff; }
}
@media (max-width: 1024px) {
.hero-content {
grid-template-columns: 1fr;
text-align: center;
}
.hero-title-section {
text-align: center;
}
}
</style>
</head>
<body>
<div class="hero-option2">
<div class="synthwave-bg"></div>
<div class="neon-grid"></div>
<div class="hero-content">
<div class="hero-title-section">
<h1 class="hero-title-main">
GOONER<br>TRAINING<br>
<span class="hero-title-accent">academy.exe</span>
</h1>
<div class="hero-tagline">
<span class="tagline-emphasis">MASTER YOUR DEDICATION</span>
<span class="tagline-subtitle">◤ SYNTHWAVE PROTOCOL ◢</span>
</div>
<div class="hero-features">
<div class="hero-feature">
<span class="feature-icon">🎬</span>
<span class="feature-text">Quad Stream Tech</span>
</div>
<div class="hero-feature">
<span class="feature-icon">📊</span>
<span class="feature-text">Data Analytics</span>
</div>
<div class="hero-feature">
<span class="feature-icon">🏆</span>
<span class="feature-text">Achievement Grid</span>
</div>
<div class="hero-feature">
<span class="feature-icon">🎵</span>
<span class="feature-text">Synth Audio</span>
</div>
</div>
</div>
<div class="hero-status-panel">
<div class="status-card">
<div class="status-label">TOTAL XP</div>
<div class="status-value">1337</div>
<div class="status-bar">
<div class="status-progress" style="width: 65%"></div>
</div>
</div>
<div class="status-card">
<div class="status-label">SESSION TIME</div>
<div class="status-value">42:13</div>
</div>
<div class="status-card">
<div class="status-label">SYNC LEVEL</div>
<div class="status-value">98%</div>
<div class="status-bar">
<div class="status-progress" style="width: 98%"></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>

392
cyberpunk-hero-option3.html Normal file
View File

@ -0,0 +1,392 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cyberpunk Hero Option 3 - Terminal Hacker</title>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;600;700&family=JetBrains+Mono:wght@400;600;700&family=Fira+Code:wght@400;600;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #0a0a0a;
color: #00ff00;
font-family: 'JetBrains Mono', monospace;
overflow-x: hidden;
}
.hero-option3 {
position: relative;
min-height: 100vh;
background: #0a0a0a;
overflow: hidden;
}
.terminal-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
linear-gradient(90deg, transparent 79px, rgba(0, 255, 0, 0.05) 81px, transparent 82px),
linear-gradient(rgba(0, 255, 0, 0.02) 50%, transparent 50%);
background-size: 82px 4px;
animation: terminalScan 3s linear infinite;
}
@keyframes terminalScan {
0% { background-position: 0 0; }
100% { background-position: 82px 4px; }
}
.scanline {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, transparent, #00ff00, transparent);
animation: scanlineMove 2s linear infinite;
}
@keyframes scanlineMove {
0% { top: 0%; opacity: 1; }
100% { top: 100%; opacity: 0; }
}
.hero-content {
position: relative;
z-index: 2;
padding: 60px 40px;
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 2fr 1fr;
gap: 60px;
align-items: center;
min-height: 100vh;
}
.hero-title-section {
text-align: left;
}
.terminal-prompt {
font-family: 'Source Code Pro', monospace;
font-size: 1.2rem;
color: #00ff00;
margin-bottom: 20px;
opacity: 0.8;
}
.cursor {
display: inline-block;
background: #00ff00;
width: 12px;
height: 1.2rem;
animation: cursorBlink 1s step-end infinite;
}
@keyframes cursorBlink {
0%, 50% { opacity: 1; }
51%, 100% { opacity: 0; }
}
.hero-title-main {
font-family: 'Fira Code', monospace;
font-size: clamp(3rem, 8vw, 6.5rem);
font-weight: 700;
color: #00ff00;
text-shadow:
0 0 5px #00ff00,
0 0 10px #00ff00,
0 0 20px #00ff00;
text-transform: uppercase;
letter-spacing: 2px;
line-height: 1.1;
margin-bottom: 20px;
font-feature-settings: 'liga' 1, 'calt' 1;
animation: textFlicker 1.5s ease-in-out infinite alternate;
}
@keyframes textFlicker {
0%, 95% { opacity: 1; }
96%, 100% { opacity: 0.95; }
}
.hero-title-accent {
font-family: 'Source Code Pro', monospace;
font-size: clamp(1rem, 2.5vw, 1.6rem);
color: #ffff00;
font-weight: 600;
text-transform: lowercase;
letter-spacing: 1px;
margin-left: 4px;
text-shadow: 0 0 8px #ffff00;
}
.hero-tagline {
margin: 40px 0;
font-family: 'Source Code Pro', monospace;
}
.tagline-emphasis {
font-size: clamp(1.8rem, 4vw, 3rem);
font-weight: 600;
color: #ffffff;
text-shadow:
0 0 10px #00ff00,
0 2px 4px rgba(0, 0, 0, 0.8);
text-transform: uppercase;
letter-spacing: 4px;
margin-bottom: 15px;
display: block;
animation: textPulse 3s ease-in-out infinite;
}
@keyframes textPulse {
0%, 100% {
text-shadow:
0 0 10px #00ff00,
0 2px 4px rgba(0, 0, 0, 0.8);
}
50% {
text-shadow:
0 0 20px #00ff00,
0 0 30px #00ff00,
0 2px 4px rgba(0, 0, 0, 0.8);
}
}
.tagline-subtitle {
font-size: 1rem;
color: #ffff00;
font-weight: 400;
text-transform: uppercase;
letter-spacing: 2px;
opacity: 0.9;
text-shadow: 0 0 5px #ffff00;
}
.command-line {
background: rgba(0, 0, 0, 0.8);
border: 1px solid #00ff00;
padding: 20px;
margin: 30px 0;
font-family: 'JetBrains Mono', monospace;
font-size: 0.95rem;
line-height: 1.6;
}
.command-line::before {
content: "root@gooner-academy:~$ ";
color: #ffff00;
font-weight: 600;
}
.hero-features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin: 40px 0;
}
.hero-feature {
background: rgba(0, 0, 0, 0.9);
border: 1px solid #00ff00;
border-left: 4px solid #00ff00;
padding: 20px;
transition: all 0.3s ease;
position: relative;
font-family: 'Source Code Pro', monospace;
}
.hero-feature::before {
content: '> ';
color: #ffff00;
font-weight: 600;
margin-right: 8px;
}
.hero-feature:hover {
background: rgba(0, 255, 0, 0.05);
border-color: #ffff00;
border-left-color: #ffff00;
box-shadow:
0 0 15px rgba(0, 255, 0, 0.3);
transform: translateX(5px);
}
.feature-icon {
font-size: 1.5rem;
margin-right: 12px;
display: inline-block;
}
.feature-text {
font-size: 1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
color: #ffffff;
}
.hero-status-panel {
display: flex;
flex-direction: column;
gap: 25px;
}
.status-card {
background: rgba(0, 0, 0, 0.95);
border: 1px solid #00ff00;
border-top: 3px solid #00ff00;
padding: 25px;
font-family: 'JetBrains Mono', monospace;
position: relative;
}
.status-card::before {
content: '[' attr(data-module) ']';
position: absolute;
top: -1px;
left: 10px;
background: #0a0a0a;
padding: 0 8px;
font-size: 0.8rem;
color: #ffff00;
font-weight: 600;
}
.status-label {
font-size: 0.85rem;
color: #00ff00;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 12px;
font-weight: 600;
}
.status-value {
font-size: 2.2rem;
font-weight: 700;
color: #ffffff;
text-shadow: 0 0 10px #00ff00;
margin-bottom: 15px;
font-feature-settings: 'tnum' 1;
}
.status-bar {
height: 3px;
background: rgba(0, 255, 0, 0.3);
position: relative;
overflow: hidden;
}
.status-progress {
height: 100%;
background: linear-gradient(90deg, #00ff00, #ffff00);
box-shadow: 0 0 8px #00ff00;
position: relative;
}
.status-progress::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
animation: progressSweep 2s linear infinite;
}
@keyframes progressSweep {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
@media (max-width: 1024px) {
.hero-content {
grid-template-columns: 1fr;
text-align: left;
}
}
</style>
</head>
<body>
<div class="hero-option3">
<div class="terminal-bg"></div>
<div class="scanline"></div>
<div class="hero-content">
<div class="hero-title-section">
<div class="terminal-prompt">user@system:~$ sudo ./initiate_training.sh<span class="cursor"></span></div>
<h1 class="hero-title-main">
GOONER_TRAINING<br>
<span class="hero-title-accent">//academy_v3.0.exe</span>
</h1>
<div class="hero-tagline">
<span class="tagline-emphasis">MASTER_YOUR_DEDICATION</span>
<span class="tagline-subtitle">NEURAL_ENHANCEMENT_PROTOCOL_ACTIVE</span>
</div>
<div class="command-line">
./execute --mode=advanced --protocol=cybernetic<br>
[INFO] Multi-stream interface: ONLINE<br>
[INFO] Neural analytics: ACTIVE<br>
[SUCCESS] System ready for training sequence
</div>
<div class="hero-features">
<div class="hero-feature">
<span class="feature-icon">🎬</span>
<span class="feature-text">Multi_Stream_Array</span>
</div>
<div class="hero-feature">
<span class="feature-icon">📊</span>
<span class="feature-text">Data_Mining_Core</span>
</div>
<div class="hero-feature">
<span class="feature-icon">🏆</span>
<span class="feature-text">Achievement_Parser</span>
</div>
<div class="hero-feature">
<span class="feature-icon">🎵</span>
<span class="feature-text">Audio_Subprocess</span>
</div>
</div>
</div>
<div class="hero-status-panel">
<div class="status-card" data-module="XP_MODULE">
<div class="status-label">total_experience</div>
<div class="status-value">1337</div>
<div class="status-bar">
<div class="status-progress" style="width: 65%"></div>
</div>
</div>
<div class="status-card" data-module="TIME_SYS">
<div class="status-label">session_duration</div>
<div class="status-value">42:13</div>
</div>
<div class="status-card" data-module="SYNC_CORE">
<div class="status-label">neural_sync_rate</div>
<div class="status-value">98%</div>
<div class="status-bar">
<div class="status-progress" style="width: 98%"></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>