@charset "utf-8";
/* CSS Document */

   <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Libre Franklin, sans-serif, Arial;
            background: #ece8db;
            color: #000;
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* Moon Phase Icon */
        .moon-phase {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #666;
            letter-spacing: 0.3px;
        }

        .moon-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            position: relative;
            background: #ddd;
            overflow: hidden;
        }

        .moon-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #333;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        /* Moon phases */
        .moon-new::before { transform: translateX(0%); }
        .moon-waxing-crescent::before { transform: translateX(-25%); }
        .moon-first-quarter::before { transform: translateX(-50%); }
        .moon-waxing-gibbous::before { transform: translateX(-75%); }
        .moon-full::before { transform: translateX(-100%); }
        .moon-waning-gibbous::before { transform: translateX(-75%) scaleX(-1); }
        .moon-last-quarter::before { transform: translateX(-50%) scaleX(-1); }
        .moon-waning-crescent::before { transform: translateX(-25%) scaleX(-1); }

        /* Navigation */
        .nav-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(218, 214, 200, 0.98);
            z-index: 1000;
            padding: 20px 40px;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e6e6e6;
        }

        .nav-container {
            max-width: 100%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 40px;
        }

        .nav-brand {
            margin-right: auto;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 0.5px;
            color: #000;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .nav-link {
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 0.5px;
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #000;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background: #000;
        }

        /* Blog Container */
        .blog-container {
            margin-top: 80px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            padding: 40px 20px 80px;
        }

        /* Article Header */
        .article-header {
            margin-bottom: 60px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 40px;
        }

        .article-title {
            font-size: 34px;
            font-weight: 500;
            color: #666;
            margin-bottom: 20px;
            letter-spacing: 0.3px;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            line-height: 1.2;
        }

        .article-subtitle {
            font-size: 18px;
            font-weight: 400;
            color: #666;
            margin-bottom: 30px;
            font-style: italic;
        }

        .article-meta {
            display: flex;
            gap: 30px;
            font-size: 13px;
            color: #999;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .article-date,
        .article-reading-time {
            display: flex;
            align-items: center;
        }

        /* Article Content */
        .article-content {
            font-size: 17px;
            line-height: 1.8;
            color: #666;
        }

        .article-content p {
            margin-bottom: 24px;
        }

        .article-content p:first-child {
            font-size: 18px;
            color: #666;
            font-weight: 400;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        /* Section Headers */
        .section-number {
            font-size: 32px;
            font-weight: 200;
            color: #000;
            margin: 60px 0 20px 0;
            letter-spacing: -1px;
        }

        .section-title {
            font-size: 16px;
            font-weight: 600;
            color: #000;
            margin-bottom: 30px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Quotes */
        .quote {
            font-size: 18px;
            font-style: italic;
            color: #000;
            margin: 40px 0;
            padding: 30px 0;
            border-left: 2px solid #000;
            padding-left: 30px;
            line-height: 1.6;
            font-weight: 300;
        }

        .quote-attribution {
            font-size: 14px;
            font-style: normal;
            color: #666;
            margin-top: 15px;
            font-weight: 400;
        }

        /* Links */
        .article-content a {
            color: #000;
            text-decoration: underline;
            text-decoration-color: #ccc;
            text-underline-offset: 3px;
            transition: text-decoration-color 0.3s;
        }

        .article-content a:hover {
            text-decoration-color: #000;
        }

        /* Emphasis */
        .article-content em {
            font-style: italic;
            color: #000;
            font-weight: 400;
        }

        .article-content strong {
            font-weight: 600;
            color: #000;
        }

        /* Image Styles */
        .article-image {
            width: 100%;
            margin: 50px 0;
            border-radius: 0;
        }

        .article-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .image-caption {
            font-size: 13px;
            color: #999;
            text-align: center;
            margin-top: 10px;
            font-style: italic;
            letter-spacing: 0.3px;
        }

        /* Divider */
        .section-divider {
            margin: 60px 0;
            height: 1px;
            background: #e0e0e0;
        }

        /* Newsletter Signup */
        .newsletter-signup {
            margin-top: 80px;
            padding: 40px 0;
            border-top: 1px solid #e0e0e0;
            text-align: center;
        }

        .newsletter-title {
            font-size: 20px;
            font-weight: 300;
            color: #000;
            margin-bottom: 15px;
            letter-spacing: 0.3px;
        }

        .newsletter-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            max-width: 400px;
            margin: 0 auto;
            gap: 10px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid #ddd;
            background: #fff;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #000;
        }

        .newsletter-button {
            padding: 12px 24px;
            background: #000;
            color: #fff;
            border: none;
            font-size: 14px;
            font-family: inherit;
            font-weight: 400;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .newsletter-button:hover {
            background: #333;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-header {
                padding: 15px 20px;
            }

            .nav-container {
                gap: 25px;
            }

            .nav-link,
            .nav-brand {
                font-size: 13px;
            }

            .blog-container {
                margin-top: 60px;
                padding: 30px 15px 60px;
            }

            .article-title {
                font-size: 28px;
                margin-bottom: 15px;
            }

            .article-subtitle {
                font-size: 16px;
                margin-bottom: 25px;
            }

            .article-header {
                margin-bottom: 40px;
                padding-bottom: 30px;
            }

            .article-meta {
                flex-direction: column;
                gap: 10px;
                font-size: 12px;
            }

            .section-number {
                font-size: 28px;
                margin: 50px 0 15px 0;
            }

            .section-title {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .quote {
                font-size: 16px;
                margin: 30px 0;
                padding: 20px 0;
                padding-left: 20px;
            }

            .newsletter-form {
                flex-direction: column;
                gap: 15px;
            }

            .newsletter-input,
            .newsletter-button {
                width: 100%;
            }

            .moon-phase {
                font-size: 11px;
                gap: 6px;
            }
            
            .moon-icon {
                width: 16px;
                height: 16px;
            }
        }

        @media (max-width: 576px) {
            .blog-container {
                padding: 20px 10px 40px;
            }

            .article-title {
                font-size: 24px;
            }

            .article-content {
                font-size: 15px;
            }

            .article-content p:first-child {
                font-size: 16px;
            }
        }

        /* Fade in animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }

        /* Reading progress bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            background: #000;
            z-index: 1001;
            transition: width 0.1s ease-out;
        }

