345 lines
10 KiB
HTML
345 lines
10 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 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">> ADVANCED_NEURAL_TRAINING <</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> |