        /* =======================================================
           post.css - NEON FUSION V2: EPIC CYBER GLITCH
           (FIXED: Added missing @keyframes fadeIn)
           ======================================================= */
        
        /* --- Custom Properties for Easy Management (Pastikan ini sesuai) --- */
        :root {
            --bg-color: #0d001a;       /* Deep Dark Violet */
            --text-color: #e8f0f7;     /* Soft White */
            --neon-emerald: #00ff77;   /* Primary Highlight: Bright Emerald/Green */
            --neon-gold: #ffcc00;      /* Secondary Highlight: Muted Gold/Yellow */
            --card-bg: rgba(20, 0, 40, 0.7);
            --border-color: rgba(255, 255, 255, 0.1);
            
            --font-primary: 'Share Tech Mono', monospace;
            --font-secondary: 'Press Start 2P', cursive;
        }

        * { 
            margin:0; 
            padding:0; 
            box-sizing:border-box; 
        }
        body {
            font-family: var(--font-primary);
            background: var(--bg-color);
            color: var(--text-color);
            overflow-x: hidden;
            line-height: 1.8;
            min-height: 100vh;
        }
        a { text-decoration: none; color: var(--neon-emerald); }

        /* --- GLOBAL ANIMATION UTILITIES --- */
        .fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s forwards;
        }
        .delay-200 { animation-delay: 0.2s; }
        .delay-400 { animation-delay: 0.4s; }
        .delay-600 { animation-delay: 0.6s; }
        .delay-800 { animation-delay: 0.8s; }

        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- GLITCH EFFECT (Optional, for extra epicness) --- */
        @keyframes textGlitch {
            0% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
            100% { transform: translate(0); }
        }

        /* --- FADE IN KEYFRAME (THE FIX) --- */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }


        /* ================== POST HEADER ================== */
        .post-header {
            text-align: center;
            padding: 70px 20px 30px;
            background: linear-gradient(180deg, rgba(0,0,0,0.5), var(--bg-color));
            position: relative;
            overflow: hidden;
        }
        .category-tag-header a {
            display: inline-block;
            color: var(--neon-emerald);
            text-transform: uppercase;
            font-size: 0.8rem;
            padding: 5px 10px;
            border: 1px solid var(--neon-emerald);
            margin-bottom: 20px;
            transition: all 0.3s;
            box-shadow: 0 0 8px rgba(0, 255, 119, 0.4);
        }
        .category-tag-header a:hover {
            background: var(--neon-emerald);
            color: var(--bg-color);
            box-shadow: 0 0 15px var(--neon-emerald);
            animation: textGlitch 0.5s infinite alternate;
        }
        .post-header h1 {
            font-family: var(--font-secondary);
            font-size: clamp(2rem, 5vw, 3rem);
            color: var(--neon-gold);
            text-shadow: 0 0 15px rgba(255, 204, 0, 0.8);
            margin-bottom: 20px;
            line-height: 1.3;
            animation: fadeIn 1s ease-out;
        }
        .post-meta {
            color: #bbb;
            font-size: 0.95rem;
            margin-bottom: 40px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .post-meta span {
            padding: 5px 10px;
            background: rgba(0, 255, 119, 0.1);
            border-radius: 4px;
            border: 1px solid rgba(0, 255, 119, 0.2);
            transition: transform 0.3s;
        }
        .post-meta span:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 255, 119, 0.3);
        }
        .post-meta i {
            color: var(--neon-emerald);
            margin-right: 5px;
        }


        /* ================== POST CONTENT ================== */
        .post-container {
            max-width: 900px;
            margin: auto;
            padding: 0 20px 80px;
        }
        .post-image {
            position: relative;
        }
        .post-image img {
            width: 100%;
            max-height: 800px;
            object-fit: cover;
            border-radius: 8px;
            margin: 20px 0 40px;
            box-shadow: 0 0 30px rgba(0, 255, 119, 0.4); 
            border: 2px solid var(--neon-emerald);
        }

        .post-content {
            font-size: 1.1rem;
            color: var(--text-color);
            text-align: justify;
            padding: 10px;
        }

        .post-content p {
            margin-bottom: 20px;
        }

        .post-content h2, .post-content h3 {
            color: var(--neon-gold);
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.7);
            margin: 40px 0 20px;
            font-weight: 600;
            font-family: var(--font-secondary);
            font-size: 1.4rem;
            line-height: 1.3;
            border-left: 5px solid var(--neon-gold);
            padding-left: 15px;
            animation: fadeIn 0.5s ease-out;
        }

        .post-content img {
            max-width: 100%;
            height: auto;
            border-radius: 6px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
            transition: transform 0.4s, box-shadow 0.4s;
            cursor: pointer;
        }
        .post-content img:hover {
            transform: scale(1.02);
            box-shadow: 0 0 25px var(--neon-emerald);
        }

        blockquote {
            background: rgba(255, 204, 0, 0.08); 
            border-left: 6px solid var(--neon-gold);
            padding: 20px 30px;
            color: #ccc;
            margin: 30px 0;
            border-radius: 8px;
            font-style: italic;
            box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        /* --- Share Section --- */
        .separator {
            margin: 60px 0;
            border: 0;
            height: 1px;
            background-image: linear-gradient(to right, rgba(0, 0, 0, 0), var(--neon-emerald), rgba(0, 0, 0, 0));
        }
        .share-section {
            margin-top: 40px;
            text-align: center;
        }
        .share-section h3 {
            color: var(--neon-emerald);
            margin-bottom: 20px;
            font-family: var(--font-secondary);
            font-size: 1rem;
            text-shadow: 0 0 5px rgba(0, 255, 119, 0.8);
        }
        .share-buttons a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin: 8px;
            padding: 10px 20px;
            color: white;
            background: transparent;
            border: 2px solid var(--neon-emerald);
            border-radius: 4px;
            transition: all 0.3s;
            font-weight: 700;
            text-transform: uppercase;
        }
        .share-buttons a:hover {
            background: var(--neon-emerald);
            color: var(--bg-color);
            box-shadow: 0 0 20px var(--neon-emerald);
            transform: translateY(-3px) scale(1.05);
        }


        /* ================== RELATED POSTS ================== */
        .related-posts {
            margin-top: 80px;
            padding-top: 40px;
            border-top: 2px dashed var(--neon-gold);
            text-align: center;
        }
        .section-title-related {
            color: var(--neon-gold);
            font-family: var(--font-secondary);
            font-size: 1.1rem;
            text-shadow: 0 0 8px var(--neon-gold);
            margin-bottom: 40px;
        }
        .post-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 30px;
        }
        .post-card {
            background: var(--card-bg); 
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            color: var(--text-color);
            border: 1px solid rgba(255, 204, 0, 0.3);
            transition: transform 0.4s, box-shadow 0.4s;
            opacity: 0; 
            /* Now the fadeIn animation works because the keyframe is defined! */
            animation: fadeIn 0.8s forwards;
        }
        .post-card:nth-child(2) { animation-delay: 0.2s; }
        .post-card:nth-child(3) { animation-delay: 0.4s; }
        .post-card:nth-child(4) { animation-delay: 0.6s; }
        .post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 20px var(--neon-emerald);
            border-color: var(--neon-emerald);
        }
        .post-card .thumb {
            height: 150px;
            background-size: cover;
            background-position: center;
            filter: brightness(0.7);
            transition: filter 0.4s;
        }
        .post-card:hover .thumb {
            filter: brightness(1);
        }
        .post-card h3 {
            padding: 15px;
            font-size: 0.95rem;
            font-family: var(--font-primary);
            line-height: 1.4;
            color: var(--text-color);
        }
        .post-card .date {
            display: block;
            color: var(--neon-emerald); 
            padding: 0 15px 15px;
            font-size: 0.8rem;
            text-shadow: 0 0 3px var(--neon-emerald);
        }

        /* Gaya untuk pesan jika tidak ada postingan terkait */
        .no-related-post {
            color: var(--neon-gold);
            font-style: italic;
            padding: 20px 0;
            text-align: center;
            font-family: var(--font-primary);
            border: 1px dashed rgba(255, 204, 0, 0.15);
            border-radius: 4px;
            margin-top: 20px;
        }

        /* Gaya untuk tombol "Lebih Banyak Lagi" */
        .more-data-container {
            margin-top: 40px;
            text-align: center;
        }
        .btn-more-data {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--neon-emerald);
            color: var(--bg-color);
            border: none;
            border-radius: 4px;
            padding: 12px 30px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s;
            font-family: var(--font-secondary);
            box-shadow: 0 0 15px var(--neon-emerald);
            text-transform: uppercase;
        }
        .btn-more-data:hover {
            background: var(--neon-gold);
            color: var(--bg-color);
            box-shadow: 0 0 20px var(--neon-gold);
            transform: translateY(-2px);
        }
        .btn-more-data i {
            transition: transform 0.3s;
        }
        .btn-more-data:hover i {
            transform: translateX(5px);
        }


        /* ================== COMMENTS SECTION ================== */
        .comments-section {
            margin-top: 80px;
            background: var(--card-bg); 
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(0, 255, 119, 0.4); 
            border: 1px solid var(--neon-emerald);
            transition: box-shadow 0.5s;
        }
        .comments-section:hover {
            box-shadow: 0 0 30px rgba(255, 204, 0, 0.5); 
        }

        .section-title-comments {
            color: var(--neon-emerald);
            font-family: var(--font-secondary);
            font-size: 1.2rem;
            text-shadow: 0 0 10px var(--neon-emerald);
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 1px dashed var(--border-color);
        }
        .comments-section h3 {
            color: var(--neon-gold);
            font-family: var(--font-secondary);
            font-size: 1rem;
            margin-top: 40px;
            margin-bottom: 15px;
            text-shadow: 0 0 5px var(--neon-gold);
        }

        /* --- Comment Form --- */
        .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px 15px;
            border-radius: 4px;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid var(--neon-emerald);
            color: var(--text-color);
            margin-bottom: 15px;
            font-family: var(--font-primary);
            box-shadow: 0 0 5px var(--neon-emerald) inset;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .comment-form input:focus, .comment-form textarea:focus {
            outline: none;
            border-color: var(--neon-gold);
            box-shadow: 0 0 8px var(--neon-gold) inset;
        }
        .comment-form button {
            background: var(--neon-gold);
            color: var(--bg-color);
            border: none;
            border-radius: 4px;
            padding: 12px 25px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s;
            font-family: var(--font-secondary);
            box-shadow: 0 0 15px var(--neon-gold);
            text-transform: uppercase;
        }
        .comment-form button:hover {
            background: var(--neon-emerald);
            box-shadow: 0 0 20px var(--neon-emerald);
            transform: scale(1.02);
        }
        .comment-form button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* --- Load More Button --- */
        .load-more-container {
            text-align: center;
            margin-top: 30px;
        }
        #loadMore {
            background: var(--neon-emerald);
            color: var(--bg-color);
            border: none;
            border-radius: 4px;
            padding: 10px 25px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s;
            font-family: var(--font-secondary);
            box-shadow: 0 0 10px var(--neon-emerald);
            text-transform: uppercase;
        }
        #loadMore:hover {
            background: var(--neon-gold);
            box-shadow: 0 0 15px var(--neon-gold);
            transform: translateY(-2px);
        }

        /* --- Individual Comments (Parent & Replies) --- */
        .comment {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            animation: fadeIn 0.8s ease-out;
            border-left: 3px solid rgba(0, 255, 119, 0.2);
            padding-left: 15px;
            position: relative;
        }
        .reply {
            margin-top: 10px;
            margin-left: 30px; 
            border-left: 3px solid rgba(255, 204, 0, 0.2);
            padding-left: 15px;
        }

        .comment .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--neon-gold);
            color: var(--bg-color);
            font-weight: 700;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            box-shadow: 0 0 10px var(--neon-gold);
            flex-shrink: 0;
            border: 1px solid var(--neon-gold);
        }
        .comment .content {
            background: rgba(255,255,255,0.05);
            padding: 12px 15px;
            border-radius: 8px;
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: background 0.3s;
        }
        .comment:hover .content {
            background: rgba(0, 255, 119, 0.05);
        }

        .comment-author {
            color: var(--neon-gold);
            font-weight: 700;
            font-size: 1.05rem;
            text-shadow: 0 0 2px var(--neon-gold);
        }
        .comment small { 
            color: var(--neon-emerald); 
            font-size: 0.85rem; 
            margin-left: 10px;
        }
        .reply-btn {
            background: none;
            border: none;
            color: var(--neon-emerald);
            font-size: 0.9rem;
            cursor: pointer;
            margin-top: 5px;
            padding: 0;
            transition: color 0.3s;
            font-family: var(--font-primary);
            text-transform: uppercase;
        }
        .reply-btn:hover {
            color: var(--neon-gold);
            text-decoration: none;
            text-shadow: 0 0 5px var(--neon-gold);
        }

        /* --- Notify Popup --- */
        .notify {
            position:fixed;
            bottom:20px;
            right:20px;
            background:var(--neon-emerald);
            color:var(--bg-color);
            padding:10px 18px;
            border-radius:4px;
            opacity:0;
            pointer-events:none;
            transition:opacity .4s ease, transform .4s ease;
            font-weight:600;
            z-index:9999;
            box-shadow: 0 0 15px var(--neon-emerald);
        }
        .notify.show {
            opacity:1;
            transform:translateY(-10px);
        }


        /* ================== MEDIA QUERIES (Mobile Friendly) ================== */
        @media (max-width: 768px) {
            .post-header h1 { font-size: 1.8rem; }
            .post-content { font-size: 1rem; }
            .post-meta { gap: 8px; font-size: 0.9rem; }
            .post-grid { gap: 20px; }
            .share-buttons a { font-size: 0.9rem; padding: 8px 15px; margin: 5px; }
            .comment .avatar { width: 35px; height: 35px; font-size: 16px; }
            .comment { padding-left: 10px; }
            .reply { margin-left: 20px; padding-left: 10px; }
            .btn-more-data { width: 100%; max-width: 300px; } /* Full width di mobile */
        }