/* Estilos para Solcito Rotador como fondo */
.solcito-rotador-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Permite hacer clic a través del fondo */
    z-index: -1; /* Por defecto detrás del contenido */
}

/* Estilos de la sección principal - copiado del original */
.section {
    position: relative;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Estilos para las imágenes centrales - copiado del original */
.center {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.main_symbol, .main_symbol_numbers {
    padding: 20px;
    width: 80%;
    max-width: 600px;
    height: auto;
}

/* Variables CSS para la animación */
:root {
    --rotation-duration: 180s;
    --rotation-direction: normal;
}

.main_symbol {
    animation: rotateConst var(--rotation-duration) linear infinite;
    animation-direction: var(--rotation-direction);
}

.no-selection {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

/* Animación de rotación */
@keyframes rotateConst {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Estilos para dispositivos móviles */
@media only screen and (max-width: 600px) {
    .main_symbol, .main_symbol_numbers {
        width: 90%;
        max-width: 300px;
    }
}
