 /* Loader Background */
 #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent dark background */
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: white; /* White text color */
}

/* Bubbles animation */
.bubbles {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.bubbles span {
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    animation: bubble 1.5s infinite ease-in-out;
}

.bubbles span:nth-child(2) {
    animation-delay: 0.2s;
}

.bubbles span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bubble {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px);
        opacity: 0.7;
    }
}

/* Text styling */
#loader p {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

/* Content styling */
#content {
    display: none;
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 50px;
}