html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #FFF9E6; /* Light Hertz Yellow */
    font-family: sans-serif;
}

#loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 210, 0, 0.3);
    border-radius: 50%;
    border-top-color: #FFD200; /* Hertz Yellow */
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 16px;
    color: #000000;
    font-weight: bold;
    letter-spacing: 1px;
}