.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #4CAF50;
    border-radius: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #ff5252, #2e7d32); /* Degradado navideño rojo y verde */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin: 20px auto;
    max-width: 700px;
    position: relative;
    overflow: hidden;
}

/* Decoraciones festivas */
.game-container::before {
    content: '❄️🎄🎅🎅🎄🎄🎈🎈🎈🎄🎄🎄❄️'; /* Más arbolitos */
    font-size: 3rem;
    position: absolute;
    top: -30px;
    left: -30px;
    opacity: 0.8;
}
.game-container::after {
    content: '❄️❄️❄️❄️❄️❄️❄️❄️❄️❄️❄️❄️❄️❄️❄️❄️❄️❄️❄️❄️❄️❄️'; /* Más copos de nieve */
    font-size: 2rem;
    position: absolute;
    bottom: -30px;
    right: -30px;
    opacity: 0.8;
}

/* Añadiendo más elementos navideños */
.extra-decorations {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 2rem;
}
.extra-decorations .santa {
    content: '🎅🎅🎅🎅🎅🎅🎅🎅🎅🎅🎅';
    display: inline-block;
    margin: 0 5px;
}
.extra-decorations .ball {
    content: '🎈🎈🎈🎈🎈🎈🎈🎈🎈🎈🎈🎈'; /* Bolitas navideñas */
    display: inline-block;
    margin: 0 5px;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 10px;
    margin-top: 20px;
}

.cell {
    width: 100px;
    height: 100px;
    background: #fff; /* Fondo blanco para celdas */
    border: 2px solid #2e7d32; /* Bordes verdes */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5em;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    color: #ff5252; /* Color rojo para el contenido */
    border-radius: 10px;
    box-shadow: #040702;
}

.cell:hover {
    background: #81c784; /* Verde suave al hacer hover */
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#message {
    margin-top: 15px;
    font-weight: bold;
    color: hsl(0, 82%, 2%); /* Rojo para mensajes */
    font-size: 1.5em;
    transition: opacity 0.5s;
}

button {
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    background-color: #ff5252; /* Rojo brillante */
    color: white;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

button:hover {
    background-color: #c2185b; /* Rojo más oscuro al hacer hover */
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}
 .navideño{
    color: #274603;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px #ff0000;
}
.main-title{
    text-align: center;
    font-size: 4rem;
    color: #2e7d32;


}