/* Import a modern, clean font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600;800&display=swap');

:root {
    --dark-bg: #111111;
    --text-color: #ffffff;
    --highlight-color: #00ffc3; /* A bright, modern teal/cyan */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--dark-bg);
    height: 100vh;
    overflow: hidden; 
    position: relative;
}

/* ---------------------------------------------------- */
/* Particle.js Styling */
/* ---------------------------------------------------- */

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; 
    background: var(--dark-bg);
}

/* ---------------------------------------------------- */
/* Content Styling */
/* ---------------------------------------------------- */

.content {
    position: relative;
    z-index: 10; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 20px;
}

.logo {
    font-size: 3em;
    font-weight: 800;
    letter-spacing: 5px;
    margin-bottom: 5px;
    color: var(--highlight-color);
}

.content h2 {
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.1em;
    max-width: 600px;
    margin-bottom: 30px; /* Reduced margin since countdown is gone */
    line-height: 1.5;
}

/* New Teaser Styling */
.teaser {
    font-size: 1.8em;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 40px; /* Space above the button */
    color: var(--text-color);
}


/* Button Styling */
.button {
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid var(--highlight-color);
    color: var(--text-color);
    background-color: transparent;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.button:hover {
    background-color: var(--highlight-color);
    color: var(--dark-bg);
}