#moulya-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
    overflow: hidden;
}

.typing-container {
    font-family: "Courier New", Courier, monospace;
    font-size: 4rem;
    font-weight: bold;
    color: #F55656;
    position: relative;
    z-index: 10;
}


/* Mobile-specific styles */
@media only screen and (max-width: 768px) {
    .typing-container {
        font-size: 2rem; /* Adjust as needed */
    }
    
}

.cursor {
    display: inline-block;
    border-left: 2px solid #F55656;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { border-color: transparent; }
}

.floating-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    opacity: 0.8;
    animation: float 6s infinite ease-in-out alternate;
}

.dot1 {
    background: #d4af37;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.dot2 {
    background: #b76e79;
    bottom: 15%;
    right: 25%;
    animation-delay: 2s;
}

.dot3 {
    background: #d4af37;
    top: 60%;
    left: 70%;
    width: 10px;
    height: 10px;
    animation-delay: 1s;
}

.dot4 {
    background: #b76e79;
    bottom: 30%;
    left: 10%;
    width: 12px;
    height: 12px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.floating-jewel {
    position: absolute;
    width: 120px;
    opacity: 0.95;
}

/* Individual jewel animations */
.jewel1 {
    top: 25%;
    left: 10%;
    animation: jewelFloat1 6s ease-in-out infinite;
}

.jewel2 {
    top: 65%;
    right: 12%;
    animation: jewelFloat2 8s ease-in-out infinite;
}

.jewel3 {
    bottom: 15%;
    left: 40%;
    animation: jewelFloat3 7s ease-in-out infinite;
}

@keyframes jewelFloat1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -15px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(-5deg); }
}

@keyframes jewelFloat2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, 10px) rotate(4deg); }
    100% { transform: translate(0, 0) rotate(-4deg); }
}

@keyframes jewelFloat3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, 15px) rotate(6deg); }
    100% { transform: translate(0, 0) rotate(-6deg); }
}
