 /* Article-specific CSS (independent of header CSS) */
        .article-page-container {
            width: 100%;
            max-width: 1360px;
            margin: 0 auto;
            padding: 20px 15px; /* Minimal padding, adjusted for mobile */
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; /* System font stack */
            background: #1e1e1e; /* Independent background */
            color: #fff;
            min-height: 100vh;
            box-sizing: border-box;
            margin-top: 120px;
        }

        .article-banner {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 20px;
        }

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

        .article-banner-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .article-banner-text h1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .article-banner-text p {
            font-size: 18px;
            font-weight: 400;
        }

        .article-content-wrapper {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
            width: 100%;
            margin-bottom: 20px;
        }

        .article-core {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            padding: 20px;
            color: #fff;
            width: 100%;
        }

        .article-core h2 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .article-core p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .article-core a {
            color: #ff6b6b;
            text-decoration: none;
        }

        .article-core a:hover {
            color: #d9534f;
        }

        .article-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 10px;
            margin: 15px 0;
            cursor: pointer;
        }

        .article-sidebar {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            padding: 20px;
            color: #fff;
            position: sticky;
            top: 20px; /* Adjusted for minimal header interference */
            align-self: start;
            width: 100%;
        }

        .article-sidebar.sticky {
            position: sticky;
            top: 20px;
        }

        .article-sidebar h3 {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .article-sidebar ul {
            list-style: none;
            padding: 0;
        }

        .article-sidebar li {
            margin-bottom: 10px;
        }

        .article-sidebar a {
            color: #ff6b6b;
            text-decoration: none;
            font-size: 14px;
        }

        .article-sidebar a:hover {
            color: #d9534f;
        }

        .article-sidebar .adsbygoogle {
            width: 100%;
            max-width: 100%;
            margin-bottom: 20px;
            display: block;
        }

        .article-share-dropdown {
            margin-top: 20px;
            position: relative;
            width: 100%;
        }

        .article-share-button {
            background: #4285f4; /* Independent color */
            color: #fff;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.3s ease;
            width: 100%;
            text-align: center;
        }

        .article-share-button:hover {
            background: #3267d6;
        }

        .article-share-menu {
            display: none;
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            padding: 10px;
            margin-top: 5px;
            z-index: 1000;
            width: 100%;
            box-sizing: border-box;
        }

        .article-share-dropdown:hover .article-share-menu {
            display: block;
        }

        .article-share-menu button {
            display: flex;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            color: #fff;
            padding: 10px;
            text-align: left;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.3s ease;
            line-height: 1.5;
        }

        .article-share-menu button:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .article-share-menu i {
            margin-right: 10px;
            font-size: 18px;
            width: 24px; /* Fixed width for alignment */
            text-align: center;
        }

        .article-related {
            width: 100%;
            margin-bottom: 20px;
        }

        .article-related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            width: 100%;
        }

        .article-related-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            padding: 15px;
            color: #fff;
        }

        .article-related-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .article-related-card p {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .article-related-card a {
            color: #ff6b6b;
            text-decoration: none;
        }

        .article-related-card a:hover {
            color: #d9534f;
        }

        .article-footer {
            text-align: center;
            color: #fff;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            width: 100%;
        }

        .article-back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #ff6b6b;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease;
            font-size: 24px;
        }

        .article-back-to-top.show {
            opacity: 1;
        }

        .article-lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .article-lightbox-image {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
        }

        .article-lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            color: #fff;
            font-size: 30px;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .article-page-container {
                padding: 20px 10px;
            }

            .article-content-wrapper {
                grid-template-columns: 1fr; /* Stack article and sidebar */
                width: 100%;
            }

            .article-core {
                width: 100%;
            }

            .article-sidebar {
                position: static; /* Disable sticky on tablet */
                width: 100%;
                margin-top: 20px;
            }

            .article-banner {
                height: 300px;
            }

            .article-banner-text h1 {
                font-size: 28px;
            }

            .article-banner-text p {
                font-size: 16px;
            }

            .article-share-button {
                padding: 10px 15px;
            }

            .article-share-menu button {
                font-size: 13px;
                padding: 8px;
            }

            .article-share-menu i {
                font-size: 16px;
                width: 22px;
            }
        }

        @media (max-width: 768px) {
            .article-page-container {
                padding: 15px 10px;
            }

            .article-core {
                padding: 15px;
            }

            .article-core h2 {
                font-size: 24px;
            }

            .article-core p {
                font-size: 14px;
            }

            .article-image {
                max-width: 100%;
            }

            .article-sidebar {
                padding: 15px;
            }

            .article-sidebar h3 {
                font-size: 18px;
            }

            .article-sidebar a {
                font-size: 13px;
            }

            .article-banner {
                height: 250px;
            }

            .article-banner-text h1 {
                font-size: 24px;
            }

            .article-banner-text p {
                font-size: 14px;
            }

            .article-share-button {
                font-size: 13px;
                padding: 10px;
            }

            .article-share-menu {
                padding: 8px;
            }

            .article-share-menu button {
                font-size: 12px;
                padding: 8px;
            }

            .article-share-menu i {
                font-size: 14px;
                width: 20px;
            }

            .article-related-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .article-page-container {
                padding: 10px 5px;
            }

            .article-core {
                padding: 10px;
            }

            .article-core h2 {
                font-size: 20px;
            }

            .article-core p {
                font-size: 13px;
            }

            .article-sidebar {
                padding: 10px;
            }

            .article-sidebar h3 {
                font-size: 16px;
            }

            .article-sidebar a {
                font-size: 12px;
            }

            .article-banner {
                height: 200px;
            }

            .article-banner-text h1 {
                font-size: 20px;
            }

            .article-banner-text p {
                font-size: 12px;
            }

            .article-share-button {
                font-size: 12px;
                padding: 8px;
            }

            .article-share-menu {
                padding: 6px;
            }

            .article-share-menu button {
                font-size: 11px;
                padding: 6px;
            }

            .article-share-menu i {
                font-size: 12px;
                width: 18px;
            }

            .article-back-to-top {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }