@import url('https://fonts.googleapis.com/css2?family=Anton+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');

body {
    margin: 0;
    overflow: hidden;
    background: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative; /* Ensure body is relative for absolute positioning */
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    opacity: 0.8;
    border-radius: 50%;
}

#logo {
    position: relative;
    z-index: 2; /* Ensures the logo is in front of other elements */
    width: 200px; /* Adjust the size as needed */
    opacity: 0; /* Initial opacity set to 0 */
    animation: fadeIn 1.5s forwards 1s; /* Fade in animation */
    user-select: none; /* Prevent text selection */
    pointer-events: none; /* Prevent pointer events */
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

#title {
    font-family: 'Anton SC', sans-serif;
    font-size: 15rem; /* Increased text size */
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8); /* Larger white glow effect */
    opacity: 0; /* Initial opacity set to 0 */
    position: absolute; /* Position it absolutely */
    z-index: 1; /* Ensure it is behind the logo */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center it */
    white-space: nowrap; /* Prevent line breaks */
    text-align: center; /* Center the text horizontally */
    animation: fadeInTitle 1.5s forwards 1.5s; /* Fade in animation after logo */
    user-select: none; /* Prevent text selection */
    pointer-events: none; /* Prevent pointer events */
}

@keyframes fadeInTitle {
    to {
        opacity: 0.2; /* Maintain transparency */
    }
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0); /* Transparent background */
    z-index: 3; /* Ensure it is above the logo and text */
    user-select: none; /* Prevent text selection */
    pointer-events: none; /* Prevent pointer events */
}

#button {
    position: absolute;
    bottom: 20px; /* Adjust the position as needed */
    z-index: 4; /* Ensure it is above the overlay */
    padding: 15px 30px;
    background: linear-gradient(135deg, #E54CFF, #EA6BFF); /* Purple-pinkish gradient */
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Anton SC', sans-serif;
    font-size: 1.5rem;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* White soft glow */
    cursor: pointer;
    opacity: 0; /* Initial opacity set to 0 */
    animation: fadeInButton 1.5s forwards 3.5s; /* Fade in animation after a 3.5s delay */
    transition: background 0.3s ease;
}

@keyframes fadeInButton {
    to {
        opacity: 1;
    }
}

#button:hover {
    background: linear-gradient(135deg, #b83fcc, #ca27e6); /* Lighter gradient on hover */
}

#content {
    display: none; /* Initially hidden */
    color: white;
    font-family: 'Teko', sans-serif;
    position: absolute;
    top: 100%; /* Position below the viewport initially */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.9); /* Slightly transparent background for content */
    z-index: 5; /* Ensure it is above the overlay */
    text-align: left;
    white-space: normal;
    line-height: 1.6;
}

h1 {
    font-weight: 700; /* Boldest header */
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-weight: 700; /* Bold header */
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

h3 {
    font-weight: 600; /* Semi-bold header */
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

h4 {
    font-weight: 500; /* Medium-bold header */
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

ul {
    list-style-type: disc;
    margin: 10px 0;
    padding-left: 20px;
}
