        /* Palet Warna Dark Mode */
        .dark-theme {
            --bg-card: #1e293b;
            --bg-body: #0f172a;
            --bg-accent: #334155;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --star-gold: #fbbf24;
            --border-color: #334155;
            --btn-primary: #38bdf8;
        }

        .main-comment-container {
            max-width: 600px;
            width: 100%;
            background-color: var(--bg-card);
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            font-family: 'Segoe UI', Roboto, sans-serif;
            margin: 20px auto;
            color: var(--text-main);
        }

        /* 1. Header Rating Dark */
        .rating-header-section {
            display: flex;
            gap: 30px;
            padding: 20px;
            background: var(--bg-body);
            border-radius: 12px;
            margin-bottom: 25px;
            align-items: center;
            border: 1px solid var(--border-color);
        }

        .rating-summary-left { text-align: center; min-width: 120px; }
        .score-number { font-size: 3.5rem; font-weight: 800; line-height: 1; color: var(--text-main); }

        .stars-display {
            font-size: 1.2rem;
            color: #475569;
            margin: 8px 0;
            display: flex;
            justify-content: center;
            gap: 2px;
        }
        .star-active { color: var(--star-gold); }
        .star-half-container { position: relative; display: inline-block; }
        .star-half-fill {
            position: absolute; top: 0; left: 0; width: 50%; overflow: hidden; color: var(--star-gold);
        }

        .rating-bars-right { flex: 1; display: flex; flex-direction: column; gap: 6px; }
        .bar-item { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--text-muted); }
        .bar-container { flex: 1; height: 8px; background-color: var(--bg-accent); border-radius: 10px; }
        .bar-fill { height: 100%; background-color: var(--star-gold); border-radius: 10px; }

        /* 2. List Komentar Dark */
        .comment-list-wrapper { display: flex; flex-direction: column; gap: 20px; }
        .comment-card { display: flex; gap: 15px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color); }
        .comment-card:last-child { border-bottom: none; }
        
        .comment-avatar img { width: 45px; height: 45px; border-radius: 50%; border: 2px solid var(--bg-accent); }
        .comment-author { font-weight: 700; font-size: 0.9rem; color: var(--text-main); }
        .user-rating-stars { font-size: 0.8rem; color: var(--star-gold); margin: 2px 0 6px 0; }
        .star-off { color: #475569; }
        .comment-date { font-size: 0.75rem; color: var(--text-muted); }
        .comment-text { font-size: 0.9rem; color: #cbd5e1; line-height: 1.5; margin-bottom: 10px; }

        /* 3. Helpful Section Dark */
        .helpful-section { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
        .helpful-count { font-size: 0.75rem; color: var(--text-muted); }
        .btn-vote {
            background: var(--bg-accent); border: 1px solid var(--border-color); padding: 3px 10px; border-radius: 4px;
            font-size: 0.7rem; font-weight: 600; color: var(--text-main); cursor: pointer;
        }
        .btn-vote:hover { background: #475569; border-color: var(--btn-primary); }
        .reply-link { font-size: 0.8rem; color: var(--btn-primary); text-decoration: none; font-weight: 600; margin-left: auto; }

        .section-divider { border: 0; border-top: 1px solid var(--border-color); margin: 25px 0; }

        /* 4. Form Dark */
        textarea { 
            width: 100%; min-height: 80px; padding: 12px; 
            background: var(--bg-body); border: 1px solid var(--border-color); 
            border-radius: 8px; font-family: inherit; color: var(--text-main); margin-bottom: 10px; 
        }
        textarea:focus { outline: none; border-color: var(--btn-primary); }
        .btn-submit { 
            background-color: var(--btn-primary); color: #0f172a; border: none; 
            padding: 10px 20px; border-radius: 6px; cursor: pointer; font-weight: 700; width: 100%; 
        }
        .btn-submit:hover { background-color: #7dd3fc; }

        @media (max-width: 480px) { .rating-header-section { flex-direction: column; } .reply-link { margin-left: 0; width: 100%; } }