/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #121212;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.logo {
    width: 200px;
    border-radius: 20px; 
    margin-bottom: 20px;
}

.under-construction {
    width: 300px;
    border-radius: 20px; 
    margin-bottom: 30px;
}

.games h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background-color: #ffcc00;
    color: #000;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background-color: #e6b800;
}
