        .article-hero {
            padding-top: 158px !important;
        }
        
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #E07600;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        
        .glass-nav {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(78, 169, 29, 0.1);
        }
        
        @keyframes logo-glow {
            0%, 100% { box-shadow: 0 0 15px rgba(78, 169, 29, 0.3); }
            50% { box-shadow: 0 0 25px rgba(78, 169, 29, 0.6); }
        }
        .logo-glow {
            animation: logo-glow 3s infinite;
        }

        .arrow-icon {
            transition: transform 0.3s ease;
        }
        .group:hover .arrow-icon {
            transform: rotate(180deg);
        }
        
        .logo-shine {
            animation: logo-shine 2s ease-in-out infinite alternate;
        }

        @keyframes logo-shine {
            0% {
                transform: skewX(-12deg) translateX(-150%);
            }
            100% {
                transform: skewX(-12deg) translateX(150%);
            }
        }

        .article-card {
            transition: all 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .gradient-text {
            background: linear-gradient(90deg, #E07600, #4EA91D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .share-btn {
            transition: all 0.3s ease;
        }
        
        .share-btn:hover {
            transform: scale(1.1);
        }
        
        .article-meta-bar {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 8px;
        }
        
        .article-content {
            line-height: 1.8;
        }
        
        .article-content h2 {
            font-size: 1.875rem;
            font-weight: 700;
            color: #1f2937;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #f3f4f6;
        }
        
        .article-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #374151;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        .article-content p {
            margin-bottom: 1.5rem;
            color: #4b5563;
        }
        
        .article-content ul, .article-content ol {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }
        
        .article-content li {
            margin-bottom: 0.5rem;
        }
        
        .article-content blockquote {
            border-left: 4px solid #E07600;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            background: linear-gradient(90deg, rgba(224, 118, 0, 0.05), rgba(78, 169, 29, 0.05));
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #4b5563;
        }
        
        .article-content img {
            border-radius: 12px;
            margin: 2rem auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            max-width: 100%;
            height: auto;
        }
        
        .article-content a {
            color: #E07600;
            text-decoration: none;
            border-bottom: 1px dotted #E07600;
            transition: all 0.3s ease;
        }
        
        .article-content a:hover {
            color: #4EA91D;
            border-bottom-style: solid;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, rgba(224, 118, 0, 0.1), rgba(78, 169, 29, 0.1));
            border-left: 4px solid #4EA91D;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        
        .highlight-box strong {
            color: #E07600;
        }
        
        .content-decoration {
            position: relative;
        }
        
        .content-decoration::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #E07600, #4EA91D);
            border-radius: 2px;
        }
        
        .floating-share {
            position: fixed;
            left: 2rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 40;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            background: white;
            padding: 1rem;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            animation: floatUp 2s ease-in-out infinite alternate;
        }
        
        @keyframes floatUp {
            0% {
                transform: translateY(-50%) translateY(0);
            }
            100% {
                transform: translateY(-50%) translateY(-10px);
            }
        }
        
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #E07600, #4EA91D);
            transform-origin: left;
            transform: scaleX(0);
            z-index: 50;
            transition: transform 0.1s ease;
        }
        
        .article-featured-image {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            margin-bottom: 3rem;
        }
        
        .article-featured-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
            pointer-events: none;
        }
        
        .author-card {
            background: linear-gradient(135deg, #f9fafb, #f3f4f6);
            border-left: 4px solid #E07600;
        }