* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0a0a0a;
    color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container {
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 480px;
    width: 100%;
}
h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.tagline {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 2rem;
}
.description {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.steps {
    display: inline-block;
    text-align: left;
    margin-bottom: 2.5rem;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #ccc;
    line-height: 1.5;
}
.step-num {
    background: #222;
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}
.disclaimer {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-style: italic;
}
.badges {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.badge {
    display: inline-block;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    color: #888;
    font-size: 0.9rem;
    text-decoration: none;
    min-height: 44px;
    line-height: 1.5;
    transition: all 0.2s ease;
}
.badge.badge-primary {
    background: #f5f5f5;
    color: #0a0a0a;
    border-color: #f5f5f5;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.9rem 2rem;
}
.badge.badge-secondary {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    color: #666;
    min-height: auto;
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1.25rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    .tagline {
        font-size: 1.1rem;
    }
    .badges {
        flex-direction: column;
        align-items: stretch;
    }
    .badge {
        text-align: center;
    }
}
