/* Article Detail Specific Styles */
        .article-detail-hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
            color: var(--white);
            padding: 8rem 0 4rem;
            margin-top: 76px;
            position: relative;
            overflow: hidden;
        }

        .article-detail-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><path fill="%23ffffff" d="M500,250c138.07,0,250,111.93,250,250S638.07,750,500,750S250,638.07,250,500S361.93,250,500,250z M500,200c-165.69,0-300,134.31-300,300s134.31,300,300,300s300-134.31,300-300S665.69,200,500,200L500,200z"/></svg>');
            background-size: 300px;
            opacity: 0.1;
        }

        .article-header {
            text-align: center;
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .article-category {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
        }

        .article-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-family: 'Playfair Display', serif;
        }

        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            opacity: 0.9;
        }

        .meta-item i {
            font-size: 1.1rem;
        }

        .article-hero-image {
            margin-top: 3rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            max-height: 500px;
        }

        .article-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Article Content Styles */
        .article-content-section {
            padding: 4rem 0;
            background: var(--white);
        }

        .article-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .article-content {
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .article-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary-dark);
            margin: 3rem 0 1.5rem;
            line-height: 1.3;
        }

        .article-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin: 2.5rem 0 1rem;
        }

        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .article-content blockquote {
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            background: var(--bg-light);
            border-radius: 0 10px 10px 0;
            font-style: italic;
            color: var(--text-light);
            font-size: 1.2rem;
        }

        .article-content blockquote::before {
            content: '"';
            font-size: 3rem;
            color: var(--primary-light);
            line-height: 1;
            margin-right: 0.5rem;
        }

        .article-content ul, .article-content ol {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }

        .article-content li {
            margin-bottom: 0.5rem;
        }

        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .article-content a {
            color: var(--primary-color);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: var(--transition);
        }

        .article-content a:hover {
            border-bottom-color: var(--primary-color);
        }

        /* Article Actions */
        .article-actions {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem 0;
            border-top: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
        }

        .action-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--primary-light);
            border-radius: 50px;
            background: transparent;
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
        }

        .action-btn:hover {
            background: var(--primary-light);
            color: var(--white);
            transform: translateY(-2px);
        }

        .action-btn.share-btn {
            position: relative;
        }

        .share-options {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--white);
            border-radius: 15px;
            padding: 1rem;
            box-shadow: var(--shadow);
            display: none;
            flex-direction: column;
            gap: 0.5rem;
            min-width: 150px;
            z-index: 100;
        }

        .share-options.active {
            display: flex;
            animation: fadeInUp 0.3s ease;
        }

        .share-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            text-decoration: none;
            color: var(--text-dark);
            transition: var(--transition);
        }

        .share-option:hover {
            background: var(--bg-light);
        }

        /* Reading Progress */
        .reading-progress {
            position: fixed;
            top: 76px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #e9ecef;
            z-index: 1000;
            display: none;
        }

        .reading-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
            width: 0%;
            transition: width 0.3s ease;
        }

        /* Table of Contents */
        .table-of-contents {
            position: fixed;
            top: 50%;
            right: 2rem;
            transform: translateY(-50%);
            background: var(--white);
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            max-width: 250px;
            max-height: 400px;
            overflow-y: auto;
            display: none;
            z-index: 100;
        }

        .toc-title {
            font-size: 1.1rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .toc-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .toc-item {
            margin-bottom: 0.5rem;
        }

        .toc-link {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            display: block;
            padding: 0.25rem 0;
            border-left: 2px solid transparent;
            padding-left: 0.5rem;
        }

        .toc-link:hover, .toc-link.active {
            color: var(--primary-color);
            border-left-color: var(--primary-color);
        }

        /* Related Articles */
        .related-articles {
            padding: 4rem 0;
            background: var(--bg-light);
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-dark);
            font-family: 'Playfair Display', serif;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .related-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .related-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .related-content {
            padding: 1.5rem;
        }

        .related-category {
            color: var(--primary-color);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .related-title {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .related-excerpt {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 99;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* Reading Time Estimate */
        .edit {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: blue;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .hapus {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: red;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .article-title {
                font-size: 2.5rem;
            }

            .table-of-contents {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .article-detail-hero {
                padding: 6rem 0 3rem;
            }

            .article-title {
                font-size: 2rem;
            }

            .article-meta {
                flex-direction: column;
                gap: 1rem;
            }

            .article-actions {
                flex-direction: column;
                align-items: center;
            }

            .action-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .back-to-top {
                bottom: 1rem;
                right: 1rem;
            }
        }

        @media (max-width: 576px) {
            .article-title {
                font-size: 1.8rem;
            }

            .article-content {
                font-size: 1rem;
            }

            .article-content h2 {
                font-size: 1.5rem;
            }

            .article-content h3 {
                font-size: 1.3rem;
            }

            .article-container {
                padding: 0 1rem;
            }
        }

        /* Print Styles */
        @media print {
            .navbar,
            .article-actions,
            .table-of-contents,
            .related-articles,
            .footer,
            .back-to-top {
                display: none !important;
            }

            .article-detail-hero {
                background: white !important;
                color: black !important;
                padding: 2rem 0 !important;
                margin-top: 0 !important;
            }

            .article-content-section {
                padding: 1rem 0 !important;
            }

            .article-title {
                color: black !important;
            }
        }





















        
        
        
        
        .share-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }
        
        .share-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 28px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .share-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .share-icon:hover::before {
            transform: translateY(0);
        }
        
        .share-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .share-icon:active {
            transform: translateY(0);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }
        
        .facebook {
            background-color: #3b5998;
        }
        
        .twitter {
            background-color: #1da1f2;
        }
        
        .linkedin {
            background-color: #0077b5;
        }
        
        .whatsapp {
            background-color: #25d366;
        }
        
        .telegram {
            background-color: #0088cc;
        }
        
        .copy {
            background-color: #6c757d;
        }
        
        .share-text {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #555;
            font-weight: 500;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .share-icon:hover + .share-text {
            opacity: 1;
        }
        
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: #4CAF50;
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateX(150%);
            transition: transform 0.4s ease;
            z-index: 1000;
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        .share-api {
            background: linear-gradient(135deg, #ff6b6b, #ffa36c);
        }
        
        @media (max-width: 600px) {
            .share-container {
                gap: 15px;
            }
            
            .share-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .container {
                // padding: 25px;
            }
        }
