:root {
    --bg-color: #050505;
    --text-color: #f0f0f0;
    --accent-color: #ffffff;
    --font-primary: 'Syne', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-secondary);
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    /* Prevent scrollbars */
}

header {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 100;
}

.logo {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    user-select: none;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.subtitle {
    position: relative;
    z-index: 2;
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    opacity: 0.8;
    margin-top: 25vh;
    /* Push it lower as requested */
    text-transform: uppercase;
    pointer-events: none;
    /* Let clicks pass through to canvas if needed */
}

/* Secret Symbol */
.secret-symbol {
    position: fixed;
    /* Changed to fixed to ensure it's relative to viewport */
    bottom: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--text-color);
    opacity: 0.2;
    /* Increased from 0.05 to 0.2 so it's actually visible */
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    cursor: pointer;
    font-family: var(--font-primary);
}

.secret-symbol:hover,
.secret-symbol:focus {
    opacity: 1;
    transform: scale(1.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    header {
        top: 1.5rem;
        left: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .subtitle {
        font-size: 0.9rem;
        margin-top: 30vh;
    }
}