body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #111;
    color: #fff;
    padding: 40px 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 40px;
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.game-card {
    background: #1a1a1a;
    padding: 25px;
    width: 260px;
    border-radius: 12px;
    box-shadow: 0px 0px 20px rgba(0,255,100,0.2);
}

.game-card h2 {
    margin-bottom: 10px;
}

.game-card p {
    color: #bbb;
    margin-bottom: 20px;
}

/* 3D button */
.btn3d {
    padding: 12px 25px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    background: #4CAF50;
    color: white;
    box-shadow: 0px 6px 0px #2e7031;
    transition: all 0.1s ease;
    text-decoration: none;
    display: inline-block;
}

.btn3d:active {
    box-shadow: 0px 2px 0px #2e7031;
    transform: translateY(4px);
}

footer {
    margin-top: 80px;
    color: #777;
}
