:root {
    --color-primary-text: #ffffff;
    --color-secondary-text: #a0a0a0;
    --color-background: #000000;
    --color-button-bg: #ffc93c; /* A vibrant yellow */
    --font-montserrat: 'Montserrat', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
}

/* Global Reset and Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url("bg.png");
    background-color: var(--color-background);
    color: var(--color-primary-text);
    font-family: var(--font-poppins);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden; /* Prevent scrollbar from background effect */
    position: relative; /* For the background effect */
}

/* ------------------
   Background Effect
   ------------------ */
/* This section attempts to simulate the dynamic light streaks using a gradient overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Creating a diagonal light streak effect */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 165, 0, 0.1) 60%,
        rgba(255, 255, 0, 0.1) 65%,
        rgba(255, 165, 0, 0.1) 70%,
        rgba(255, 255, 255, 0) 80%
    );
    opacity: 0.3; /* Adjust for intensity */
    z-index: 1; /* Keep it below the text */
}

/* ------------------
   Layout and Container
   ------------------ */
.container {
    max-width: 1200px;
    width: 90%;
    position: relative;
    z-index: 2; /* Ensure content is above the background effect */
    padding: 20px;
    text-align: center;
}

/* ------------------
   Header/Logo
   ------------------ */
.logo-section {
    position: fixed;
    top: 20px;
    left: 20px;
    text-align: left;
}

.logo {
    font-family: var(--font-montserrat);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tagline {
    font-family: var(--font-poppins);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-secondary-text);
}

/* ------------------
   Main Content
   ------------------ */
.content-section {
    padding-top: 100px; /* Space from the top logo */
}

.intro-text {
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 300;
    color: var(--color-secondary-text);
    margin-bottom: 10px;
}

.coming-soon {
    font-family: var(--font-montserrat);
    font-size: 8vw; /* Responsive font size */
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* ------------------
   Button
   ------------------ */
.notify-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-button-bg);
    color: var(--color-background); /* Dark text on bright button */
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.notify-btn:hover {
    background-color: #ffd86b; /* Slightly lighter yellow on hover */
}

/* ------------------
   Footer
   ------------------ */
.footer-section {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
}


.footer-section p {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-secondary-text);
    
}



/* Media Query for smaller screens (adjust sizing) */
@media (max-width: 768px) {
    .logo-section {
        position: static;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .logo {
        font-size: 20px;
    }

    .tagline {
        font-size: 12px;
    }

    .container {
        padding: 50px 20px 80px 20px;
    }
    
    .coming-soon {
        font-size: 12vw;
        letter-spacing: 3px;
    }

    .footer-section {
        position: static;
        margin-top: 40px;
    }
}