 :root {
            --primary-lilac: #9b59b6;
            --dark-lilac: #8e44ad;
            --purple: #6c5ce7;
            --burgundy: #74b9ff;
            --dark-gray: #2c3e50;
            --light-gray: #ecf0f1;
            --dark-pink: #c2185b;
            --pink: #e91e63;
            --light-lilac: #d1b3ff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: #fafafa;
        }


        /* Navbar */
        .navbar {
            background: var(--light-gray);
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(155, 89, 182, 0.2);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--purple) !important;
            display: flex;
            align-items: center;
        }

        .logo-placeholder {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 8px;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-lilac);
            font-weight: bold;
        }

        .navbar-nav .nav-link {
            color: var(--purple) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color:  var(--primary-lilac)!important;
            transform: translateY(-1px);
        }

        /* Article Header */
        .article-header {
            background: linear-gradient(135deg, var(--primary-lilac), var(--purple));
            color: white;
            padding: 120px 0 60px;
        }

        .article-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            font-size: 1rem;
            opacity: 0.9;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .category-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: 500;
        }

        /* Main Content */
        .main-content {
            padding: 60px 0;
        }

        .article-content {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 40px;
            margin-bottom: 30px;
        }

        .featured-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(45deg, var(--primary-lilac), var(--purple));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            margin-bottom: 40px;
        }

        .article-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
        }

        .article-text h3 {
            color: var(--dark-gray);
            margin: 40px 0 20px;
            font-weight: 600;
        }

        .article-text p {
            margin-bottom: 25px;
        }

        .highlight-quote {
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(108, 92, 231, 0.1));
            border-left: 4px solid var(--primary-lilac);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            font-size: 1.2rem;
            color: var(--dark-gray);
        }

        /* Social Share */
        .social-share {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-bottom: 30px;
        }

        .share-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--dark-gray);
        }

        .share-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .share-btn {
            padding: 12px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .share-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .share-facebook {
            background: #1877f2;
            color: white;
        }

        .share-twitter {
            background: #1da1f2;
            color: white;
        }

        .share-linkedin {
            background: #0077b5;
            color: white;
        }

        .share-whatsapp {
            background: #25d366;
            color: white;
        }

        /* Sidebar */
        .sidebar {
            padding-left: 30px;
        }

        .widget {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .widget-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-lilac);
        }

        .quote-widget {
            background: linear-gradient(135deg, var(--primary-lilac), var(--purple));
            color: white;
            text-align: center;
        }

        .quote-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .quote-author {
            font-weight: 600;
            opacity: 0.9;
        }

        .related-links {
            list-style: none;
        }

        .related-links li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

        .related-links li:last-child {
            border-bottom: none;
        }

        .related-links a {
            color: var(--dark-gray);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s ease;
        }

        .related-links a:hover {
            color: var(--primary-lilac);
        }

        .week-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(45deg, var(--burgundy), var(--purple));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            text-align: center;
            padding: 20px;
            font-weight: 500;
            line-height: 1.4;
        }

        /* Author Bio */
        .author-bio {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-top: 40px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-lilac), var(--purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            flex-shrink: 0;
        }

        .author-info h4 {
            color: var(--dark-gray);
            margin-bottom: 10px;
        }

        .author-info p {
            color: #666;
            margin: 0;
        }

        /* Footer */
        .footer {
            background: var(--dark-gray);
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .article-title {
                font-size: 2rem;
            }
            
            .sidebar {
                padding-left: 0;
                margin-top: 40px;
            }
            
            .article-content {
                padding: 25px;
            }
            
            .featured-image {
                height: 250px;
                font-size: 3rem;
            }
            
            .author-bio {
                flex-direction: column;
                text-align: center;
            }
            
            .share-buttons {
                justify-content: center;
            }
        }