        /* Article Container */
        .article-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 24px 80px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        /* Article Content */
        .article-content {
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 3rem;
        }

        .article-header {
            margin-bottom: 2rem;
        }

        /* Breadcrumb Navigation */
        .breadcrumb {
            justify-content: flex-start;
            gap: 0;
            padding: 0;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .breadcrumb a:hover {
            color: #fff;
        }

        .breadcrumb-separator {
            color: rgba(255, 255, 255, 0.3);
            margin: 0 0.4rem;
        }

        .breadcrumb-current {
            color: rgba(255, 255, 255, 0.6);
        }

        .article-header h1 {
            font-family: 'Satoshi', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #fff;
        }

        .article-meta {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .comment-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 14px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-decoration: none;
            transition: all 0.2s ease;
            font-weight: 500;
            color: #fff;
        }

        .comment-badge:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .article-body {
            margin-top: 2rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
        }

        .article-body h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem;
            color: #fff;
        }

        .article-body h3 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin: 2rem 0 0.8rem;
            color: #fff;
        }

        .article-body p {
            margin-bottom: 1.5rem;
        }

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

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

        .article-body strong {
            color: #fff;
            font-weight: 600;
        }

        .article-body a {
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .article-body a:hover {
            opacity: 0.8;
        }

        /* Discussion CTA */
        .discussion-cta {
            margin: 3rem 0;
            padding: 2.5rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            text-align: center;
        }

        .discussion-cta h3 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .discussion-cta p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
        }

        .discussion-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 14px 32px;
            background: #fff;
            color: #000;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .discussion-cta-button:hover {
            transform: translateY(-2px);
            opacity: 0.95;
        }

        .cta-badge {
            background: rgba(0, 0, 0, 0.1);
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.9rem;
            font-weight: 700;
        }

        /* Share Buttons */
        .share-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .share-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .share-buttons {
            display: flex;
            gap: 1rem;
        }

        .share-button {
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .share-button:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        /* Related Posts Section */
        .related-posts-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .related-posts-title {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1.5rem;
        }

        .related-posts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }

        .related-post-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            text-decoration: none;
            transition: all 0.2s ease;
            display: flex;
            flex-direction: column;
        }

        .related-post-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .related-post-card h4 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 0.75rem 0;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-post-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
            line-height: 1.5;
            margin: 0 0 1rem 0;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-post-date {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
        }

        @media (max-width: 968px) {
            .related-posts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .related-posts-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .sidebar-widget {
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .sidebar-widget h3 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .recent-posts {
            list-style: none;
        }

        .recent-post {
            margin-bottom: 1.2rem;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .recent-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .recent-post a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            line-height: 1.4;
            display: block;
            transition: color 0.2s ease;
        }

        .recent-post a:hover {
            color: #fff;
        }

        .recent-post-date {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            margin-top: 0.5rem;
        }

        /* CTA Widget */
        .cta-widget {
            background: #fff;
            text-align: center;
        }

        .cta-widget h3 {
            color: #000;
        }

        .cta-widget p {
            color: rgba(0, 0, 0, 0.7);
            margin-bottom: 1.5rem;
        }

        .cta-widget-button {
            background: #000;
            color: #fff;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.2s ease;
        }

        .cta-widget-button:hover {
            opacity: 0.9;
        }

        /* Comments Section */
        .comments-section {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .comments-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .comments-header h2 {
            font-family: 'Satoshi', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: #fff;
        }

        .comment-count {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.95rem;
        }

        /* Recent Comments Preview */
        .recent-comments-preview {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .recent-comments-preview h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .preview-comments-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .preview-comment {
            display: flex;
            gap: 1rem;
            padding: 1.25rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            transition: all 0.2s ease;
        }

        .preview-comment:hover {
            background: rgba(0, 0, 0, 0.4);
        }

        .preview-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: #000;
            flex-shrink: 0;
        }

        .preview-content {
            flex: 1;
            min-width: 0;
        }

        .preview-author {
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .preview-text {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
            margin-bottom: 0.5rem;
        }

        .preview-meta {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
        }

        .see-all-link {
            display: inline-block;
            margin-top: 1rem;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: opacity 0.2s ease;
        }

        .see-all-link:hover {
            opacity: 0.8;
        }

        /* Comment Form */
        .comment-form {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 3rem;
        }

        .comment-form h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.2s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .honeypot {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }

        .submit-button {
            background: #fff;
            color: #000;
            padding: 12px 32px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .submit-button:hover:not(:disabled) {
            opacity: 0.9;
        }

        .submit-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .form-message {
            margin-top: 1rem;
            padding: 12px 16px;
            border-radius: 8px;
            font-weight: 500;
        }

        .form-message.success {
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #22C55E;
        }

        .form-message.error {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #EF4444;
        }

        /* Comments List */
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .comment-item {
            background: rgba(10, 10, 10, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.2s ease;
        }

        .comment-item:hover {
            border-color: rgba(255, 255, 255, 0.15);
        }

        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .comment-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .comment-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: #000;
        }

        .comment-meta {
            display: flex;
            flex-direction: column;
        }

        .comment-name {
            font-weight: 600;
            color: #fff;
            font-size: 1.05rem;
        }

        .comment-date {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
            margin-top: 2px;
        }

        .comment-text {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1rem;
            white-space: pre-wrap;
            word-wrap: break-word;
        }

        .comment-actions {
            display: flex;
            gap: 1rem;
        }

        .comment-action-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            padding: 6px 16px;
            border-radius: 6px;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .comment-action-btn:hover {
            border-color: rgba(255, 255, 255, 0.2);
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        .comment-replies {
            margin-left: 3rem;
            margin-top: 1.5rem;
            padding-left: 2rem;
            border-left: 2px solid rgba(255, 255, 255, 0.1);
        }

        .no-comments {
            text-align: center;
            padding: 3rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .no-comments p {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .cancel-reply {
            margin-left: 1rem;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            padding: 6px 16px;
            border-radius: 6px;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .cancel-reply:hover {
            border-color: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .article-container {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
            }
        }

        @media (max-width: 768px) {
            .article-content {
                padding: 2rem 1.5rem;
            }

            .article-header h1 {
                font-size: 1.8rem;
            }

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

            .share-buttons {
                flex-wrap: wrap;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .comment-replies {
                margin-left: 1rem;
                padding-left: 1rem;
            }
        }

        /* Desktop only */
        @media (min-width: 769px) {
            .desktop-only { display: inline-flex; }
        }
        @media (max-width: 768px) {
            .desktop-only { display: none !important; }
        }
