:root {
    --bg: #0f0f10;
    --text: #e8e8ea;
    --muted: #b4b4b8;
    --discord: #5865f2;
    --discord-hover: #4654d8;
    --shadow: rgba(0, 0, 0, 0.5);
}

* {
    user-select: none;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    background: radial-gradient(1200px 600px at 50% -10%, rgba(88,101,242,0.1), transparent 60%), var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    display: grid;
    place-items: center;
}

.container {
    text-align: center;
    padding: 48px 24px;
    max-width: 480px;
    width: 100%;
}

.title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: .02em;
    margin: 0 0 16px 0;
}

.subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--muted);
    margin: 0 0 28px 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    background: var(--discord);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 24px -8px var(--shadow);
    transition: background .2s ease, transform .05s ease;
}

.button:hover {
    background: var(--discord-hover);
}

.button:active {
    transform: translateY(1px);
}

.button svg {
    width: 22px;
    height: 22px;
    fill: white;
}

#cursor {
    font-weight: 700;
    color: var(--discord);
}

#typed-text {
    white-space: nowrap;
    font-weight: 700;
}

