/* Horizon Styles */
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-sans);
    z-index: 10;
}

.overlay h1 {
    font-family: var(--font-mono);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
    opacity: 0.7;
}

.overlay p {
    font-size: 12px;
    margin: 0;
    opacity: 0.5;
}

/* Customize Nav for Dark Mode context */
nav {
    background: rgba(0, 0, 0, 0.2) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

nav a {
    color: rgba(255, 255, 255, 0.7) !important;
}

nav a:hover,
nav a.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

@media screen and (max-width: 600px) {
    .overlay {
        bottom: 20px;
        left: 20px;
    }
}