
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #1a1a1a;
            line-height: 1.7;
            background: #ccc;
        }

        /* Container artikel */
        .article-wrapper {
            max-width: 1024px;
            margin: 0 auto;
            padding: 4em 2em;
            background: white;
            border-radius: 10pt;
        }

        /* Breadcrumb */
        .breadcrumb {
            font-size: 0.75em;
            color: #666;
            margin-bottom: 2.5em;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-weight: 500;
        }

        .breadcrumb a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s;
        }

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

        .breadcrumb span {
            margin: 0 0.8em;
            color: #ccc;
        }

        /* Judul artikel */
        .article-title {
            font-size: 3.5em;
            font-weight: 800;
            color: #0a0a0a;
            margin-bottom: 0.4em;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        /* Meta info */
        .article-meta {
            display: flex;
            align-items: center;
            gap: 1.5em;
            margin-bottom: 3em;
            padding-bottom: 2em;
            border-bottom: 1px solid #e8e8e8;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 0.8em;
        }

        .author-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.1em;
        }

        .author-details {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-weight: 600;
            font-size: 0.95em;
            color: #0a0a0a;
        }

        .article-date {
            font-size: 0.85em;
            color: #666;
        }

        /* Gambar featured */
        .featured-image {
            width: 100%;
            margin-bottom: 3em;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Konten artikel */
        .article-content {
            font-size: 1.125em;
            line-height: 1.8;
            color: #2d2d2d;
        }

        .article-content p {
            margin-bottom: 1.8em;
        }

        .article-content h2,
        .article-content h3 {
            margin-top: 2.5em;
            margin-bottom: 1em;
            color: #0a0a0a;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .article-content h2 {
            font-size: 1.8em;
        }

        .article-content h3 {
            font-size: 1.4em;
        }

        /* Divider */
        .content-divider {
            margin: 4em 0;
            height: 1px;
            background: linear-gradient(to right, transparent, #e0e0e0, transparent);
        }

        /* Form komentar */
        .comment-section {
            margin-top: 5em;
            padding: 3em;
            background: #f8f9fa;
            border-radius: 16px;
        }

        .comment-section h3 {
            font-size: 1.75em;
            margin-bottom: 0.3em;
            color: #0a0a0a;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .comment-note {
            font-size: 0.9em;
            color: #6b7280;
            margin-bottom: 2em;
        }

        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5em;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1em;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 0.875em;
            margin-bottom: 0.6em;
            color: #374151;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            padding: 0.9em 1.1em;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-size: 0.95em;
            font-family: inherit;
            transition: all 0.2s;
            background: white;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

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

        .save-info {
            display: flex;
            align-items: center;
            gap: 0.6em;
            font-size: 0.9em;
            color: #6b7280;
        }

        .save-info input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: #667eea;
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1em 2.5em;
            border: none;
            border-radius: 10px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            align-self: flex-start;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Responsif */
        @media (max-width: 768px) {
            .article-wrapper {
                padding: 2em 1.5em;
            }

            .article-title {
                font-size: 2.2em;
            }

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

            .comment-section {
                padding: 2em 1.5em;
            }
        }
