﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #1e3a5f; /* Dark background */
    color: #f0f4f8;
}

.container {
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.game-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.game-card {
    display: block;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #1e3a5f;
    transition: transform 0.2s, box-shadow 0.2s;
}

.game-card.godot {
    background-color: #599b4d; /* Godot Green */
}

.game-card.clicker {
    background-color: #ffd700; /* Gold/Yellow */
}

.game-card.cheeze {
    background-color: #ff00d5; /* Gold/Yellow */
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.game-card h2 {
    margin-top: 0;
}