@font-face {
    font-family: 'Degular';
    src: url('fonts/Degular-Regular.woff2') format('woff2'),
         url('fonts/Degular-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

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

body {
    font-family: 'Degular', Arial, sans-serif;
    background: #000000;
    overflow: hidden;
    height: 100vh;
    cursor: none;
    padding: 48px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* Hide cursor on mobile devices */
@media (hover: none) and (pointer: coarse) {
    .cursor {
        display: none;
    }

    body {
        padding: 24px;
    }
}

.content {
    position: relative;
    z-index: 1000;
}

h1, h2, p {
    font-size: 14px;
    margin: 0;
    font-weight: normal;
    line-height: 1.4;
}

h1 {
    margin-bottom: 0;
    color: #ffffff;
}

h2 {
    margin-bottom: 0;
    color: #ffffff;
}

p {
    color: #cccccc;
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(20px);
} 