body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background: #4b9c56;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    height: 100vh;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

h1 {
    font-size: 72px;
    margin: 0;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.game-button {
    background: #f3bd12;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s, transform 0.2s;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.game-button:hover {
    background: #e0a90f;
    transform: scale(1.05);
}