456 lines
14 KiB
HTML
456 lines
14 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>RetroGame Portal - Play Your Favorite Games</title>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Press Start 2P', cursive, Arial, sans-serif;
|
|
}
|
|
|
|
:root {
|
|
--primary-color: #ff0055;
|
|
--secondary-color: #00ffff;
|
|
--accent-color: #ffcc00;
|
|
--dark-bg: #1a1a2e;
|
|
--light-text: #ffffff;
|
|
--game-card-bg: rgba(30, 30, 60, 0.8);
|
|
}
|
|
|
|
body {
|
|
background: linear-gradient(135deg, var(--dark-bg), #16213e);
|
|
color: var(--light-text);
|
|
min-height: 100vh;
|
|
padding: 20px;
|
|
position: relative;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image:
|
|
radial-gradient(circle at 15% 25%, rgba(255, 0, 85, 0.1) 2px, transparent 3px),
|
|
radial-gradient(circle at 85% 75%, rgba(0, 255, 255, 0.1) 2px, transparent 3px);
|
|
background-size: 40px 40px;
|
|
z-index: -1;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
header {
|
|
text-align: center;
|
|
padding: 30px 20px;
|
|
position: relative;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.logo-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.logo-svg {
|
|
width: 150px;
|
|
height: auto;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.8rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 3px;
|
|
margin-bottom: 10px;
|
|
text-shadow:
|
|
0 0 5px var(--primary-color),
|
|
0 0 10px var(--primary-color),
|
|
0 0 15px var(--secondary-color);
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 1.2rem;
|
|
color: var(--accent-color);
|
|
margin-bottom: 30px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.tagline {
|
|
font-size: 1rem;
|
|
max-width: 700px;
|
|
margin: 0 auto 30px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.games-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
|
gap: 30px;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.game-card {
|
|
background: var(--game-card-bg);
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
box-shadow:
|
|
0 10px 20px rgba(0, 0, 0, 0.5),
|
|
inset 0 0 15px rgba(255, 255, 255, 0.1);
|
|
transition: all 0.3s ease;
|
|
border: 2px solid var(--primary-color);
|
|
position: relative;
|
|
}
|
|
|
|
.game-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow:
|
|
0 15px 30px rgba(255, 0, 85, 0.4),
|
|
inset 0 0 20px rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.game-card::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: -2px;
|
|
left: -2px;
|
|
right: -2px;
|
|
bottom: -2px;
|
|
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
|
|
z-index: -1;
|
|
border-radius: 17px;
|
|
animation: pulse 3s infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0% { opacity: 0.7; }
|
|
50% { opacity: 1; }
|
|
100% { opacity: 0.7; }
|
|
}
|
|
|
|
.game-icon {
|
|
height: 200px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: linear-gradient(45deg, #3a3a6a, #1e1e4d);
|
|
padding: 20px;
|
|
}
|
|
|
|
.game-icon svg {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.game-title {
|
|
text-align: center;
|
|
padding: 20px;
|
|
font-size: 1.5rem;
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
.game-description {
|
|
padding: 0 20px 20px;
|
|
font-size: 0.8rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.play-btn {
|
|
display: block;
|
|
width: calc(100% - 40px);
|
|
margin: 20px auto;
|
|
padding: 15px;
|
|
background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
|
|
color: white;
|
|
border: none;
|
|
border-radius: 50px;
|
|
font-size: 1rem;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
font-weight: bold;
|
|
box-shadow:
|
|
0 5px 15px rgba(255, 0, 85, 0.4),
|
|
inset 0 -3px 10px rgba(0, 0, 0, 0.3);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.play-btn:hover {
|
|
transform: scale(1.05);
|
|
box-shadow:
|
|
0 8px 25px rgba(255, 0, 85, 0.6),
|
|
inset 0 -3px 10px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.features {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 30px;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.feature-card {
|
|
background: rgba(30, 30, 60, 0.7);
|
|
border-radius: 15px;
|
|
padding: 25px;
|
|
text-align: center;
|
|
width: 180px;
|
|
box-shadow:
|
|
0 5px 15px rgba(0, 0, 0, 0.3),
|
|
inset 0 -3px 10px rgba(255, 255, 255, 0.1);
|
|
border: 1px solid var(--secondary-color);
|
|
}
|
|
|
|
.feature-card i {
|
|
font-size: 2.5rem;
|
|
color: var(--secondary-color);
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.feature-title {
|
|
font-size: 0.9rem;
|
|
margin-bottom: 10px;
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
padding: 30px;
|
|
border-top: 2px solid var(--primary-color);
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.footer-text {
|
|
font-size: 0.9rem;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.social-icons {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.social-icon {
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50%;
|
|
background: var(--dark-bg);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 1.5rem;
|
|
color: var(--secondary-color);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.social-icon:hover {
|
|
transform: translateY(-5px);
|
|
background: var(--primary-color);
|
|
box-shadow:
|
|
0 5px 15px rgba(255, 0, 85, 0.4),
|
|
inset 0 -3px 10px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
/* Responsive design */
|
|
@media (max-width: 768px) {
|
|
h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.games-grid {
|
|
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
|
}
|
|
|
|
.feature-card {
|
|
width: 140px;
|
|
padding: 15px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
h1 {
|
|
font-size: 1.6rem;
|
|
}
|
|
|
|
.games-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.logo-svg {
|
|
width: 120px;
|
|
}
|
|
}
|
|
|
|
/* Retro scanlines effect */
|
|
body::after {
|
|
content: "";
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background:
|
|
linear-gradient(rgba(34, 34, 51, 0.2) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(34, 34, 51, 0.2) 1px, transparent 1px);
|
|
background-size:
|
|
80px 80px,
|
|
80px 80px;
|
|
pointer-events: none;
|
|
z-index: 9999;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
<div class="logo-container">
|
|
<!-- Retro Game Logo SVG -->
|
|
<svg class="logo-svg" viewBox="0 0 200 100">
|
|
<rect x="5" y="5" width="190" height="90" rx="15" fill="#1a1a2e" stroke="#ffcc00" stroke-width="3"/>
|
|
<rect x="25" y="25" width="150" height="40" rx="8" fill="#3a3a6a"/>
|
|
<text x="100" y="55" text-anchor="middle" font-size="24" fill="#ffcc00">FERTIGame</text>
|
|
<rect x="75" y="65" width="50" height="8" rx="4" fill="#ffcc00"/>
|
|
</svg>
|
|
</div>
|
|
<h1>FertiGame Portal</h1>
|
|
<p class="subtitle">Play My Strange Games Online</p>
|
|
<p class="tagline">A collection of "AAA" arcade games built with modern AI and Fertig-technology. All games are 100% playable in your browser!</p>
|
|
</header>
|
|
|
|
<div class="games-grid">
|
|
<!-- Game Card 1 -->
|
|
<div class="game-card">
|
|
<div class="game-icon">
|
|
<img src="coyote-gulch.png" style="width: 100%; height: 100%; object-fit: contain;" />
|
|
</div>
|
|
<h3 class="game-title">Legends of Coyote Gulch</h3>
|
|
<p class="game-description">You are Sheriff Emily, cleaning up the town from vagrants and rival businesses.</p>
|
|
<a href="legends/" class="play-btn">PLAY NOW</a>
|
|
</div>
|
|
|
|
<!-- Game Card 2 -->
|
|
<div class="game-card">
|
|
<div class="game-icon">
|
|
<img src="zenith-vector.png" style="width: 100%; height: 100%; object-fit: contain;" />
|
|
</div>
|
|
<h3 class="game-title">Zenith Vector</h3>
|
|
<p class="game-description">Science Fiction Cyberpunk Vertical Shooter.</p>
|
|
<a href="Zenith-Vector/" class="play-btn">PLAY NOW</a>
|
|
</div>
|
|
|
|
<!-- Game Card 3 -->
|
|
<div class="game-card">
|
|
<div class="game-icon">
|
|
<img src="Fablewood.png" style="width: 100%; height: 100%; object-fit: contain;" />
|
|
</div>
|
|
<h3 class="game-title">Fablewood</h3>
|
|
<p class="game-description">Super Casual Survival Crafting.</p>
|
|
<a href="Fablewood/" class="play-btn">PLAY NOW</a>
|
|
</div>
|
|
|
|
<!-- Game Card 3 -->
|
|
<!--<div class="game-card">
|
|
<div class="game-icon">
|
|
<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
<rect x="25" y="45" width="15" height="15" fill="#ffcc00"/>
|
|
<rect x="45" y="45" width="15" height="15" fill="#ffcc00"/>
|
|
<rect x="60" y="27.5" width="15" height="30" fill="#ffcc00"/>
|
|
<rect x="27.5" y="27.5" width="30" height="15" fill="#ffcc00"/>
|
|
</svg>
|
|
</div>
|
|
<h3 class="game-title">Tetris</h3>
|
|
<p class="game-description">Stack the falling blocks to complete lines and score points!</p>
|
|
<a href="#" class="play-btn">PLAY NOW</a>
|
|
</div>-->
|
|
</div>
|
|
|
|
<div class="features">
|
|
<div class="feature-card">
|
|
<i class="fas fa-gamepad"></i>
|
|
<h4 class="feature-title">100% Browser Based</h4>
|
|
<p>No downloads needed!</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<i class="fas fa-mobile-alt"></i>
|
|
<h4 class="feature-title">Fully Responsive</h4>
|
|
<p>Play on any device!</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<i class="fas fa-bolt"></i>
|
|
<h4 class="feature-title">Fast & Smooth</h4>
|
|
<p>Optimized for performance</p>
|
|
</div>
|
|
|
|
<div class="feature-card">
|
|
<i class="fas fa-shield-alt"></i>
|
|
<h4 class="feature-title">Safe & Secure</h4>
|
|
<p>No personal data required</p>
|
|
</div>
|
|
</div>
|
|
|
|
<footer>
|
|
<p class="footer-text">© 2025 FertiGame Portal - All Rights Reserved</p>
|
|
<p class="footer-text">Made with ❤️ for retro gaming enthusiasts</p>
|
|
|
|
<div class="social-icons">
|
|
<a href="#" class="social-icon"><i class="fab fa-facebook-f"></i></a>
|
|
<a href="#" class="social-icon"><i class="fab fa-twitter"></i></a>
|
|
<a href="#" class="social-icon"><i class="fab fa-instagram"></i></a>
|
|
<a href="#" class="social-icon"><i class="fab fa-youtube"></i></a>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
|
|
<script>
|
|
// Simple animation for game cards on load
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const gameCards = document.querySelectorAll('.game-card');
|
|
|
|
gameCards.forEach((card, index) => {
|
|
setTimeout(() => {
|
|
card.style.opacity = '1';
|
|
card.style.transform = 'translateY(0)';
|
|
}, 200 * index);
|
|
});
|
|
|
|
// Add hover effect to play buttons
|
|
const playButtons = document.querySelectorAll('.play-btn');
|
|
|
|
playButtons.forEach(button => {
|
|
button.addEventListener('mouseenter', function() {
|
|
this.style.background = 'linear-gradient(to right, #ffcc00, #ff0055)';
|
|
this.style.color = '#1a1a2e';
|
|
});
|
|
|
|
button.addEventListener('mouseleave', function() {
|
|
this.style.background = 'linear-gradient(to right, var(--primary-color), var(--secondary-color))';
|
|
this.style.color = '#ffffff';
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |