#intro-animation-container {
    position: fixed; /* Fixed to the viewport */
    top: 0;
    left: 0;
    width: 100vw; /* Covers entire viewport */
    height: 100vh; /* Covers entire viewport */
    z-index: 100; /* Ensure it's on top */
    background-color: #000; /* Ensure container is black */
    overflow: hidden;
}

.dot {
    width: 14px; /* Size of each dot */
    height: 14px;
    background-color: #FFD700; /* Yellow color of the dots */
    border-radius: 50%; /* Make them perfectly round */
    position: fixed; /* Position them absolutely relative to the viewport */
    opacity: 0; /* Initially hidden */
    box-shadow: 0 0 0px 0px rgba(255, 215, 0, 0); /* Initial glow state */
}

/* Style for your actual website content */
#website-content {
    position: fixed; /* Changed to fixed to ensure it covers the whole screen */
    top: 0;
    left: 0;
    opacity: 0; /* Initially hidden */
    transition: opacity 1s ease-in-out; /* Smooth transition for revealing */
}

/* Class to apply glow */
.dot-glow {
    animation: pulseGlow 1s infinite alternate; /* Simple CSS glow animation */
    box-shadow: 0 0 15px 5px rgba(255, 215, 0, 0.7); /* Stronger glow */
}

@keyframes pulseGlow {
    from { box-shadow: 0 0 5px 2px rgba(255, 215, 0, 0.5); }
    to { box-shadow: 0 0 20px 8px rgba(255, 215, 0, 0.9); }
}