  @import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Playfair+Display:wght@400;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Crimson Text', serif;
            line-height: 1.8;
            color: #2c1810;
            background: linear-gradient(45deg, #f4f1e8, #e8dcc0);
            background-attachment: fixed;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(139, 122, 93, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(160, 141, 108, 0.1) 0%, transparent 50%),
                linear-gradient(90deg, transparent 0%, rgba(139, 122, 93, 0.05) 50%, transparent 100%);
            pointer-events: none;
            z-index: -1;
        }

        /* Header Styles */
        header {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3));
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 70%, rgba(139, 122, 93, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(160, 141, 108, 0.2) 0%, transparent 50%),
                linear-gradient(135deg, rgba(92, 76, 48, 0.4) 0%, rgba(139, 122, 93, 0.3) 100%);
            z-index: 1;
        }

        .header-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 2rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
            letter-spacing: 2px;
        }

        .header-subtitle {
            font-size: 1.3rem;
            font-style: italic;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 2rem;
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 2;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Main Content Styles */
        main {
            max-width: 900px;
            margin: 0 auto;
            padding: 4rem 2rem;
            background: rgba(255, 252, 245, 0.9);
            border-radius: 20px;
            margin-top: -50px;
            position: relative;
            z-index: 3;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(139, 122, 93, 0.2);
        }

        main::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 30px,
                    rgba(139, 122, 93, 0.03) 30px,
                    rgba(139, 122, 93, 0.03) 32px
                );
            border-radius: 20px;
            pointer-events: none;
        }

        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 3px solid #8b7a5d;
            position: relative;
        }

        .article-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #3d2f1f;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }

        .author {
            font-size: 1.1rem;
            font-weight: 600;
            color: #8b7a5d;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .date {
            font-size: 1rem;
            color: #666;
            font-style: italic;
        }

        .article-content {
            position: relative;
            z-index: 1;
        }

        .paragraph {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            text-align: justify;
            text-indent: 2rem;
            line-height: 1.9;
            position: relative;
        }

        .paragraph:first-letter {
            font-size: 3.5rem;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            float: left;
            line-height: 1;
            margin: 0.1rem 0.3rem 0 0;
            color: #8b7a5d;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .subtitle {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            margin: 3rem 0 1.5rem 0;
            color: #3d2f1f;
            text-align: center;
            position: relative;
            padding: 1rem 0;
        }

        .subtitle::before,
        .subtitle::after {
            content: '❦';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #8b7a5d;
            font-size: 1.2rem;
        }

        .subtitle::before {
            left: -3rem;
        }

        .subtitle::after {
            right: -3rem;
        }

        .article-image {
            margin: 3rem 0;
            text-align: center;
            position: relative;
        }

        .article-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            border: 5px solid #8b7a5d;
            transition: transform 0.3s ease;
        }

        .article-image img:hover {
            transform: scale(1.02);
        }

        .image-caption {
            font-style: italic;
            font-size: 0.95rem;
            color: #666;
            margin-top: 1rem;
            text-align: center;
            padding: 0 2rem;
        }

        .quote {
            font-style: italic;
            font-size: 1.2rem;
            color: #5a4a35;
            margin: 2.5rem 0;
            padding: 2rem;
            background: rgba(139, 122, 93, 0.1);
            border-left: 5px solid #8b7a5d;
            border-radius: 0 15px 15px 0;
            position: relative;
        }

        .quote::before {
            content: '"';
            font-size: 4rem;
            font-family: 'Playfair Display', serif;
            position: absolute;
            top: -10px;
            left: 10px;
            color: #8b7a5d;
            opacity: 0.5;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-title {
                font-size: 2.5rem;
            }
            
            .header-subtitle {
                font-size: 1.1rem;
            }
            
            main {
                margin-top: -30px;
                padding: 2rem 1rem;
            }
            
            .article-title {
                font-size: 2.2rem;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 1rem;
            }
            
            .subtitle::before,
            .subtitle::after {
                display: none;
            }
            
            .paragraph {
                font-size: 1rem;
                text-indent: 1.5rem;
            }
        }

        /* Scroll animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }