:root {
    --accent: #ff7700;
    --text-main: #111111;
    --text-muted: #666666;
    --bg-card: #f8f8f8;
    --border-color: #e0e0e0;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #ffffff;
    color: var(--text-main);
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

header {
    margin-bottom: 20px;
    text-align: center;
}

header h1 {
    margin: 0 0 4px 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #111111;
}

header p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
}

.main-container {
    display: flex;
    flex-direction: column;
    max-width: 480px;
    width: 100%;
}