/* Shared styles for guide pages */
:root {
    --primary: #F59E0B;
    --secondary: #22D3EE;
    --bg-dark: #0B1121;
    --bg-card: #142038;
    --bg-light: #1E293B;
    --text: #E2E8F0;
    --text-muted: #94A3B8;
    --border: #334155;
    --green: #22C55E;
    --red: #EF4444;
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

.header {
    background: var(--bg-card);
    padding: 0.75rem 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { height: 32px; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}
.nav-links a:hover { color: var(--secondary); }

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

.back-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.back-link:hover { color: var(--primary); }

.badge {
    display: inline-block;
    background: rgba(34, 211, 238, 0.15);
    color: var(--secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-num {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.step p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.step ul, .step ol {
    color: var(--text-muted);
    margin: 0.75rem 0 0.75rem 1.5rem;
}

.step li {
    margin-bottom: 0.4rem;
}

.step a {
    color: var(--primary);
    text-decoration: none;
}
.step a:hover { text-decoration: underline; }

.step strong { color: var(--text); }

.tip {
    background: rgba(34, 211, 238, 0.08);
    border-left: 3px solid var(--secondary);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    color: var(--text);
    font-size: 0.9rem;
}
.tip strong { color: var(--secondary); }

.warning {
    background: rgba(239, 68, 68, 0.08);
    border-left: 3px solid var(--red);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    color: var(--text);
    font-size: 0.9rem;
}
.warning strong { color: var(--red); }

.success {
    background: rgba(34, 197, 94, 0.08);
    border-left: 3px solid var(--green);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    color: var(--text);
    font-size: 0.9rem;
}
.success strong { color: var(--green); }

.next-up {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.next-up h3 {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.next-up a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
}
.next-up a:hover { text-decoration: underline; }

code {
    background: var(--bg-light);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--secondary);
}
