body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

/* Contenedor principal para toda la interfaz */
.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Contenedor para los slots de la izquierda */
.left-slots {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Contenedor para los slots de la derecha */
.right-slots {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Contenedor para los slots 10, 11, 12 en la parte superior */
.top-slots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* Estilos generales para los slots */
.slot {
    width: 85px;
    height: 50px;
    border: 1px solid #000;
    text-align: center;
    position: relative;
}

/* Nivel en rojo y centrado encima de la imagen */
.slot span {
    color: red;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Imagen del item en el slot */
.slot img {
    width: 100%;
    height: 100%;
}

/* Cuadrado en el centro */
.center-square {
    width: 200px;
    height: 200px;
    background-color: #ADD8E6;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Texto dentro del cuadro central */
.center-square span {
    color: green;
    font-size: 24px;
    font-weight: bold;
}
