*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #0a0a0a;
}

.setup-guide-page {
    width: 432px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
}

.setup-guide-content {
    --gold: #c9a227;
    --gold-border: rgba(201, 162, 39, 0.22);
    --gold-bg-top: #fffdf7;
    --gold-bg-bottom: #faf6eb;
    --section-gap: 33.4px;
    padding: 32px 24px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.setup-guide-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 384px;
    max-width: 100%;
    margin-bottom: var(--section-gap);
}

.setup-guide-hero__cover {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(10, 10, 10, 0.14);
    margin-bottom: 16px;
}

.setup-guide-hero__eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

.setup-guide-hero__title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.setup-guide-hero__subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(10, 10, 10, 0.62);
}

.setup-guide-tutorial {
    width: 384px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
}

.setup-guide-section {
    border: 1px solid rgba(33, 33, 33, 0.09);
    border-radius: 8px;
    padding: 20px 18px;
    background: #fff;
}

.setup-guide-section__head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.setup-guide-section__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.setup-guide-section__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #0a0a0a;
}

.setup-guide-steps {
    margin: 0;
    padding-left: 20px;
    color: rgba(10, 10, 10, 0.74);
    font-size: 14px;
    line-height: 1.5;
}

.setup-guide-steps li + li {
    margin-top: 10px;
}

.setup-guide-steps strong {
    color: #0a0a0a;
    font-weight: 600;
}

.setup-guide-note {
    margin: 14px 0 0;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid var(--gold-border);
    background: linear-gradient(180deg, var(--gold-bg-top) 0%, var(--gold-bg-bottom) 100%);
    font-size: 13px;
    line-height: 1.45;
    color: rgba(10, 10, 10, 0.72);
}

.setup-guide-footer {
    width: 384px;
    max-width: 100%;
    margin-top: var(--section-gap);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.setup-guide-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 5px;
    border: 1px solid rgba(33, 33, 33, 0.09);
    background: #f8d481;
    font-size: 14px;
    font-weight: 700;
    color: #0a0a0a;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.setup-guide-back:hover {
    background: #f5cb6f;
}

.setup-guide-support {
    margin: 0;
    font-size: 13px;
    color: rgba(10, 10, 10, 0.58);
}

.setup-guide-support a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.setup-guide-support a:hover {
    text-decoration: underline;
}

.setup-guide-locked {
    margin: 0 0 24px;
    padding: 20px 18px;
    border-radius: 8px;
    border: 1px dashed rgba(201, 162, 39, 0.45);
    background: rgba(255, 253, 247, 0.95);
    text-align: center;
}

.setup-guide-locked__title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    color: #0a0a0a;
}

.setup-guide-locked__text {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(10, 10, 10, 0.72);
}
