Files
landingpage/games/index.html
2026-02-06 22:14:01 +01:00

220 lines
6.2 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Helios Arcade</title>
<style>
/* --- Grundlegendes Styling & Reset --- */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
body {
background-color: #121212; /* Sehr dunkles Grau, fast Schwarz */
color: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
padding: 40px 20px;
}
/* --- Header Bereich --- */
.status {
color: #0ea5e9; /* Das Blau vom "ONLINE" Status */
font-size: 0.8rem;
font-weight: bold;
letter-spacing: 1px;
margin-bottom: 20px;
text-transform: uppercase;
}
h1 {
font-size: 3rem;
margin-bottom: 10px;
letter-spacing: 2px;
text-transform: uppercase;
}
p.subtitle {
color: #888;
max-width: 600px;
text-align: center;
margin-bottom: 30px;
line-height: 1.5;
}
/* --- Terminal Block --- */
.terminal-container {
background-color: #0a0a0a;
border: 1px solid #333;
border-radius: 8px;
padding: 15px 20px;
font-family: 'Courier New', Courier, monospace;
width: 100%;
max-width: 700px;
margin-bottom: 50px;
box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.terminal-text {
color: #e0e0e0;
}
.prompt {
color: #22c55e; /* Terminal Grün */
}
.cursor {
display: inline-block;
width: 8px;
height: 18px;
background-color: #ccc;
animation: blink 1s infinite;
vertical-align: middle;
margin-left: 5px;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
/* --- Grid für die Spiele --- */
.games-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
width: 100%;
max-width: 900px;
}
/* --- Spiel Karte (Card Style) --- */
.game-card {
background-color: #1e1e1e;
border: 1px solid #333;
border-radius: 12px;
padding: 25px;
text-decoration: none;
color: white;
transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
display: flex;
align-items: center;
gap: 20px;
}
.game-card:hover {
transform: translateY(-5px);
border-color: #555;
background-color: #252525;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
/* --- Icons für die Spiele --- */
.icon-box {
width: 60px;
height: 60px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 30px;
flex-shrink: 0;
}
/* Individuelle Farben für die Spiele */
.star-wars .icon-box { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.football .icon-box { background: linear-gradient(135deg, #11998e, #38ef7d); }
.chess .icon-box { background: linear-gradient(135deg, #8e2de2, #4a00e0); }
.future .icon-box { background: linear-gradient(135deg, #434343, #000000); border: 1px dashed #666; }
.card-content h3 {
margin-bottom: 5px;
font-size: 1.2rem;
}
.card-content span {
font-size: 0.9rem;
color: #888;
}
/* --- Zurück Button --- */
.back-link {
margin-top: 50px;
color: #666;
text-decoration: none;
font-size: 0.9rem;
transition: color 0.2s;
}
.back-link:hover {
color: white;
}
</style>
</head>
<body>
<div class="status">Status: Arcade Mode</div>
<h1>HELIOS ARCADE</h1>
<p class="subtitle">
Willkommen in der Sammlung. Wähle eine Simulation, um zu starten.
</p>
<div class="terminal-container">
<span class="prompt">[gast@helios arcade ~]$</span>
<span class="terminal-text">./list-games.sh --all</span><span class="cursor"></span>
</div>
<div class="games-grid">
<a href="starwars.html" class="game-card star-wars">
<div class="icon-box">🚀</div> <div class="card-content">
<h3>Trench Run</h3>
<span>Star Wars Simulation</span>
</div>
</a>
<a href="fussball.html" class="game-card football">
<div class="icon-box"></div>
<div class="card-content">
<h3>Penalty Shootout</h3>
<span>Fussball Arcade</span>
</div>
</a>
<a href="schach.html" class="game-card chess">
<div class="icon-box">♟️</div>
<div class="card-content">
<h3>Meister Schach</h3>
<span>Strategie & Logik</span>
</div>
</a>
<a href="barcafinal.html" class="game-card chess">
<div class="icon-box">♟️</div>
<div class="card-content">
<h3>Barcelona Quiz</h3>
<span>Quiz & Rätsel</span>
</div>
</a>
<div class="game-card future" style="cursor: default; opacity: 0.7;">
<div class="icon-box">?</div>
<div class="card-content">
<h3>Coming Soon</h3>
<span>In Entwicklung...</span>
</div>
</div>
</div>
<a href="index.html" class="back-link">← Zurück zum Dashboard</a>
</body>
</html>