.container{
    margin-top: 100px;
    padding-bottom: 50px;
}
/* Estilo General del Cuerpo */
body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #0d4044, #126167,#024943 ); /* Gradiente de tonos más claros */
    background-size: 400% 400%; /* Hacemos que el fondo sea más grande para el efecto de movimiento */
    animation: movimiento-gradiente 10s ease infinite; /* Añadir la animación de movimiento */
    font-family: 'Roboto', sans-serif;
    color: #e0e0e0;
}
/* Definimos la animación para el movimiento del gradiente */
@keyframes movimiento-gradiente {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* Header y Título */
header {
    margin-bottom: 20px;
}

h1 {
    color: #4adabb;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-top: 20px;
}

/* Contenedor de Inputs */
.inputs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

label {
    font-size: 16px;
    color: #a0a0a0;
}

/* Selectores */
select {
    padding: 10px;
    font-size: 16px;
    background-color: #1e1e1e;
    color: #e0e0e0;
    border: 1px solid #333333;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

select:hover {
    border-color: #6a11cb;
}

/* Contenedor del Botón */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Botón elegante y minimalista */
button {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 12px; /* Bordes más redondeados */
    background: linear-gradient(to right, #6a11cb, #2575fc);
    border: none;
    transition: background-position 0.4s ease, box-shadow 0.4s, transform 0.2s ease;
    background-position: right bottom;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

button:hover {
    background-position: left bottom;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


/* Textos y Párrafos */
p {
    color: #a0a0a0;
    font-weight: normal;
    margin: 0;
    font-size: 14px;
}

/* Movimientos */
#movimientos {
    margin-top: 10px;
    font-size: 16px;
    color: #a0a0a0;
    text-align: center;
}

/* Contenedor del Tablero */
.tablero-container {
    margin-top: 20px;
    padding: 20px;
    background: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Tablero */
.tablero {
    width: 360px;
    table-layout: fixed;
    border-collapse: collapse;
}

/* Casillas del Tablero */
.casilla {
    width: 100px;
    height: 100px; /* Cuadrado */
    border: 2px solid #333333;
    background: #262626;
    border-radius: 8px;
    position: relative;
    transition: background-color 0.3s, transform 0.2s;
}

.casilla:hover {
    background: #333333;
    transform: translateY(-3px);
}

/* Discos */
.disco-pequeno, .disco-mediano, .disco-grande {
    height: 20px;
    margin: auto;
    border-radius: 4px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.disco-pequeno {
    width: 40px;
    background-color: #ff6f61;
}

.disco-mediano {
    width: 80px;
    background-color: #61a0ff;
}

.disco-grande {
    width: 110px;
    background-color: #61ff8a;
}

.disco-pequeno:hover, .disco-mediano:hover, .disco-grande:hover {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}
