:root {
    --primary-color: #8667F2;
    --secondary-color: #4A5568;
    --accent-color: #8667F2;
    --warning-color: #FED7D7;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom, #F8F0F4, #E9EFFF);
    color: var(--primary-color);
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.screenshot {
    margin-top: 1.5rem;
    border: 2px dashed #CBD5E0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.screenshot img {
    max-width: 300px;
    height: auto;
}

.warning {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--warning-color);
    border-radius: 8px;
}

.warning h3 {
    color: #C53030;
    margin-bottom: 1rem;
}

.warning ul {
    list-style-position: inside;
    color: #742A2A;
}

footer {
    margin-top: 3rem;
    text-align: center;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }

    .step {
        flex-direction: column;
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }
}