@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap');

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

body {
    overflow: hidden;
    background: #000;
    font-family: 'JetBrains Mono', monospace;
}

canvas {
    display: block;
}

.home-nav {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.site-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #D1FA50;
    letter-spacing: -0.02em;
    text-shadow: 0 0 60px rgba(209, 250, 80, 0.4);
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    display: block;
    padding: 1rem 2.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    background: #D1FA50;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    min-width: 220px;
}

.nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(209, 250, 80, 0.5);
}

.nav-btn-outline {
    background: transparent;
    color: #D1FA50;
    border: 2px solid #D1FA50;
}

.nav-btn-outline:hover {
    background: #D1FA50;
    color: #000;
}
