body {
    background: #111;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 30px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff;
}

.tagline {
    opacity: 0.7;
    margin-bottom: 30px;
}

.games-grid {
    width: 900px;
    max-width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.game-card {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #00eaff;
}

.game-card h2 {
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.game-card p {
    opacity: 0.8;
    margin-bottom: 15px;
}

.btn3d {
    display: inline-block;
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s ease;
}

.btn3d:hover {
    background: #45a049;
}
