:root {
    --orange: #FF7326;
    --gold: #FFCC33;
    --teal: #33CCBF;
    --pink: #FF7399;
    --cream: #FFFAF0;
    --sky-blue: #95C3FD;
    --text: #333333;
    --muted: #666666;
}

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

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
    color: var(--text);
    line-height: 1.8;
}

header {
    padding: 18px 20px;
    background: rgba(255, 250, 240, 0.95);
    border-bottom: 1px solid rgba(255, 115, 38, 0.08);
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo-link img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

.logo-title {
    font-family: 'Barriecito', cursive;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 12px;
    line-height: 1.2;
}

.intro, .lede {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 28px;
}

.date {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-top: 40px;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 24px 0 10px;
}

p { margin-bottom: 15px; color: #444; }

ul, ol {
    margin: 0 0 16px 24px;
    color: #444;
}

li { margin-bottom: 8px; }

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.highlight-box {
    background: #FFF2E6;
    border-left: 4px solid var(--orange);
    padding: 20px 25px;
    border-radius: 8px;
    margin: 28px 0;
}

.highlight-box.teal {
    background: #E8F5E9;
    border-left-color: var(--teal);
}

.highlight-box h3 { margin-top: 0; color: #C45A12; }
.highlight-box.teal h3 { color: #2E7D32; }
.highlight-box p:last-child { margin-bottom: 0; }

.guide-grid {
    display: grid;
    gap: 16px;
    margin: 28px 0 40px;
}

.guide-card {
    display: block;
    background: white;
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
}

.guide-card:hover { text-decoration: none; box-shadow: 0 10px 28px rgba(255, 115, 38, 0.14); }
.guide-card h2 { margin: 0 0 8px; font-size: 1.25rem; color: var(--orange); }
.guide-card p { margin: 0; color: var(--muted); }

.related {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 115, 38, 0.12);
}

.related ul { margin-left: 20px; }

footer {
    padding: 40px 20px;
    background: #333;
    color: white;
    text-align: center;
}

footer p { color: rgba(255, 255, 255, 0.7); }
footer a { color: var(--gold); }
.footer-disclosure {
    max-width: 640px;
    margin: 16px auto 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .container { padding: 40px 20px; }
}
