body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #001, #002, #004); /* Lighter at the top (#001) to darker at the bottom (#004) */
    color: #fff;
    font-family: 'Arial', sans-serif;
    position: relative;
}

.container {
    text-align: center;
    z-index: 2;
    position: relative;
    padding-top: 100px; /* Adjust top padding as needed to create space */
}

.logo {
    position: absolute;
    top: -60px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3; /* Higher than other elements */
}

.logo-background {
    width: 132px; /* Increased by 10% */
    height: 132px; /* Increased by 10% */
    background-color: rgba(255, 255, 255, 0.5); /* Translucent white */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(0deg); /* Initial rotation */
    display: flex;
    justify-content: center;
    align-items: center;
    animation: spinLogo 5s linear infinite; /* Apply spin animation */
}

.logo img {
    width: 80%; /* Adjust size as needed */
    height: auto;
    z-index: 1; /* Ensure logo image is above background */
}

@keyframes spinLogo {
    0% { transform: translate(-50%, -50%) rotateY(0deg); }
    100% { transform: translate(-50%, -50%) rotateY(360deg); }
}

h1 {
    font-size: 3em;
    margin: 0;
}

h2 {
    font-size: 1.5em;
    margin: 0;
    color: #ccc;
}

/* Star animation */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
    overflow: hidden;
}

.stars div {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    animation: shimmer var(--duration) var(--delay) infinite ease-in-out;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.8); }
}
