/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Header Styles */
header {
    background-color: #4a90e2;
    color: white;
    padding: 40px 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

header h1 {
    margin: 0;
    font-size: 3em;
}

header p {
    font-size: 1.2em;
}

/* Main Content Styles */
main {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Game Card Styles */
.game-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-card h2 {
    color: #4a90e2;
    font-size: 2em;
}

.game-card p {
    font-size: 1em;
    line-height: 1.5;
}

/* Play Button Styles */
.play-button {
    display: inline-block;
    background-color: #50e3c2;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.play-button:hover {
    background-color: #48c9b0;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
}