body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #111;
    /* Dark off-black background */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: white;
}

canvas {
    display: block;
    position: fixed;
    /* Fix background during scroll */
    top: 0;
    left: 0;
    z-index: 0;
    /* Ensure visibility */
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 800px;
    height: 60px;
    border-radius: 50px;
    z-index: 10;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* Center Container */
.center-container {
    position: absolute;
    /* Absolute so it scrolls with page */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66%;
    /* 2/3 width */
    max-width: 1200px;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through to dots if desired */
    white-space: pre-wrap;
    /* Preserve newlines from text file */

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.center-container h1 {
    margin-top: 0;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
}

.center-container p {
    opacity: 0.7;
    line-height: 1.6;
    font-size: 1.25rem;
    /* Increased text size */
}