/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap');

/* Basic Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    /* A dark, modern background */
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    /* Prevents scrollbars */
    cursor: none;
    /* Hide the default cursor */
}

/* Canvas for the Trail Effect */
#cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind the content, but on top of the background */
    pointer-events: none;
    /* Allows clicking through the canvas */
}

/* Main Content Container */
.container {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
    /* Ensure content is on top of the canvas */
    max-width: 900px;
}

/* Logo Styling */
.logo-main {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.logo-main span {
    color: #9EFF00;
    /* Vibrant Lime Green */
}

/* "by Nepali Science memes" */
.byline {
    font-size: 1.1rem;
    color: #aaaaaa;
    font-weight: 400;
    margin-top: -10px;
}

/* Divider Line */
.divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #9EFF00, #32CD32);
    margin: 2rem auto;
    border-radius: 2px;
}

/* Tagline */
.tagline {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 2.5rem;
}

/* "Under Construction" Status */
.status {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #9EFF00;
    animation: pulse 2s infinite;
}

/* Animation for the status text */
@keyframes pulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.7;
        transform: scale(1);
    }
}

/* Responsive Design for smaller screens */
@media (max-width: 768px) {
    .logo-main {
        font-size: 4.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .status {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .logo-main {
        font-size: 3.5rem;
    }

    .byline {
        font-size: 1rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .container {
        padding: 1rem;
    }
}