:root {
    --primary: #ff6b35;
    --primary-dark: #e85a2a;
    --primary-light: #ff8a5b;
    --secondary: #00d9c0;
    --accent: #ffe156;
    --gray-50: #fffaf5;
    --gray-100: #fff5eb;
    --gray-200: #ffe8d6;
    --gray-300: #e8d5c4;
    --gray-400: #b8a898;
    --gray-500: #8b7355;
    --gray-600: #6b5344;
    --gray-700: #4a3728;
    --gray-800: #2d1f14;
    --gray-900: #1a0f08;
    --white: #ffffff;
    --bg-cream: #fff9f0;
    --shadow-sm: 0 2px 8px rgba(255,107,53,0.08);
    --shadow-md: 0 8px 24px rgba(255,107,53,0.12);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

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

body {
    font-family: "Nunito", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--bg-cream);
}

h1, h2, h3, h4 {
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

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

.blog-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.blog-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Fredoka", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-800);
}
.nav-logo img { width: 36px; height: 36px; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links .btn-cta {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-family: "Fredoka", sans-serif;
    font-weight: 500;
}
.nav-links .btn-cta:hover { background: var(--primary-dark); }
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-btn span {
    width: 24px; height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem 1.5rem; border-bottom: 1px solid var(--gray-200); gap: 1rem; }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: flex; }
}

.blog-footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 2.5rem 0 1.5rem;
    margin-top: 4rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Fredoka", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
}
.footer-logo img { width: 28px; height: 28px; }
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a { color: var(--gray-400); transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
}
