* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Georgia", serif;
    background: #f5f0e8;
    color: #2c2c2c;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

header h1 {
    font-size: 2.5rem;
    color: #3a3226;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #6b5e50;
    font-style: italic;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.game-card {
    display: block;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.game-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.game-card h2 {
    font-size: 1.3rem;
    color: #3a3226;
    margin-bottom: 0.5rem;
}

.game-card p {
    font-size: 0.95rem;
    color: #6b5e50;
    line-height: 1.5;
}
