392 lines
12 KiB
HTML
392 lines
12 KiB
HTML
<!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> |