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

body {
    font-family: 'Söhne', 'Sohne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0f;
    min-height: 100vh;
    overflow: hidden;
    cursor: none;
}

.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-title {
    color: #ffffff;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    text-align: center;
    user-select: none;
}

.pills-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 67px;
    height: 32px;
    padding: 0 13px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    will-change: transform;
    box-shadow:
        0 1px 5px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pill.cyan {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
}

.pill.yellow {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
}

.pill.magenta {
    background: linear-gradient(135deg, #ff00ff, #cc00cc);
    color: #fff;
}

.cursor-dot {
    position: fixed;
    width: 1px;
    height: 1px;
    background: transparent;
    pointer-events: none;
    z-index: 1000;
    transform: translate(-50%, -50%);
}
