@import url('https://fonts.cdnfonts.com/css/biz-udmincho');

:root {
    --purple: #9333EA;
}

body {
    margin: 0;
    font-family: 'BIZ UDMincho', serif;
    background: var(--purple);
    color: white;
    overflow: hidden;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

nav {
    position: fixed;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    mix-blend-mode: difference;
}

.main-content {
    position: relative;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

p {
    font-size: 1.5rem;
    max-width: 600px;
}

.loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    p { font-size: 1.2rem; }
}