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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 800px;
    width: 100%;
    padding: 20px;
}

h1 {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.game-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.game-link {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.game-link:hover {
    transform: translateY(-5px);
}

.game-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.game-card h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.game-card p {
    color: #666;
    font-size: 1em;
}
