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

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #0a0a0a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    position: relative;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
    cursor: none;
}

#custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 1000;
    transform: translate(-50%, -50%);
    transition: transform 0.05s ease-out;
    display: block;
    font-size: clamp(1rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    mix-blend-mode: difference;
    white-space: nowrap;
    user-select: none;
}


#canvas-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.name {
    font-size: clamp(1rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    mix-blend-mode: difference;
}

.name a {
    color: inherit;
    text-decoration: none;
    cursor: default;
    pointer-events: auto;
    display: inline-block;
}

.name a:visited,
.name a:hover,
.name a:active,
.name a:focus {
    color: inherit;
    text-decoration: none;
    cursor: default;
    outline: none;
}
