* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-align: center;
    width: 350px;
}

.game-image {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 15px;
}

h2 {
    margin-bottom: 15px;
    color: #14532d;
}

p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #555;
}

a.button {
    display: inline-block;
    background: #16a34a;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.3s;
}

a.button:hover {
    background: #14532d;
}

footer {
    background-color: #14532d;
    text-align: center;
    padding: 20px;
    color: #c7f9cc;
}

footer a {
    color: #86efac;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
