/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #8ce4f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}

/* Estilos del contenedor del menú de juegos */
.menu-container {
    text-align: center;
    background-color: #ffffff; /* Fondo blanco para el contenedor */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra suave */
    padding: 20px;
}

.menu-title {
    font-family: 'Patrick Hand', cursive;
    font-size: 3rem;
    background: linear-gradient(90deg, #fbc2eb, #ff9a9e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 20px;
}

/* Contenedor para la imagen y los botones */
.content-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Estilos del contenedor de botones */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-right: 20px; /* Espacio entre botones y la imagen */
}

/* Botones de la página de juegos */
.game-btn {
    padding: 15px 25px;
    font-size: 18px;
    border: none;
    border-radius: 12px;
    background-color: #4db6ac;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    width: 200px; /* Ancho fijo para los botones */
    text-align: center;
}

.game-btn:hover {
    background-color: #00796b;
    transform: scale(1.05);
}

.game-btn:active {
    transform: scale(0.95);
}

/* Estilos para la imagen adicional */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.additional-image {
    max-width: 300px; /* Ajusta el tamaño máximo de la imagen */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra suave */
}

/* Estilos adicionales para la página de juegos */
.title {
    font-family: 'Patrick Hand', cursive;
    font-size: 2.5rem;
    background: linear-gradient(90deg, #ff9a9e, #fad0c4, #fbc2eb, #e6dee9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.temperature, .calendar, .clock {
    font-size: 1.2rem;
    margin: 10px 0;
}

.character {
    width: 200px;
    height: 300px;
    position: relative;
    border: 2px solid #4db6ac;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    margin-bottom: 20px;
}

.character-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clothing-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.clothing-options {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Añadido a game.css */
.clothing-item {
    width: 50px;
    height: auto;
    cursor: move;
}

/* Ajustes para los zapatos (si es necesario) */
#zapatos {
    width: 50px;
}

/* Botones de restablecimiento */
.reset-btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #ff6f61;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.reset-btn:hover {
    background-color: #e55d4d;
}
/* Añadir estilos para el botón "Volver al Menú" */
.menu-btn {
    display: block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.menu-btn:hover {
    background-color: #0056b3;
}




