:root {
    --primary: #4CAF50;
    --primary-light: #81C784;
    --bg: #0f1117;
    --surface: #1a1d27;
    --text: #e0e0e0;
    --text-muted: #9e9e9e;
    --accent: #FFD54F;
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

/* Hero */
.hero {
    text-align: center;
    padding: 3rem 0 2rem;
}

.emoji-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    background: var(--surface);
    border: 1px solid var(--primary);
    color: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.description {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Sections */
h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

section {
    margin-bottom: 3rem;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.step {
    background: var(--surface);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}

.step-number {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Features */
.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    background: var(--surface);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.features li strong {
    color: var(--primary-light);
}

/* Footer */
.footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--surface);
    padding-top: 1.5rem;
}

.footer a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .steps {
        grid-template-columns: 1fr;
    }
    .emoji-title {
        font-size: 2rem;
    }
}
