@font-face {
    font-family: 'Brockmann';
    src: url('/fonts/brockmann-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Brockmann', sans-serif;
    margin: 0;
    overflow: hidden;
    background: #000;
    touch-action: manipulation;
}

canvas {
    display: block;
    width: 100vw;
    height: 100vh;
    touch-action: none;
}

#startButton {
    font-family: 'Brockmann', sans-serif;
    letter-spacing: -0.02em;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 16px 32px;
    font-size: 1.05rem;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

#startButton:hover {
    background: #444;
}

#startButton:active {
    background: #555;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    #startButton {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #startButton {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}