354 lines
11 KiB
HTML
354 lines
11 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 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> |