:root {
    --bg: #17181a;
    --card-bg: #ffffff;
    --text: #f2f2f3;
    --muted: #9a9ba0;
    --accent: #7c6fe0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 24px;
}

.panel {
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-box {
    width: 260px;
    height: 260px;
    background: var(--card-bg);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qr-box img {
    width: 88%;
    height: 88%;
    object-fit: contain;
}

.qr-box.empty {
    background: #f1f1f3;
}

h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 20px;
}

.steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: right;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.step-number {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
}

.step p strong {
    color: #fff;
}

.links {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.links a {
    color: var(--accent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
