* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    position: relative;
}

.loading-box {
    position: fixed;
    top: 50%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    z-index: 9999;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.loading-title {
    font-size: 1.5em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
    color: #ffffff; /* Cambia el color del texto a blanco */
}

.loading-circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 180px;
    right: 35%;
    top: 35%;
    left: 45%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(111, 123, 247, 1) 0%,
        rgba(155, 248, 244, 1) 0%,
        #101012 0%
    );
    border-radius: 100px;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.75),
        -4px -4px 16px rgba(255, 255, 255, 0.1);
    animation: spin 1s infinite linear;
    color: #ffffff; /* Cambia el color del texto a blanco */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-count {
    content: " ";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 3px;
    left: 3px;
    width: 174px;
    height: 174px;
    border-radius: 100px;
    background: #1d1e22;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.75) inset,
      -4px -4px 16px rgba(255, 255, 255, 0.1) inset;
    animation: spin 1s infinite linear reverse;
  }

  .loading-count #loadingNumber {
    font-size: 4em;
  }


/* Resto de tus estilos CSS existentes */
