Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
313 changes: 313 additions & 0 deletions docs/assets/homepage.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,313 @@
/* Homepage specific styles */
.homepage-container {
display: flex;
flex-direction: column;
min-height: 100vh;
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
color: #00ff41;
font-family: 'Courier New', monospace;
}

.homepage-header {
display: flex;
justify-content: right;
align-items: center;
padding: 20px 40px;
}

.nav-links {
display: flex;
gap: 30px;
align-items: center;
}

.nav-link {
color: #00ff41;
text-decoration: none;
font-size: 1.1rem;
font-weight: bold;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
padding: 10px 15px;
border: 2px solid transparent;
border-radius: 5px;
}

.nav-link:hover {
color: #00ffff;
border-color: #00ff41;
background: rgba(0, 255, 65, 0.1);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 255, 65, 0.3);
}

.nav-icon {
font-size: 1.2rem;
}

.hero-section {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 60px 40px;
text-align: center;
}

.banner-container {
margin-bottom: 40px;
}

.banner-img {
max-width: 800px;
width: 100%;
height: auto;
filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.5));
animation: gentle-glow 3s ease-in-out infinite alternate;
}

@keyframes gentle-glow {
0% { filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.5)); }
100% { filter: drop-shadow(0 0 30px rgba(0, 255, 65, 0.7)); }
}

.hero-subtitle {
font-size: 1.5rem;
color: #a0ffa0;
margin-bottom: 30px;
max-width: 800px;
line-height: 1.6;
text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.hero-description {
font-size: 1.1rem;
color: #cccccc;
margin-bottom: 50px;
max-width: 600px;
line-height: 1.7;
}

.cta-section {
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
}

.download-btn {
background: linear-gradient(145deg, #00ff41, #00cc33);
color: #000;
border: 3px solid #00ff41;
padding: 20px 50px;
font-size: 1.3rem;
font-weight: bold;
text-decoration: none;
border-radius: 10px;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 15px;
box-shadow: 0 5px 20px rgba(0, 255, 65, 0.4);
text-transform: uppercase;
letter-spacing: 2px;
position: relative;
overflow: hidden;
}

.download-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: left 0.6s;
}

.download-btn:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 255, 65, 0.6);
background: linear-gradient(145deg, #33ff66, #00ff41);
}

.download-btn:hover::before {
left: 100%;
}

.download-icon {
font-size: 1.5rem;
}

.game-preview {
margin: 30px 0;
display: flex;
justify-content: center;
align-items: center;
}

.game-preview-gif {
max-width: 800px;
width: 100%;
height: auto;
box-shadow: 0 10px 30px rgba(0, 255, 65, 0.4);
transition: all 0.3s ease;
filter: drop-shadow(0 0 15px rgba(0, 255, 65, 0.3));
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 40px;
max-width: 800px;
width: 100%;
}

.feature-card {
background: rgba(0, 0, 0, 0.6);
padding: 20px;
max-width: 300px;
text-align: center;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
box-shadow: 0 10px 10px rgba(0, 255, 65, 0.4);
transition: all 0.3s ease;
filter: drop-shadow(0 0 15px rgba(0, 255, 65, 0.3));
}

/* .feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 255, 65, 0.3);
border-color: #00ffff;
background: rgba(0, 0, 0, 0.8);
} */

.feature-icon {
font-size: 3rem;
margin-bottom: 20px;
display: block;
text-shadow: 0 0 15px currentColor;
}

.feature-title {
font-size: 1.3rem;
font-weight: bold;
color: #00ff41;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 1px;
}

.feature-description {
color: #cccccc;
line-height: 1.6;
font-size: 1rem;
}

.footer-section {
background: rgba(0, 0, 0, 0.9);
border-top: 2px solid #00ff41;
padding: 30px 40px;
text-align: center;
}

.footer-links {
display: flex;
justify-content: center;
gap: 40px;
margin-bottom: 20px;
}

.footer-link {
color: #00ff41;
text-decoration: none;
font-size: 1.1rem;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
}

.footer-link:hover {
color: #00ffff;
text-shadow: 0 0 10px currentColor;
}

.copyright {
color: #666;
font-size: 0.9rem;
margin-top: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
.homepage-header {
flex-direction: column;
gap: 20px;
padding: 20px;
}

.nav-links {
flex-wrap: wrap;
justify-content: center;
gap: 15px;
}

.hero-section {
padding: 40px 20px;
}

.hero-subtitle {
font-size: 1.2rem;
}

.hero-description {
font-size: 1rem;
}

.download-btn {
padding: 15px 30px;
font-size: 1.1rem;
}

.game-preview-gif {
max-width: 300px;
border-width: 2px;
}

.features-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.footer-links {
flex-direction: column;
gap: 20px;
}

.banner-img {
max-width: 90%;
}
}

/* ASCII art styling for retro feel */
.ascii-decoration {
font-family: monospace;
font-size: 0.8rem;
color: #00ff41;
opacity: 0.3;
line-height: 1;
margin: 20px 0;
}

/* Cursor blink animation for typewriter effect */
@keyframes blink {
0%, 50% { border-right-color: #00ff41; }
51%, 100% { border-right-color: transparent; }
}
Loading
Loading