/* Resetting margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Synthwave Colors */
:root {
    --neon-pink: #ff007f;
    --electric-blue: #00d4ff;
    --deep-purple: #2d004d;
    --dark-bg: #0d001a;
    --lotus-pink: #ff66cc;
    --frog-blue: #00aaff;
}

/* Body Setup */
body {
    height: 100vh;
    background: var(--dark-bg);
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
}

/* Splash Screen */
#splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, var(--deep-purple), var(--neon-pink));
    color: var(--electric-blue);
    text-align: center;
    gap: 20px;  /* Adds space between title, logo, and button */
}

#splash-screen h1 {
    font-size: 4rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--electric-blue), 0 0 30px var(--neon-pink); /* Enhanced shadow for more blending */
    animation: pulse 2s infinite;
    margin: 0;  /* Removes default browser margin */
}

#enter-btn {
    padding: 15px 40px;
    font-size: 1.5rem;
    color: var(--dark-bg);
    background: var(--electric-blue);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--electric-blue), 0 0 30px var(--neon-pink); /* Subtle neon blend */
    transition: all 0.3s ease-in-out;
}

#enter-btn:hover {
    background: var(--neon-pink);
    box-shadow: 0 0 40px var(--neon-pink), 0 0 50px var(--electric-blue);
    color: var(--dark-bg);
}

/* Main Content */
#main-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-in-out;
}

/* Hide content initially */
.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Lotus Pond */
.pond {
    position: relative;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.7), var(--dark-bg)); 
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5), 0 0 70px var(--lotus-pink);
    background-color: var(--frog-blue); /* Pond is now blue */
}

/* Frog Shape */
.frog {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--frog-blue);
    border-radius: 50%;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--frog-blue), 0 0 30px var(--electric-blue);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

#frog-logo {
    width: 200px;  /* Adjust the size as needed */
    height: auto;
    filter: drop-shadow(0 0 20px var(--electric-blue)), 0 0 30px var(--neon-pink); /* Enhanced glowing effect */
    margin-bottom: 30px;  /* Adds spacing below the logo */
    display: block; /* Ensures the logo behaves like a block element */
    margin-left: auto; /* Horizontally centers the logo */
    margin-right: auto; /* Horizontally centers the logo */
}

/* Lilypads */
.lilypad {
    position: absolute;
    width: 100px;
    height: 40px;
    background-color: var(--lotus-pink);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--lotus-pink);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

#lilypad1 {
    top: 25%;
    left: 30%;
}

#lilypad2 {
    top: 45%;
    left: 50%;
}

#lilypad3 {
    top: 65%;
    left: 70%;
}

/* Animations */
@keyframes pulse {
    0% { text-shadow: 0 0 10px var(--electric-blue), 0 0 20px var(--neon-pink); }
    50% { text-shadow: 0 0 30px var(--electric-blue), 0 0 40px var(--neon-pink); }
    100% { text-shadow: 0 0 10px var(--electric-blue), 0 0 20px var(--neon-pink); }
}
