/* Basic Reset & Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    /* overflow: hidden; */ /* Removed for accessibility - allows zooming */
    background-color: #050505; /* Very dark background */
    font-family: 'Roboto', sans-serif;
}

/* Canvas Styling */
#neuron-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Sits behind the content */
}

/* Content Container Styling */
.content-container {
    position: relative;
    z-index: 2; /* Sits on top of the canvas */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Main Title Styling */
h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FF4500; /* Bright Orange-Red */
    text-shadow:
        0 0 10px #FF4500,
        0 0 20px #FF4500,
        0 0 30px #D10000; /* Red glow */
}

/* Tagline Styling */
.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 10px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
}

/* Status ("Coming Soon") Styling */
.status {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 40px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #FF8C00; /* Darker Orange */
    border: 1px solid #FF8C00;
    padding: 10px 20px;
    border-radius: 5px;
}


/* Mobile Friendly Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    .tagline {
        font-size: 1rem;
    }
    .status {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
}
