body {
    margin: 0;
  }

  #vetores-camera {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.562);
    padding: 8px;
    color: white;
    backdrop-filter: blur(8px);
  }

#carregando {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #584433;
    border-top: 6px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.loading-text {
    margin-top: 20px;
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 1.5s infinite ease-in-out;
}

.lil-gui {
    --font-family: 'Crimson Pro', serif !important;
    --number-color: #d4af37 !important;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}