:root {
    --bg: #000000;
    --text-primary: #ffffff;
    --text-secondary: #333333;
    --accent: #00FF00;
    --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

main {
    text-align: center;
    width: 100%;
    padding: 20px;
}

a {
    text-decroation: none;
    color: inherit;
}

.subtitle {
    text-align: center;
}

.success {
    color: var(--accent);
    font-weight: bold;
    margin-top: 10px;
}
