.access-denied-container {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    min-height: 60vh;
                    padding: 2rem;
                }

                .denied-card {
                    background: #FFF;
                    border: 3px solid #000;
                    box-shadow: 6px 6px 0px #000;
                    padding: 3rem;
                    text-align: center;
                    max-width: 500px;
                    width: 100%;
                }

                .denied-card .icon-wrapper {
                    font-size: 3rem;
                    margin-bottom: 1.5rem;
                    color: #d97706;
                }

                .denied-card h2 {
                    font-weight: 950;
                    text-transform: uppercase;
                    margin-bottom: 1rem;
                }

                .denied-card p {
                    font-size: 0.9rem;
                    color: #1e68cb;
                    margin-bottom: 1.5rem;
                }

                .denied-card .btn-back {
                    display: inline-flex;
                    align-items: center;
                    gap: 0.5rem;
                    padding: 0.6rem 1.2rem;
                    background: #fff000;
                    border: 2.5px solid #000;
                    font-weight: 800;
                    text-decoration: none;
                    color: #000;
                    text-transform: uppercase;
                    font-size: 0.8rem;
                    box-shadow: 3px 3px 0px #000;
                }

:root {
            --ut-blue: #1e68cb;
            --ut-dark-blue: #1a4a87;
            --ut-yellow: #FFDE59;
            --brutal-blue: #1e68cb;
            --brutal-yellow: #FFDE59;
            --bg-body: #f3f5fb;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            --card-radius: 18px;
            --border-color: #e2e8f0;
        }

        html, body {
            overflow-x: hidden;
            width: 100%;
            background-color: var(--bg-body) !important;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            color: var(--text-main);
            line-height: 1.5;
        }

        .view-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 1rem 1rem 5rem;
        }

        .comments-mobile-topbar {
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid var(--border-color);
        }

        .comments-mobile-topbar .comments-topbar-title {
            font-size: 1.1rem;
            font-weight: 800;
            margin: 0;
            color: var(--ut-blue);
        }

        .comments-top-btn {
            background: transparent;
            border: none;
            font-size: 1.1rem;
            color: var(--ut-blue);
            cursor: pointer;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .comments-top-avatar {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e2e8f0;
            text-decoration: none;
            margin-left: 0.5rem;
        }

        .comments-top-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .topic-card {
            background: #fff;
            border-radius: var(--card-radius);
            box-shadow: var(--card-shadow);
            padding: 1.25rem;
            margin-bottom: 1.5rem;
            border: none;
        }

        .topic-header {
            border: none;
            padding: 0;
        }

        .badge-group {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .badge-pill {
            font-size: 0.65rem;
            font-weight: 700;
            padding: 0.35rem 0.75rem;
            border-radius: 100px;
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }

        .badge-pill.category {
            background: #eff6ff;
            color: var(--ut-blue);
        }

        .badge-pill.op-tag {
            background: var(--ut-yellow);
            color: #000;
            font-size: 0.6rem;
            padding: 0.2rem 0.5rem;
        }

        .topic-title-text {
            font-size: 1.25rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .author-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: none;
            padding: 0;
            margin-bottom: 1rem;
        }

        .author-profile {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .author-img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .profile-info h5 {
            font-size: 0.95rem;
            font-weight: 700;
            margin: 0;
            color: var(--ut-blue);
        }

        .profile-info .time {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .topic-body {
            font-size: 0.95rem;
            color: #334155;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            border: none;
            padding: 0;
        }

        .discussion-header {
            padding: 0.5rem 0 1rem;
        }

        .discussion-header h3 {
            font-size: 1rem;
            font-weight: 800;
            color: var(--text-main);
            margin: 0;
        }

        .thread-node {
            position: relative;
            margin-bottom: 1.25rem;
        }

        .reply-container {
            display: flex;
            gap: 0.75rem;
        }

        .reply-avatar-col {
            flex-shrink: 0;
        }

        .reply-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            overflow: hidden;
            background: #e2e8f0;
        }

        .reply-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .reply-content-col {
            flex-grow: 1;
        }

        .reply-card {
            background: #fff;
            border-radius: var(--card-radius);
            padding: 0.85rem 1rem;
            box-shadow: var(--card-shadow);
        }

        .reply-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.4rem;
        }

        .reply-author-name {
            font-size: 0.9rem;
            font-weight: 700;
            color: #334155;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .reply-author-name .mod-badge {
            background: var(--ut-dark-blue);
            color: #fff;
            font-size: 0.55rem;
            padding: 0.15rem 0.4rem;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 2px;
        }

        .reply-author-name .reply-like-badge {
            background: #fef3c7;
            color: #92400e;
            border: 1px solid #fde68a;
            font-size: 0.55rem;
            padding: 0.15rem 0.4rem;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 2px;
            font-weight: 700;
        }

        .admin-badge.student-badge {
            background: var(--ut-blue);
            color: #fff;
            border: 1.2px solid #000;
        }

        .reply-time {
            cursor: pointer;
            text-align: left;
        }

        .mention-tag {
            color: var(--ut-blue);
            font-weight: 700;
            background: #eff6ff;
            padding: 0.1rem 0.3rem;
            border-radius: 4px;
        }

        .hashtag-link {
            color: var(--ut-blue);
            text-decoration: none;
            font-weight: 600;
        }

        .hashtag-link:hover {
            text-decoration: underline;
        }

        .thread-children {
            margin-left: 1.25rem;
            padding-left: 0.85rem;
            border-left: 2px solid var(--border-color);
        }

        .reply-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 0.4rem;
            padding-left: 0.5rem;
        }

        @media (max-width: 900px) {
            .forum-header, .comments-side {
                display: none;
            }
            .view-container {
                padding-top: 0.5rem;
            }
        }
        .floating-reply-bar {
            position: fixed;
            bottom: 60px;
            left: 0;
            right: 0;
            z-index: 1500;
            background: #fff;
            border-top: 1px solid var(--border-color);
            padding: 0.5rem 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .reply-input-container {
            flex: 1;
            display: flex;
            align-items: center;
            background: #f1f5f9;
            border-radius: 999px;
            padding: 0.5rem 0.85rem;
            gap: 0.5rem;
            cursor: pointer;
        }

        .reply-input-container input {
            border: none;
            background: transparent;
            outline: none;
            flex: 1;
            font-size: 0.9rem;
            color: var(--text-muted);
            cursor: pointer;
        }

        .reply-input-icon {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .btn-send-round {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--ut-blue);
            color: #fff;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(30, 104, 203, 0.35);
            flex-shrink: 0;
        }

        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1500;
            background: #fff;
            border-top: 1px solid var(--border-color);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            padding: 0.4rem 0 0.5rem;
        }

        .bottom-nav .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.15rem;
            text-decoration: none;
            color: #94a3b8;
            font-size: 0.65rem;
            font-weight: 600;
        }

        .bottom-nav .nav-item i {
            font-size: 1.1rem;
        }

        .bottom-nav .nav-item.active {
            color: var(--ut-blue);
        }

        .topic-footer-modern {
            border-top: 1px solid #f1f5f9;
            padding: 0.75rem 0 0;
        }

        .btn-reply-action {
            background: none;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-muted);
            padding: 0;
            text-decoration: none;
        }

        .btn-reply-action.active {
            color: #ef4444;
        }

        .btn-reply-action:hover {
            color: var(--ut-blue);
        }

        .dropdown-popover {
            position: fixed;
            z-index: 9000;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
            padding: 0.4rem;
            min-width: 160px;
            display: none;
        }

        .dropdown-popover .menu-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.55rem 0.75rem;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #334155;
            cursor: pointer;
            text-decoration: none;
            border: none;
            background: none;
            width: 100%;
        }

        .dropdown-popover .menu-item:hover {
            background: #f8fafc;
        }

        .dropdown-popover .menu-item.danger {
            color: #ef4444;
        }

        .dropdown-popover .menu-item.danger:hover {
            background: #fef2f2;
        }

:root {
            --forum-bg: #eef2f8;
            --forum-surface: #ffffff;
            --forum-border: #d9e1ef;
            --forum-text: #1d2638;
            --forum-muted: #6d7b91;
            --forum-primary: #0d4a92;
            --forum-primary-soft: #deebff;
            --forum-warning: #ffd500;
            --forum-shadow: 0 12px 32px rgba(20, 47, 90, 0.1);
            --forum-shadow-soft: 0 6px 18px rgba(20, 47, 90, 0.08);
        }

        .content-view {
            background: var(--forum-bg) !important;
        }

        .comments-view-container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0.5rem 0 1.5rem;
        }

        .brutal-layout-row {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 1.25rem;
            align-items: start;
        }

        .comments-main,
        .comments-side {
            width: auto !important;
            min-width: 0;
        }

        .comments-side {
            border-left: 0 !important;
            padding-left: 0 !important;
        }

        .forum-header {
            margin-bottom: 0.6rem;
        }

        .btn-back-nav {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            border: 1px solid var(--forum-border);
            border-radius: 12px;
            background: #fff;
            color: #234a85;
            box-shadow: var(--forum-shadow-soft);
            text-transform: none;
            font-size: 0.84rem;
            font-weight: 700;
            padding: 0.58rem 0.92rem;
            margin-bottom: 0.6rem;
        }

        .btn-back-nav:hover {
            transform: none;
            color: #234a85;
            background: #fff;
            box-shadow: var(--forum-shadow);
        }

        .topic-card {
            border: 1px solid var(--forum-border) !important;
            box-shadow: var(--forum-shadow) !important;
            border-radius: 20px !important;
            margin-bottom: 1.2rem !important;
            overflow: hidden;
        }

        .topic-stripe {
            display: none !important;
        }

        .topic-header {
            padding: 1rem 1.15rem !important;
            border-bottom: 1px solid #edf2fb !important;
        }

        .badge-group {
            margin-bottom: 0.75rem !important;
            gap: 0.45rem !important;
        }

        .badge-pill {
            border: 0 !important;
            border-radius: 999px !important;
            box-shadow: none !important;
            text-transform: uppercase;
            font-size: 0.66rem !important;
            font-weight: 700 !important;
            padding: 0.3rem 0.72rem !important;
        }

        .badge-pill.category {
            background: var(--forum-primary-soft) !important;
            color: #1f4b90 !important;
        }

        .badge-pill.pinned {
            background: #e4f6ec !important;
            color: #156345 !important;
        }

        .badge-pill.announce {
            background: #ffe3ec !important;
            color: #b42d5d !important;
        }

        .badge-pill.jurusan {
            background: #f8efcf !important;
            color: #6e5100 !important;
        }

        .badge-pill.mk {
            background: #dde9ff !important;
            color: #214a8d !important;
        }

        .badge-pill.op-mobile {
            display: none;
        }

        .topic-title-text {
            text-transform: none !important;
            color: var(--forum-text) !important;
            font-size: 1.34rem !important;
            line-height: 1.34 !important;
            margin-bottom: 0.68rem !important;
            font-weight: 700 !important;
        }

        .author-meta {
            border-top: 1px solid #edf2fb !important;
            padding-top: 0.8rem !important;
        }

        .author-img {
            width: 42px !important;
            height: 42px !important;
            border-radius: 50% !important;
            border: 1px solid #d4deef !important;
            box-shadow: none !important;
        }

        .profile-info h5 {
            text-transform: none !important;
            font-size: 0.98rem !important;
            font-weight: 700 !important;
            color: var(--forum-text) !important;
        }

        .profile-info .time {
            color: var(--forum-muted) !important;
            font-size: 0.82rem !important;
            margin-top: 0.1rem !important;
        }

        .topic-actions {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: flex-end !important;
            flex-wrap: wrap !important;
            gap: 0.3rem !important;
            margin-left: auto !important;
        }

        .btn-report {
            border: 1px solid var(--forum-border) !important;
            border-radius: 8px !important;
            box-shadow: none !important;
            text-transform: none !important;
            color: #4f6280 !important;
            background: #fff !important;
            padding: 0.24rem 0.5rem !important;
            font-weight: 600 !important;
            font-size: 0.74rem !important;
            line-height: 1.1 !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 0.28rem !important;
        }

        .btn-report i {
            font-size: 0.68rem !important;
        }

        .btn-report:hover {
            transform: none !important;
            box-shadow: var(--forum-shadow-soft) !important;
            background: #f5f9ff !important;
            color: #1f4b90 !important;
        }

        .topic-body {
            padding: 1rem 1.15rem !important;
            border-bottom: 1px solid #edf2fb !important;
            font-size: 0.97rem !important;
            color: #2a3850 !important;
            line-height: 1.7 !important;
            background: #fff !important;
        }

        .topic-attachments {
            padding: 1rem 1.15rem !important;
            border-bottom: 1px solid #edf2fb !important;
        }

        .topic-footer-brutal {
            background: #f7faff !important;
            border-top: 0 !important;
            border-radius: 0 !important;
            padding: 0.88rem 1.15rem !important;
        }

        .btn-brutal-interactive {
            border: 1px solid var(--forum-border) !important;
            border-radius: 999px !important;
            box-shadow: none !important;
            text-transform: none !important;
            font-size: 0.82rem !important;
            font-weight: 600 !important;
            color: #334a66 !important;
            padding: 0.42rem 0.78rem !important;
            background: #fff !important;
        }

        .btn-brutal-interactive:hover {
            transform: none !important;
            box-shadow: var(--forum-shadow-soft) !important;
        }

        .btn-brutal-interactive.active {
            background: var(--forum-primary) !important;
            color: #fff !important;
            border-color: var(--forum-primary) !important;
        }

        .btn-share-card {
            border: 1px solid var(--forum-border) !important;
            box-shadow: none !important;
            border-radius: 10px !important;
            width: 34px !important;
            height: 34px !important;
        }

        .btn-share-card:hover {
            transform: none !important;
            box-shadow: var(--forum-shadow-soft) !important;
        }

        .discussion-header-brutal {
            margin-bottom: 0.95rem !important;
        }

        .discussion-title-box {
            background: transparent !important;
            color: #1f3451 !important;
            border: 0 !important;
            padding: 0 !important;
            text-transform: none !important;
            font-size: 1.14rem !important;
            font-weight: 700 !important;
        }

        .discussion-count-box {
            background: #dbe9ff !important;
            color: #1f4b90 !important;
            border: 0 !important;
            box-shadow: none !important;
            border-radius: 999px !important;
            padding: 0.21rem 0.58rem !important;
            font-size: 0.75rem !important;
        }

        .reply-brutal-card {
            border: 1px solid var(--forum-border) !important;
            box-shadow: var(--forum-shadow-soft) !important;
            border-radius: 14px !important;
            padding: 0.84rem 0.9rem !important;
            margin-bottom: 0.85rem !important;
        }

        .reply-brutal-card.is-endorsed {
            border-color: #f2d58c !important;
            box-shadow: 0 7px 16px rgba(158, 113, 12, 0.15) !important;
        }

        .thread-node .thread-children {
            margin-left: 1rem !important;
            padding-left: 0.82rem !important;
            border-left: 2px solid #d9e1ef !important;
        }

        .avatar-brutal-box {
            width: 34px !important;
            height: 34px !important;
            border-radius: 50% !important;
            border: 1px solid #d3deef !important;
        }

        .avatar-brutal-box .avatar-img {
            border-radius: 50% !important;
        }

        .reply-user-name {
            font-size: 0.95rem !important;
            text-transform: none !important;
            font-weight: 700 !important;
            color: var(--forum-text) !important;
        }

        .reply-time {
            font-size: 0.79rem !important;
            color: #71819b !important;
            font-weight: 500 !important;
        }

        .reply-content {
            padding-left: 0 !important;
            margin-top: 0.42rem !important;
            font-size: 0.95rem !important;
            line-height: 1.58 !important;
            color: #2c3b52 !important;
        }

        .thread-actions {
            padding-left: 0 !important;
            margin-top: 0.55rem !important;
            gap: 0.9rem !important;
        }

        .reply-like-counter {
            font-size: 0.8rem !important;
            color: #61738f !important;
        }

        .btn-thread-action {
            text-transform: none !important;
            font-size: 0.8rem !important;
            padding: 0 !important;
            color: #516580 !important;
        }

        .btn-thread-action.toggle-btn {
            border: 1px solid #d4dced !important;
            background: #eef4ff !important;
            box-shadow: none !important;
            border-radius: 999px !important;
            padding: 0.24rem 0.64rem !important;
        }

        .btn-thread-action.toggle-btn:hover {
            transform: none !important;
            box-shadow: var(--forum-shadow-soft) !important;
        }

        .inline-reply-form {
            margin-left: 0 !important;
            border: 1px solid #dbe3f1 !important;
            border-radius: 12px !important;
            background: #f8fbff !important;
        }

        .inline-reply-textarea {
            border: 1px solid #d0dae9 !important;
            border-radius: 10px !important;
            box-shadow: none !important;
            font-weight: 500 !important;
        }

        .inline-reply-textarea:focus {
            transform: none !important;
            box-shadow: 0 0 0 2px #d6e3fb !important;
        }

        .btn-thread-submit {
            border: 0 !important;
            background: var(--forum-primary) !important;
            box-shadow: none !important;
            text-transform: none !important;
            border-radius: 999px !important;
            padding: 0.35rem 0.75rem !important;
        }

        .reply-editor-brutal {
            border: 1px solid var(--forum-border) !important;
            box-shadow: var(--forum-shadow) !important;
            border-radius: 16px !important;
            padding: 0.95rem 1rem !important;
            margin-top: 1rem !important;
            background: #fff !important;
        }

        .editor-heading-brutal {
            text-transform: none !important;
            font-size: 1.02rem !important;
            color: var(--forum-text) !important;
            font-weight: 700 !important;
        }

        .brutal-textarea {
            border: 1px solid #cfd9ea !important;
            border-radius: 12px !important;
            box-shadow: none !important;
            font-weight: 500 !important;
            color: #24344d !important;
        }

        .brutal-textarea:focus {
            transform: none !important;
            box-shadow: 0 0 0 2px #d6e3fb !important;
        }

        .btn-send-brutal {
            border: 0 !important;
            border-radius: 999px !important;
            box-shadow: none !important;
            text-transform: none !important;
            padding: 0.55rem 1rem !important;
            background: var(--forum-primary) !important;
            color: #fff !important;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-weight: 700;
        }

        .btn-send-brutal:hover {
            transform: none !important;
            box-shadow: var(--forum-shadow-soft) !important;
            color: #fff !important;
            background: #0b3f7c !important;
        }

        .locked-box {
            border: 1px solid var(--forum-border);
            border-radius: 16px;
            background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
            box-shadow: var(--forum-shadow-soft);
            padding: 1.5rem 1.25rem;
            text-align: center;
        }

        .locked-box i {
            color: var(--forum-primary);
        }

        .locked-box h4 {
            margin: 0 0 0.35rem;
            color: #173b69;
            font-size: 1.05rem;
            font-weight: 800;
        }

        .locked-box p {
            margin: 0;
            color: var(--forum-muted);
            font-size: 0.92rem;
            font-weight: 500;
        }

        .locked-box .btn-send-brutal {
            margin-top: 0.9rem !important;
            border: 1px solid var(--forum-primary) !important;
            box-shadow: 0 8px 18px rgba(13, 74, 146, 0.24) !important;
        }

        .admin-bar-brutal {
            margin: 0.45rem 0 1.1rem;
            border: 1px solid var(--forum-border);
            border-radius: 14px;
            background: linear-gradient(135deg, #ffffff 0%, #f6f9ff 100%);
            box-shadow: var(--forum-shadow-soft);
            padding: 0.72rem 0.9rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.85rem;
            flex-wrap: wrap;
        }

        .admin-bar-title {
            font-size: 0.76rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #3f5779;
            display: inline-flex;
            align-items: center;
            gap: 0.38rem;
        }

        .admin-bar-title::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--forum-primary);
            box-shadow: 0 0 0 3px rgba(13, 74, 146, 0.15);
        }

        .admin-actions {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            flex-wrap: wrap;
        }

        .admin-action-form {
            margin: 0;
            display: inline-flex;
        }

        .btn-admin-pill {
            border: 1px solid #cfdbec;
            border-radius: 999px;
            background: #fff;
            color: #3a5579;
            padding: 0.46rem 0.88rem;
            font-size: 0.78rem;
            font-weight: 700;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            gap: 0.42rem;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(20, 47, 90, 0.08);
        }

        .btn-admin-pill:hover {
            background: #f7faff;
            color: #214a83;
            border-color: #c4d6ef;
            box-shadow: 0 6px 14px rgba(20, 47, 90, 0.12);
            transform: translateY(-1px);
        }

        .btn-admin-pill.active {
            border-color: var(--forum-primary);
            background: var(--forum-primary);
            color: #fff;
            box-shadow: 0 8px 16px rgba(13, 74, 146, 0.22);
        }

        .btn-admin-pill.active:hover {
            background: #0c3f7b;
            border-color: #0c3f7b;
            color: #fff;
        }

        .comments-side .suggestions-panel {
            top: 86px !important;
            max-height: calc(100vh - 110px) !important;
            padding-right: 0.2rem;
        }

        @media (max-width: 900px) {
            .comments-view-container {
                max-width: 680px;
                padding: 5rem 0.75rem 8.65rem;
            }

            .brutal-layout-row {
                display: block;
                gap: 0;
            }

            .forum-header,
            .btn-back-nav,
            .comments-side,
            .topic-footer-brutal,
            .admin-bar-brutal {
                display: none !important;
            }

            .topic-card {
                border: 1px solid #e0e6f2 !important;
                box-shadow: none !important;
                border-radius: 14px !important;
                margin-bottom: 1.1rem !important;
            }

            .topic-header {
                border-bottom: 0 !important;
                padding: 0.95rem 0.95rem 0.45rem !important;
            }

            .badge-group {
                justify-content: space-between;
                gap: 0.45rem;
                margin-bottom: 0.75rem;
            }

            .badge-pill {
                font-size: 0.68rem !important;
                padding: 0.28rem 0.66rem !important;
            }

            .badge-pill.pinned,
            .badge-pill.announce,
            .badge-pill.jurusan,
            .badge-pill.mk {
                display: none !important;
            }

            .badge-pill.op-mobile {
                display: inline-flex;
                margin-left: auto;
                background: var(--forum-warning) !important;
                color: #3f3300 !important;
            }

            .topic-title-text {
                font-size: 1.05rem !important;
                margin: 0 !important;
            }

            .author-meta {
                border-top: 0 !important;
                padding-top: 0.52rem !important;
            }

            .profile-info h5 .badge,
            .profile-info h5 .admin-badge,
            .profile-info h5 .jurusan-inline-badge,
            .reply-user-name .badge,
            .reply-user-name .admin-badge,
            .reply-user-name .jurusan-inline-badge,
            .reply-user-name .badge-choice {
                display: none !important;
            }

            .topic-actions,
            .action-wrapper {
                display: none !important;
            }

            .topic-body {
                padding: 0.5rem 0.95rem 1rem !important;
                border-bottom: 0 !important;
                font-size: 1rem !important;
                line-height: 1.58 !important;
            }

            .discussion-header-brutal {
                display: none;
            }

            .reply-brutal-card {
                box-shadow: none !important;
                border-radius: 12px !important;
                padding: 0.72rem 0.78rem !important;
                margin-bottom: 0.82rem !important;
            }

            .thread-node .thread-children {
                margin-left: 0.85rem !important;
                padding-left: 0.7rem !important;
                border-left: 2px solid #d7dfed !important;
            }

            .avatar-brutal-box {
                width: 30px !important;
                height: 30px !important;
            }

            .reply-user-name {
                font-size: 1rem !important;
                font-weight: 600 !important;
            }

            .op-tag-brutal {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 999px;
                font-size: 0.62rem;
                font-weight: 800;
                padding: 0.14rem 0.48rem;
                background: var(--forum-warning);
                color: #3f3300;
                text-transform: uppercase;
            }

            .reply-time {
                font-size: 0.82rem !important;
            }

            .reply-content {
                font-size: 0.98rem !important;
            }

            .thread-actions {
                gap: 0.95rem !important;
            }

            .reply-like-counter {
                font-size: 0.86rem !important;
                font-weight: 600 !important;
            }

            .btn-thread-action {
                font-size: 0.88rem !important;
                font-weight: 600 !important;
            }

            .btn-thread-action.toggle-btn {
                display: none !important;
            }

            .reply-editor-brutal {
                background: #FFFFFF;
                border: 3px solid #000000;
                box-shadow: 8px 8px 0px #000000;
                margin-top: 2.5rem;
                padding: 1.5rem;
                position: relative;
                transition: transform 0.2s;
            }

            .reply-editor-brutal .context-bar {
                background: var(--brutal-yellow);
                border: 3px solid #000;
                padding: 0.6rem 1rem;
                margin-bottom: 1.25rem;
                display: none;
                align-items: center;
                justify-content: space-between;
                box-shadow: 4px 4px 0px #000;
            }

            .reply-editor-brutal .context-bar span {
                color: #000 !important;
                font-weight: 900;
                text-transform: uppercase;
                font-size: 0.85rem;
            }

            .reply-editor-brutal .editor-header {
                margin-bottom: 1.5rem;
                border-left: 6px solid var(--brutal-blue);
                padding-left: 1rem;
            }

            .reply-editor-brutal .editor-heading-brutal {
                font-weight: 950;
                text-transform: uppercase;
                font-size: 1.25rem;
                letter-spacing: -0.02em;
                margin: 0;
            }

            .reply-editor-brutal .reply-body-container {
                margin-bottom: 1.25rem;
            }

            .reply-editor-brutal .brutal-textarea {
                width: 100%;
                border: 3px solid #000;
                padding: 1.2rem;
                font-family: inherit;
                font-weight: 600;
                font-size: 1rem;
                min-height: 160px;
                background: #fdfdfd;
                transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
                border-radius: 0;
                resize: vertical;
            }

            .reply-editor-brutal .brutal-textarea:focus {
                background: #ffffff;
                box-shadow: 6px 6px 0px #000;
                outline: none;
                transform: translate(-2px, -2px);
            }

            .reply-editor-brutal .reply-actions-row {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 1rem;
                flex-wrap: wrap;
            }

            .reply-editor-brutal .btn-insert-image {
                background: #FFF;
                border: 3px solid #000;
                box-shadow: 4px 4px 0px #000;
                padding: 0.6rem 1.2rem;
                font-weight: 900;
                font-size: 0.85rem;
                text-transform: uppercase;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
                cursor: pointer;
                transition: all 0.1s;
            }

            .reply-editor-brutal .btn-insert-image:hover {
                background: var(--brutal-yellow);
                transform: translate(-1px, -1px);
                box-shadow: 5px 5px 0px #000;
            }

            .reply-editor-brutal .btn-send-brutal {
                background: var(--brutal-blue);
                color: #FFF !important;
                border: 3px solid #000;
                box-shadow: 6px 6px 0px #000;
                padding: 0.8rem 1.8rem;
                font-weight: 900;
                font-size: 1rem;
                text-transform: uppercase;
                display: inline-flex;
                align-items: center;
                gap: 0.8rem;
                cursor: pointer;
                transition: all 0.1s;
            }

            .reply-editor-brutal .btn-send-brutal:hover {
                transform: translate(-3px, -3px);
                box-shadow: 9px 9px 0px #000;
                background: #1557b0;
            }

            .reply-editor-brutal .reply-image-preview {
                display: flex;
                flex-wrap: wrap;
                gap: 0.75rem;
                padding: 1.25rem;
                background: #f8fafc;
                border: 3px solid #000;
                margin-top: 1.25rem;
                box-shadow: inset 4px 4px 0px rgba(0,0,0,0.05);
            }

            .reply-editor-brutal .reply-image-preview .preview-header {
                font-weight: 900 !important;
                text-transform: uppercase;
                color: #000 !important;
                border-bottom: 2px solid #000;
                padding-bottom: 0.5rem;
                margin-bottom: 0.75rem !important;
                font-size: 0.75rem !important;
                width: 100%;
            }

            .reply-editor-brutal .reply-image-preview .uploaded-img-preview,
            .reply-editor-brutal .reply-image-preview .pasted-img-preview {
                width: 100px;
                height: 100px;
                object-fit: cover;
                border: 3px solid #000;
                box-shadow: 4px 4px 0px #000;
                background: #fff;
            }

            @media (max-width: 900px) {
                .reply-editor-brutal {
                    position: fixed !important;
                    left: 10px !important;
                    right: 10px !important;
                    bottom: 72px !important;
                    z-index: 2050;
                    margin: 0 !important;
                    padding: 0.75rem !important;
                    border-radius: 12px !important;
                    box-shadow: 6px 6px 0px #000 !important;
                    background: #FFF !important;
                }

                .reply-editor-brutal .editor-header {
                    display: none !important;
                }

                .reply-editor-brutal .context-bar {
                    margin-bottom: 0.6rem;
                    padding: 0.45rem 0.75rem;
                    box-shadow: 3px 3px 0px #000;
                }

                .reply-editor-brutal .context-bar span {
                    font-size: 0.7rem;
                }

                .reply-editor-brutal .reply-form-main {
                    display: flex !important;
                    flex-direction: row !important;
                    align-items: flex-end !important;
                    gap: 0.6rem !important;
                }

                .reply-editor-brutal .reply-body-container {
                    flex-grow: 1;
                    margin: 0 !important;
                }

                .reply-editor-brutal .brutal-textarea {
                    min-height: 46px !important;
                    height: 46px !important;
                    padding: 0.65rem 0.9rem !important;
                    font-size: 0.92rem !important;
                    border-radius: 10px !important;
                    resize: none !important;
                    border-width: 2.5px !important;
                }

                .reply-editor-brutal .reply-actions-row {
                    flex-direction: row !important;
                    gap: 0.5rem !important;
                }

                .reply-editor-brutal .btn-insert-image {
                    width: 46px !important;
                    height: 46px !important;
                    padding: 0 !important;
                    justify-content: center !important;
                    border-radius: 10px !important;
                    border-width: 2.5px !important;
                    box-shadow: 3px 3px 0px #000 !important;
                }

                .reply-editor-brutal .btn-send-brutal {
                    width: 46px !important;
                    height: 46px !important;
                    padding: 0 !important;
                    justify-content: center !important;
                    border-radius: 10px !important;
                    border-width: 2.5px !important;
                    box-shadow: 3px 3px 0px #000 !important;
                }

                .reply-editor-brutal .btn-send-brutal span {
                    display: none !important;
                }

                .reply-editor-brutal .reply-image-preview {
                    position: absolute;
                    bottom: 100%;
                    left: 0;
                    right: 0;
                    margin-bottom: 12px;
                    box-shadow: 6px 6px 0px #000;
                    border-radius: 12px;
                    padding: 1rem;
                }

                .reply-editor-brutal .reply-image-preview .uploaded-img-preview,
                .reply-editor-brutal .reply-image-preview .pasted-img-preview {
                    width: 80px;
                    height: 80px;
                }
            }

            .locked-box {
                margin-bottom: 6.5rem;
            }
        }

.comments-mobile-topbar,
        .comments-bottom-nav {
            display: none;
        }

        .reply-form-main {
            width: 100%;
        }

        .reply-insert-wrap {
            gap: 0.5rem;
        }

        .reply-insert-wrap .btn-insert-image {
            font-weight: 600;
        }

        .reply-image-preview {
            align-items: flex-start;
        }

        .reply-image-preview .preview-header {
            font-size: 0.78rem !important;
            color: #5f7089 !important;
        }

        .reply-image-preview .uploaded-img-preview,
        .reply-image-preview .pasted-img-preview {
            border-radius: 10px !important;
            border-color: #d8e1f1 !important;
        }

        .reply-submit-wrap {
            text-align: right;
        }

        .related-topic-card {
            background: #fff;
            border: 1px solid #dbe3f2;
            border-radius: 14px;
            padding: 0.85rem;
            box-shadow: 0 6px 14px rgba(20, 47, 90, 0.08);
            transition: all 0.18s ease;
            display: flex;
            flex-direction: column;
            min-height: 120px;
        }

        .related-topic-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(20, 47, 90, 0.14);
        }

        .related-topic-title {
            font-size: 0.9rem;
            font-weight: 700;
            line-height: 1.42;
            margin-bottom: 0.75rem;
            color: #1f2f45;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }

        .related-topic-meta {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-top: 1px dashed #dbe3f0;
            padding-top: 0.55rem;
        }

        .related-topic-avatar {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid #cfd9ea;
            flex-shrink: 0;
        }

        .related-topic-avatar-fallback {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 800;
            color: #20467f;
            background: #e3edff;
        }

        .related-topic-author {
            font-size: 0.76rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #667992;
        }

        @media (min-width: 901px) {
            .content-view {
                padding: 1rem 1.15rem !important;
                background: #eef3fb !important;
            }

            .comments-view-container {
                max-width: 1240px;
                padding: 0.2rem 0 1.5rem;
            }

            .brutal-layout-row {
                display: grid;
                grid-template-columns: minmax(0, 1fr) 320px;
                gap: 1.25rem;
                align-items: start;
            }

            .comments-main,
            .comments-side {
                width: auto !important;
            }

            .comments-side {
                border-left: 0 !important;
                padding-left: 0 !important;
            }

            .forum-header {
                margin-bottom: 0.6rem;
            }

            .btn-back-nav {
                border: 1px solid #d7e0ef;
                border-radius: 12px;
                background: #fff;
                color: #224980;
                box-shadow: 0 6px 14px rgba(20, 47, 90, 0.08);
                text-transform: none;
                font-size: 0.84rem;
                padding: 0.55rem 0.92rem;
            }

            .btn-back-nav:hover {
                transform: none;
                background: #fff;
                color: #224980;
                box-shadow: 0 9px 20px rgba(20, 47, 90, 0.13);
            }

            .topic-card {
                border: 1px solid #dce4f2;
                box-shadow: 0 12px 28px rgba(20, 47, 90, 0.1);
                border-radius: 18px;
                overflow: hidden;
                margin-bottom: 1.2rem;
            }

            .topic-stripe {
                display: none;
            }

            .topic-header {
                padding: 1rem 1.1rem;
                border-bottom: 1px solid #edf2fb;
            }

            .badge-group {
                margin-bottom: 0.7rem;
                gap: 0.45rem;
            }

            .badge-pill {
                border: 0;
                border-radius: 999px;
                box-shadow: none;
                font-size: 0.66rem;
                font-weight: 700;
                text-transform: uppercase;
                padding: 0.3rem 0.72rem;
            }

            .badge-pill.category {
                background: #dfeaff;
                color: #244a86;
            }

            .badge-pill.pinned {
                background: #e4f6ec;
                color: #176746;
            }

            .badge-pill.announce {
                background: #ffe3ec;
                color: #b42c5c;
            }

            .badge-pill.jurusan {
                background: #f9efcd;
                color: #6f5101;
            }

            .badge-pill.mk {
                background: #dde9ff;
                color: #234b87;
            }

            .badge-pill.op-mobile {
                display: none;
            }

            .topic-title-text {
                font-size: 1.28rem;
                text-transform: none;
                line-height: 1.34;
                margin-bottom: 0.68rem;
            }

            .author-meta {
                border-top: 1px solid #edf2fb;
                padding-top: 0.78rem;
            }

            .author-img {
                width: 42px;
                height: 42px;
                border-radius: 50%;
                border: 1px solid #d4def0;
                box-shadow: none;
            }

            .profile-info h5 {
                font-size: 1rem;
                text-transform: none;
            }

            .profile-info .time {
                font-size: 0.82rem;
                color: #6d7d97;
            }

            .topic-actions {
                display: inline-flex;
                align-items: center;
                justify-content: flex-end;
                flex-wrap: wrap;
                gap: 0.3rem;
                margin-left: auto;
            }

            .btn-report {
                border: 1px solid #d5deee;
                border-radius: 8px;
                box-shadow: none;
                text-transform: none;
                color: #4f6280;
                background: #fff;
                padding: 0.24rem 0.5rem;
                font-size: 0.74rem;
                line-height: 1.1;
                display: inline-flex;
                align-items: center;
                gap: 0.28rem;
            }

            .btn-report i {
                font-size: 0.68rem;
            }

            .btn-report:hover {
                transform: none;
                box-shadow: 0 6px 14px rgba(20, 47, 90, 0.12);
                background: #f6f9ff;
                color: #204a87;
            }

            .topic-body {
                padding: 1rem 1.1rem;
                font-size: 0.96rem;
                line-height: 1.68;
                border-bottom: 1px solid #edf2fb;
            }

            .topic-attachments {
                padding: 1rem 1.1rem !important;
                border-bottom: 1px solid #edf2fb;
            }

            .topic-footer-brutal {
                background: #f7faff;
                border-top: 0;
                border-radius: 0;
                padding: 0.84rem 1.1rem;
            }

            .btn-brutal-interactive {
                border: 1px solid #d5ddec;
                border-radius: 999px;
                box-shadow: none;
                text-transform: none;
                font-size: 0.82rem;
                font-weight: 600;
                color: #334965;
                padding: 0.42rem 0.78rem;
                background: #fff;
            }

            .btn-brutal-interactive:hover {
                transform: none;
                box-shadow: 0 5px 12px rgba(20, 47, 90, 0.12);
            }

            .btn-brutal-interactive.active {
                background: #1e68cb;
                color: #fff;
                border-color: #1e68cb;
            }

            .btn-share-card {
                border: 1px solid #d5ddec;
                box-shadow: none;
                border-radius: 10px;
                width: 34px;
                height: 34px;
            }

            .btn-share-card:hover {
                transform: none;
                box-shadow: 0 5px 12px rgba(20, 47, 90, 0.12);
            }

            .discussion-header-brutal {
                margin-bottom: 0.9rem;
            }

            .discussion-title-box {
                background: transparent;
                color: #213652;
                border: 0;
                padding: 0;
                text-transform: none;
                font-size: 1.12rem;
                font-weight: 700;
            }

            .discussion-count-box {
                background: #dce9ff;
                color: #1f4b90;
                border: 0;
                box-shadow: none;
                border-radius: 999px;
                padding: 0.2rem 0.58rem;
                font-size: 0.75rem;
            }

            .reply-brutal-card {
                border: 1px solid #dbe3f2;
                box-shadow: 0 7px 16px rgba(20, 47, 90, 0.08);
                border-radius: 14px;
                padding: 0.82rem 0.9rem;
                margin-bottom: 0.8rem;
            }

            .reply-brutal-card.is-endorsed {
                border-color: #f2d58c;
                box-shadow: 0 7px 16px rgba(158, 113, 12, 0.15);
            }

            .thread-node .thread-children {
                margin-left: 1rem;
                padding-left: 0.82rem;
                border-left: 2px solid #d9e1ef;
            }

            .avatar-brutal-box {
                width: 34px;
                height: 34px;
                border-radius: 50% !important;
                border: 1px solid #d3deef !important;
            }

            .avatar-brutal-box .avatar-img {
                border-radius: 50%;
            }

            .reply-user-name {
                font-size: 0.95rem;
                text-transform: none;
                font-weight: 700;
            }

            .reply-time {
                font-size: 0.79rem;
                color: #71819b;
            }

            .reply-content {
                padding-left: 0;
                margin-top: 0.42rem;
                font-size: 0.95rem;
                line-height: 1.58;
                color: #2c3b52;
            }

            .thread-actions {
                padding-left: 0;
                margin-top: 0.55rem;
                gap: 0.9rem;
            }

            .reply-like-counter {
                font-size: 0.8rem;
                color: #61738f;
            }

            .btn-thread-action {
                text-transform: none;
                font-size: 0.8rem;
                padding: 0;
                color: #516580;
            }

            .btn-thread-action.toggle-btn {
                border: 1px solid #d4dced;
                background: #eef4ff;
                box-shadow: none;
                border-radius: 999px;
                padding: 0.24rem 0.64rem;
            }

            .btn-thread-action.toggle-btn:hover {
                transform: none;
                box-shadow: 0 4px 10px rgba(20, 47, 90, 0.1);
            }

            .inline-reply-form {
                margin-left: 0;
                border: 1px solid #dbe3f1;
                border-radius: 12px;
                background: #f8fbff;
            }

            .inline-reply-textarea {
                border: 1px solid #d0dae9;
                border-radius: 10px;
                box-shadow: none;
                font-weight: 500;
            }

            .inline-reply-textarea:focus {
                transform: none;
                box-shadow: 0 0 0 2px #d6e3fb;
            }

            .btn-thread-submit {
                border: 0;
                background: #1e68cb;
                box-shadow: none;
                text-transform: none;
                border-radius: 999px;
                padding: 0.35rem 0.75rem;
            }

            .comments-side .suggestions-panel {
                top: 86px !important;
                max-height: calc(100vh - 110px);
                padding-right: 0.2rem;
            }
        }

        @media (max-width: 900px) {
            body.has-sidebar .mobile-topbar,
            body.has-sidebar .dashboard-topbar {
                display: none !important;
            }

            body.has-sidebar .main-with-sidebar {
                padding-top: 0 !important;
            }

            .content-view {
                padding: 0 !important;
                background: #f3f5fb !important;
            }

            .comments-mobile-topbar {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 2000;
                height: 60px;
                background: #f7f8fc;
                border-bottom: 1px solid #e2e7f1;
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 0.9rem;
            }

            .comments-mobile-topbar .comments-topbar-title {
                margin: 0;
                font-size: 1.35rem;
                font-weight: 700;
                color: #0e3a74;
                line-height: 1;
            }

            .comments-top-actions {
                display: flex;
                align-items: center;
                gap: 0.45rem;
            }

            .comments-top-btn {
                width: 34px;
                height: 34px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 10px;
                text-decoration: none;
                color: #1f3f72;
            }

            .comments-top-btn i {
                font-size: 1.05rem;
            }

            .comments-top-avatar {
                width: 34px;
                height: 34px;
                border-radius: 50%;
                overflow: hidden;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: #0e3a74;
                color: #fff;
                text-decoration: none;
                font-size: 0.82rem;
                font-weight: 700;
            }

            .comments-top-avatar img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .view-container {
                max-width: 680px;
                padding: 5rem 0.75rem 8.65rem;
            }

            .forum-header,
            .btn-back-nav,
            .brutal-side,
            .admin-bar-brutal,
            .topic-footer-brutal {
                display: none !important;
            }

            .brutal-layout-row {
                display: block;
                gap: 0;
            }

            .brutal-main {
                width: 100%;
            }

            .topic-card {
                border: 1px solid #e0e6f2;
                box-shadow: none;
                border-radius: 14px;
                margin-bottom: 1.15rem;
            }

            .topic-stripe {
                display: none;
            }

            .topic-header {
                border-bottom: 0;
                padding: 0.95rem 0.95rem 0.45rem;
            }

            .badge-group {
                justify-content: space-between;
                gap: 0.45rem;
                margin-bottom: 0.75rem;
            }

            .badge-pill {
                border: 0;
                box-shadow: none;
                border-radius: 999px;
                font-size: 0.68rem;
                font-weight: 700;
                padding: 0.28rem 0.66rem;
            }

            .badge-pill.category {
                background: #dfeaff;
                color: #244a86;
            }

            .badge-pill.op-mobile {
                margin-left: auto;
                background: #ffd500;
                color: #3f3300;
            }

            .badge-pill.pinned,
            .badge-pill.announce,
            .badge-pill.jurusan,
            .badge-pill.mk {
                display: none;
            }

            .topic-title-text {
                text-transform: none;
                font-size: 1.05rem;
                line-height: 1.38;
                margin: 0;
                font-weight: 700;
            }

            .author-meta {
                border-top: 0;
                padding-top: 0.5rem;
            }

            .author-img {
                width: 32px;
                height: 32px;
                border: 0;
                box-shadow: none;
                border-radius: 50%;
            }

            .profile-info h5 {
                font-size: 0.95rem;
                font-weight: 600;
                text-transform: none;
            }

            .profile-info h5 .badge,
            .profile-info h5 .admin-badge,
            .profile-info h5 .jurusan-inline-badge {
                display: none !important;
            }

            .profile-info .time {
                font-size: 0.96rem;
                color: #677a95;
            }

            .topic-actions {
                display: none !important;
            }

            .topic-body {
                padding: 0.5rem 0.95rem 1rem;
                border-bottom: 0;
                font-size: 1rem;
                line-height: 1.6;
            }

            .discussion-header-brutal {
                display: none;
            }

            .discussion-area {
                margin-top: 0.15rem;
                margin-bottom: 0.9rem;
            }

            .reply-brutal-card {
                background: #fff;
                border: 1px solid #dfe5f1;
                box-shadow: none;
                border-radius: 12px;
                padding: 0.72rem 0.78rem;
                margin-bottom: 0.85rem;
            }

            .thread-node .thread-children {
                margin-left: 0.85rem;
                padding-left: 0.7rem;
                border-left: 2px solid #d7dfed;
            }

            .avatar-brutal-box {
                width: 30px;
                height: 30px;
                border-radius: 50% !important;
            }

            .avatar-brutal-box .avatar-img {
                border-radius: 50%;
            }

            .reply-user-name {
                font-size: 1rem;
                font-weight: 600;
                text-transform: none;
            }

            .reply-user-name .badge,
            .reply-user-name .admin-badge,
            .reply-user-name .jurusan-inline-badge,
            .reply-user-name .badge-choice {
                display: none !important;
            }

            .op-tag-brutal {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 999px;
                font-size: 0.62rem;
                font-weight: 800;
                padding: 0.14rem 0.48rem;
                background: #ffd500;
                color: #3f3300;
                text-transform: uppercase;
            }

            .reply-time {
                font-size: 0.82rem;
                font-weight: 500;
                color: #6f7d95;
            }

            .reply-content {
                padding-left: 0;
                margin-top: 0.4rem;
                font-size: 0.98rem;
                line-height: 1.55;
                color: #2a364a;
            }

            .action-wrapper,
            .btn-thread-action.toggle-btn {
                display: none;
            }

            .thread-actions {
                padding-left: 0;
                margin-top: 0.55rem;
                gap: 0.95rem;
            }

            .reply-like-counter {
                font-size: 0.86rem;
                font-weight: 600;
                color: #5a6f8f;
            }

            .btn-thread-action {
                font-size: 0.88rem;
                text-transform: none;
                color: #5a6f8f;
                padding: 0;
                font-weight: 600;
            }

            .btn-thread-action.reply-btn {
                color: #4f6280;
            }

            .inline-reply-form {
                margin-left: 0;
                border: 1px solid #dbe3f1;
                border-radius: 12px;
                background: #f8fbff;
            }

            .reply-editor-brutal {
                position: fixed;
                left: 0;
                right: 0;
                bottom: 62px;
                z-index: 2010;
                margin: 0;
                border: 0;
                box-shadow: 0 -10px 30px rgba(20, 43, 81, 0.14);
                border-radius: 18px 18px 0 0;
                background: #eef2f9;
                padding: 0.55rem 0.78rem 0.68rem;
            }

            .reply-editor-brutal .alert,
            .reply-editor-brutal .editor-header,
            .reply-editor-brutal .context-bar {
                display: none !important;
            }

            .reply-editor-brutal .reply-form-main {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                gap: 0.55rem;
            }

            .reply-editor-brutal .reply-insert-wrap {
                flex: 0 0 38px;
                width: 38px;
                margin: 0 !important;
            }

            .reply-editor-brutal .reply-image-preview {
                order: 4;
                width: 100%;
                margin-top: 0.45rem !important;
            }

            .reply-editor-brutal .reply-image-preview .preview-header {
                margin-bottom: 0.25rem !important;
                font-size: 0.68rem !important;
            }

            .reply-editor-brutal .reply-image-preview .uploaded-img-preview,
            .reply-editor-brutal .reply-image-preview .pasted-img-preview {
                width: 72px !important;
                height: 72px !important;
            }

            .reply-editor-brutal .d-flex.justify-content-start.align-items-center.mb-2 {
                margin: 0 !important;
            }

            .reply-editor-brutal .btn-insert-image {
                width: 38px;
                height: 38px;
                padding: 0;
                border: 1px solid #d0dae9;
                border-radius: 11px;
                box-shadow: none !important;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                background: #fff;
                font-size: 0;
                color: #6b7d97 !important;
            }

            .reply-editor-brutal .btn-insert-image i {
                margin: 0 !important;
                font-size: 0.95rem;
            }

            .reply-editor-brutal .brutal-textarea {
                order: 2;
                flex: 1 1 auto;
                min-width: 0;
                min-height: 44px;
                height: 44px;
                padding: 0.58rem 0.85rem;
                border: 1px solid #d0dae9;
                border-radius: 999px;
                box-shadow: none;
                font-size: 0.98rem;
                font-weight: 500;
                resize: none;
                background: #fff;
            }

            .reply-editor-brutal .brutal-textarea:focus {
                transform: none;
                box-shadow: 0 0 0 2px #d6e3fb;
            }

            .reply-editor-brutal .reply-submit-wrap {
                order: 3;
                flex: 0 0 44px;
                width: 44px;
                margin: 0 !important;
                text-align: left !important;
            }

            .reply-editor-brutal .btn-send-brutal {
                width: 44px;
                height: 44px;
                padding: 0;
                border: 0;
                border-radius: 50%;
                box-shadow: 0 8px 20px rgba(13, 74, 146, 0.34);
                justify-content: center;
                background: #0d4a92;
            }

            .reply-editor-brutal .btn-send-brutal span {
                display: none;
            }

            .reply-editor-brutal .btn-send-brutal:hover {
                transform: none;
                box-shadow: 0 8px 20px rgba(13, 74, 146, 0.34);
            }

            .locked-box {
                margin-bottom: 6.5rem;
            }

            .comments-bottom-nav {
                position: fixed;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 2020;
                background: #fff;
                border-top: 1px solid #dce3f1;
                display: grid;
                grid-template-columns: repeat(4, minmax(0, 1fr));
                padding: 0.45rem 0.2rem 0.5rem;
            }

            .comments-bottom-nav a {
                text-decoration: none;
                color: #6f7d94;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0.2rem;
                font-size: 0.7rem;
                font-weight: 600;
            }

            .comments-bottom-nav a i {
                font-size: 0.97rem;
            }

            .comments-bottom-nav a.active {
                color: #1f4a87;
            }
        }

.content-view {
            background: #eef2f8 !important;
        }

        @media (min-width: 901px) {
            .comments-view-container {
                max-width: 1180px !important;
                padding-top: 0.35rem !important;
            }

            .topic-card,
            .reply-brutal-card,

            .comments-bottom-nav {
                box-shadow: 0 -6px 16px rgba(13, 43, 86, 0.08);
            }
        }

#reportModal,
        #editModal {
            z-index: 20020;
        }

        .modal-backdrop {
            z-index: 20010;
        }

.lightbox-overlay {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(4px);
        }

        .lightbox-content {
            margin: auto;
            display: block;
            max-width: 90vw;
            max-height: 85vh;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            animation: zoomIn 0.25s ease-out;
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.2s;
            line-height: 1;
            z-index: 10000;
        }

        .lightbox-close:hover {
            color: #bbb;
            transform: scale(1.1);
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .topic-body img,
        .reply-content img {
            cursor: zoom-in;
            transition: opacity 0.2s;
        }

        .topic-body img:hover,
        .reply-content img:hover {
            opacity: 0.9;
        }

        .reply-body-wrap {
            position: relative;
        }

        .reply-body-collapsible {
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .reply-body-collapsible.is-collapsed::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 72px;
            background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.92) 70%, #fff 100%);
            pointer-events: none;
            z-index: 1;
        }

        .reply-read-more-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            width: 100%;
            padding: 0.55rem 0;
            margin-top: 0.15rem;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 0.82rem;
            font-weight: 700;
            color: #1e68cb;
            letter-spacing: 0.01em;
            position: relative;
            z-index: 2;
            transition: all 0.2s ease;
        }

        .reply-read-more-btn:hover {
            color: #0d4a92;
        }

        .reply-read-more-btn i {
            font-size: 0.68rem;
            transition: transform 0.3s ease;
        }

        .reply-read-more-btn:hover i {
            transform: translateY(2px);
        }

        .reply-card {
            background: #fff;
            border-radius: 16px;
            padding: 0.95rem 1.05rem;
            box-shadow: 0 2px 8px rgba(20, 47, 90, 0.06);
            border: 1px solid #edf2fa;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .reply-card:hover {
            border-color: #d4dff3;
            box-shadow: 0 4px 14px rgba(20, 47, 90, 0.09);
        }

        .reply-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.35rem;
        }

        .reply-author-name {
            font-size: 0.92rem;
            font-weight: 700;
            color: #1b2f4a;
            display: flex;
            align-items: center;
            gap: 0.45rem;
            flex-wrap: wrap;
        }

        .reply-time {
            font-size: 0.78rem;
            color: #7a8da5;
            font-weight: 500;
        }

        .reply-body {
            margin-top: 0.35rem;
            font-size: 0.95rem;
            line-height: 1.62;
            color: #2c3b52;
            word-break: break-word;
        }

        .reply-actions {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            margin-top: 0.55rem;
            padding: 0.35rem 0 0;
            border-top: 1px solid #f0f4fa;
        }

        .reply-actions .btn-reply-action {
            background: none;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.82rem;
            font-weight: 600;
            color: #64748b;
            padding: 0.3rem 0.55rem;
            border-radius: 8px;
            transition: all 0.15s ease;
            text-decoration: none;
        }

        .reply-actions .btn-reply-action:hover {
            background: #eef4ff;
            color: #1e68cb;
        }

        .reply-actions .btn-reply-action i {
            font-size: 0.85rem;
        }

        .btn-thread-toggle {
            background: none;
            border: none;
            color: #1e68cb;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 0.4rem 0.5rem;
            margin-top: 0.2rem;
            margin-left: 1rem;
            margin-bottom: 0.2rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.2s ease;
        }
        .btn-thread-toggle:hover {
            background: #eef4ff;
            color: #0d4a92;
        }

        .thread-node {
            margin-bottom: 0.8rem;
            animation: fadeSlideIn 0.3s ease-out;
        }

        @keyframes fadeSlideIn {
            from { opacity: 0; transform: translateY(6px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .thread-children {
            margin-left: 1.1rem;
            padding-left: 0.9rem;
            border-left: 2px solid #e4eaf5;
        }

        .reply-card.is-endorsed {
            border-color: #f0d97e;
            background: linear-gradient(135deg, #fffef5 0%, #fff 100%);
        }

        .inline-reply-form {
            margin-top: 0.75rem;
            border: 1px solid #dbe4f2 !important;
            border-radius: 14px !important;
            background: #fff !important;
            padding: 0.6rem 0.72rem !important;
        }

        .inline-reply-form .reply-input-container {
            display: flex;
            align-items: flex-end;
            gap: 0.55rem;
            cursor: default;
            position: relative;
            background: #f8fbff;
            border: 1px solid #dbe4f2;
            border-radius: 12px;
            padding: 0.42rem 0.52rem;
        }

        .inline-reply-textarea {
            border: none !important;
            background: transparent !important;
            outline: none !important;
            box-shadow: none !important;
            flex: 1;
            resize: vertical;
            min-height: 42px;
            font-size: 0.9rem;
            line-height: 1.45;
            color: #334155;
            padding: 0.45rem 0.5rem;
        }

        .inline-reply-textarea:focus {
            box-shadow: none !important;
        }

        .inline-reply-form .reply-inline-actions {
            display: flex;
            flex-direction: column;
            gap: 0.24rem;
            align-items: center;
            justify-content: flex-end;
            padding-bottom: 0.14rem;
        }

        .inline-reply-form .reply-inline-btn {
            width: 30px;
            height: 30px;
            border: 1px solid transparent;
            border-radius: 8px;
            background: transparent;
            color: #64748b;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            padding: 0;
        }

        .inline-reply-form .reply-inline-btn:hover {
            background: #edf4ff;
            color: #1e68cb;
            border-color: #d3e2fa;
        }

        .inline-reply-form .reply-inline-btn.is-submit {
            color: #1e68cb;
        }

        @media (max-width: 900px) {
            .reply-body-collapsible.is-collapsed::after {
                height: 56px;
            }

            .reply-read-more-btn {
                font-size: 0.84rem;
                padding: 0.5rem 0;
            }

            .reply-card {
                border-radius: 12px;
                padding: 0.78rem 0.82rem;
            }

            .reply-actions {
                gap: 0.4rem;
                margin-top: 0.4rem;
                padding-top: 0.3rem;
            }

            .reply-actions .btn-reply-action {
                font-size: 0.8rem;
                padding: 0.25rem 0.4rem;
            }

            .thread-children {
                margin-left: 0.8rem;
                padding-left: 0.7rem;
            }
        }

/* Forum view aligned with forum index visual system */
        :root {
            --forum-bg: #f2f4fb;
            --forum-surface: #ffffff;
            --forum-blue: #0d4a92;
            --forum-blue-strong: #0b376d;
            --forum-blue-soft: #dbe7ff;
            --forum-text: #1b1f2b;
            --forum-muted: #677487;
            --forum-border: #dfe5f1;
            --forum-warning: #ffd300;
            --forum-yellow-soft: #fff8db;
            --forum-yellow-line: #f4d98a;
            --forum-blue-line: #cfe0fb;
        }

        .content-view {
            background:
                radial-gradient(circle at top right, rgba(13, 74, 146, 0.08), transparent 38%),
                radial-gradient(circle at top left, rgba(255, 211, 0, 0.08), transparent 30%),
                linear-gradient(180deg, #f5f8ff 0%, var(--forum-bg) 52%, #eef3fb 100%) !important;
            padding: 0 !important;
            gap: 0 !important;
        }

        .comments-view-container {
            width: min(1200px, 100%);
            margin: 0 auto;
            padding: 1rem 1.1rem 1.5rem !important;
            max-width: none !important;
        }

        .brutal-layout-row {
            grid-template-columns: minmax(0, 1fr) 300px !important;
            gap: 1.25rem !important;
        }

        .btn-back-nav {
            border: 1px solid var(--forum-border) !important;
            border-radius: 9px !important;
            background: #fff !important;
            color: var(--forum-blue) !important;
            box-shadow: 0 4px 12px rgba(18, 45, 89, 0.05) !important;
            font-size: 0.78rem !important;
            font-weight: 700 !important;
            padding: 0.48rem 0.72rem !important;
            margin-bottom: 0.52rem !important;
        }

        .btn-back-nav:hover {
            box-shadow: 0 6px 14px rgba(13, 74, 146, 0.08) !important;
            color: var(--forum-blue) !important;
            background: #fff !important;
        }

        .topic-card {
            position: relative;
            background: linear-gradient(180deg, #f9fcff 0%, #ffffff 34%, #ffffff 100%) !important;
            border: 1px solid var(--forum-border) !important;
            border-radius: 10px !important;
            box-shadow: 0 4px 12px rgba(18, 45, 89, 0.05) !important;
            overflow: hidden !important;
            margin-bottom: 0.75rem !important;
        }

        .topic-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--forum-blue), #60a5fa 58%, #facc15);
        }

        .topic-header {
            padding: 0.78rem 0.9rem !important;
            background: linear-gradient(180deg, #f4f8ff 0%, #f9fbff 100%) !important;
            border-bottom: 1px solid #edf1f7 !important;
        }

        .badge-group {
            margin-bottom: 0.56rem !important;
            gap: 0.36rem !important;
        }

        .badge-pill {
            border-radius: 999px !important;
            border: 0 !important;
            box-shadow: none !important;
            font-size: 0.54rem !important;
            font-weight: 700 !important;
            padding: 0.24rem 0.5rem !important;
            letter-spacing: 0 !important;
            text-transform: uppercase !important;
        }

        .badge-pill.category {
            background: #e2ebff !important;
            color: #2b56a3 !important;
        }

        .badge-pill.pinned {
            background: #dff8eb !important;
            color: #18764f !important;
        }

        .badge-pill.announce {
            background: #1d4ed8 !important;
            color: #fff !important;
        }

        .badge-pill.jurusan {
            background: #f5eabc !important;
            color: #7a5a00 !important;
        }

        .badge-pill.mk {
            background: #edf1f6 !important;
            color: #4b5a72 !important;
        }

        .badge-pill.op-mobile {
            background: #ecf2ff !important;
            color: #325eaf !important;
        }

        .topic-title-text {
            margin: 0 0 0.56rem !important;
            color: #161d2c !important;
            font-size: 1.06rem !important;
            line-height: 1.35 !important;
            font-weight: 700 !important;
            text-transform: none !important;
        }

        .author-meta {
            border-top: 1px solid #edf1f7 !important;
            padding-top: 0.62rem !important;
            margin-bottom: 0 !important;
        }

        .profile-info h5 {
            color: #1b2233 !important;
            font-size: 0.86rem !important;
            font-weight: 700 !important;
        }

        .profile-info .time {
            color: var(--forum-muted) !important;
            font-size: 0.72rem !important;
            margin-top: 0.05rem !important;
        }

        .topic-body {
            padding: 0.86rem 0.9rem !important;
            border-bottom: 1px solid #edf1f7 !important;
            font-size: 0.86rem !important;
            line-height: 1.56 !important;
            color: #394457 !important;
            background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
        }

        .topic-attachments {
            padding: 0.8rem 0.9rem !important;
            border-bottom: 1px solid #edf1f7 !important;
        }

        .topic-footer-modern {
            padding: 0.58rem 0.9rem !important;
            border-top: 0 !important;
            background: #fff !important;
        }

        .btn-reply-action {
            border-radius: 8px !important;
            font-size: 0.72rem !important;
            font-weight: 600 !important;
            color: #2a3548 !important;
            padding: 0.25rem 0.44rem !important;
            line-height: 1.1 !important;
        }

        .btn-reply-action:hover,
        .reply-actions .btn-reply-action:hover {
            background: var(--forum-yellow-soft) !important;
            color: var(--forum-blue-strong) !important;
        }

        .btn-reply-action.active {
            color: #ef4444 !important;
        }

        .discussion-header {
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            margin-bottom: 0.52rem !important;
            padding: 0.08rem 0.12rem 0.2rem !important;
        }

        .discussion-header h3 {
            margin: 0 !important;
            font-size: 0.84rem !important;
            font-weight: 700 !important;
            color: #6f5500 !important;
            background: var(--forum-yellow-soft);
            border: 1px solid var(--forum-yellow-line);
            border-radius: 999px;
            padding: 0.24rem 0.62rem;
        }

        .discussion-area {
            background: linear-gradient(180deg, #f8fbff 0%, #ffffff 24%);
            border: 1px solid var(--forum-border);
            border-radius: 10px;
            padding: 0.72rem;
        }

        .thread-node {
            --reply-accent: #7fa7e6;
            --reply-border: #dfe9fb;
            --reply-bg: #fbfdff;
            margin-bottom: 0.62rem !important;
        }

        .thread-node:nth-child(4n + 1) {
            --reply-accent: #7a9fd9;
            --reply-border: #dbe6fa;
            --reply-bg: #fbfdff;
        }

        .thread-node:nth-child(4n + 2) {
            --reply-accent: #d1b56a;
            --reply-border: #f2e7c2;
            --reply-bg: #fffef8;
        }

        .thread-node:nth-child(4n + 3) {
            --reply-accent: #8bb2ea;
            --reply-border: #deebff;
            --reply-bg: #fbfdff;
        }

        .thread-node:nth-child(4n + 4) {
            --reply-accent: #cdb47a;
            --reply-border: #f4e8c8;
            --reply-bg: #fffef9;
        }

        .reply-card {
            position: relative;
            overflow: visible;
            background: linear-gradient(135deg, var(--reply-bg) 0%, #ffffff 56%) !important;
            border: 1px solid var(--reply-border) !important;
            border-radius: 10px !important;
            padding: 0.62rem 0.7rem !important;
            box-shadow: none !important;
        }

        .reply-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 3px;
            background: var(--reply-accent);
            opacity: 0.72;
            border-radius: 10px 0 0 10px;
            pointer-events: none;
        }

        .reply-card:hover {
            border-color: var(--reply-border) !important;
            box-shadow: none !important;
        }

        .reply-card-header {
            margin-bottom: 0.24rem !important;
        }

        .reply-card .dropdown-menu {
            z-index: 2200 !important;
        }

        .reply-author-name {
            font-size: 0.78rem !important;
            color: #1b2233 !important;
        }

        .reply-time {
            font-size: 0.67rem !important;
            color: var(--forum-muted) !important;
            font-weight: 500 !important;
        }

        .reply-body,
        .reply-content {
            color: #394457 !important;
            font-size: 0.82rem !important;
            line-height: 1.45 !important;
            margin-top: 0.32rem !important;
        }

        .reply-actions {
            border-top: 1px solid #edf1f7 !important;
            padding-top: 0.38rem !important;
            margin-top: 0.42rem !important;
            gap: 0.45rem !important;
        }

        .thread-children {
            margin-left: 0.75rem !important;
            padding-left: 0.58rem !important;
            border-left: 2px solid var(--forum-blue-line) !important;
        }

        .btn-thread-toggle {
            color: var(--forum-blue) !important;
            font-size: 0.68rem !important;
            font-weight: 700 !important;
            margin-left: 0.62rem !important;
            padding: 0.24rem 0.4rem !important;
            border-radius: 8px !important;
        }

        .btn-thread-toggle:hover {
            background: #eef4ff !important;
            color: var(--forum-blue) !important;
        }

        .inline-reply-form {
            margin-top: 0.62rem !important;
            border: 1px solid var(--forum-border) !important;
            border-radius: 10px !important;
            background: #f7f9ff !important;
            padding: 0.45rem 0.52rem !important;
        }

        .inline-reply-form .reply-input-container {
            background: #fff !important;
            border: 1px solid var(--forum-border) !important;
            border-radius: 9px !important;
            padding: 0.3rem 0.4rem !important;
        }

        .inline-reply-textarea {
            min-height: 38px !important;
            padding: 0.34rem 0.4rem !important;
            font-size: 0.78rem !important;
            line-height: 1.4 !important;
            color: #1b1f2b !important;
        }

        .inline-reply-form .reply-inline-btn {
            width: 26px !important;
            height: 26px !important;
            border-radius: 7px !important;
        }

        .admin-bar-brutal {
            border: 1px solid var(--forum-border) !important;
            border-radius: 10px !important;
            background: #fff !important;
            box-shadow: 0 4px 12px rgba(18, 45, 89, 0.05) !important;
            padding: 0.58rem 0.7rem !important;
        }

        .btn-admin-pill {
            border-radius: 999px !important;
            box-shadow: none !important;
            font-size: 0.72rem !important;
            padding: 0.36rem 0.65rem !important;
        }

        .btn-admin-pill.active {
            background: var(--forum-blue) !important;
            border-color: var(--forum-blue) !important;
            color: #fff !important;
        }

        #reply-form .form-label {
            font-size: 0.74rem !important;
            color: #1b2233 !important;
        }

        #reply-form #replyContext {
            background: #f7f9ff !important;
            border: 1px solid var(--forum-border) !important;
            border-radius: 10px !important;
            padding: 0.55rem 0.65rem !important;
        }

        #reply-form #reply_textarea {
            border: 1px solid var(--forum-border) !important;
            border-radius: 10px !important;
            background: #f7f9ff !important;
            padding: 0.72rem 0.78rem !important;
            font-size: 0.84rem !important;
        }

        #reply-form .btn.btn-light {
            border: 1px solid var(--forum-border) !important;
            background: #fff !important;
        }

        #reply-form .btn.btn-primary {
            background: var(--forum-blue) !important;
            border-color: var(--forum-blue) !important;
            border-radius: 10px !important;
            font-size: 0.78rem !important;
            font-weight: 700 !important;
            padding: 0.46rem 0.92rem !important;
            box-shadow: none !important;
        }

        .comments-side .suggestions-panel {
            top: 80px !important;
        }

        .related-topic-card {
            position: relative;
            background: linear-gradient(135deg, #f6faff 0%, #ffffff 70%) !important;
            border: 1px solid var(--forum-border) !important;
            border-radius: 10px !important;
            padding: 0.62rem 0.68rem !important;
            box-shadow: 0 4px 12px rgba(18, 45, 89, 0.05) !important;
            min-height: 0 !important;
            overflow: hidden;
        }

        .related-topic-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #60a5fa, #facc15);
        }

        .related-topic-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(13, 74, 146, 0.08) !important;
        }

        .related-topic-title {
            margin: 0 0 0.42rem !important;
            font-size: 0.84rem !important;
            line-height: 1.32 !important;
            color: #1b1f2b !important;
        }

        .related-topic-meta {
            border-top: 1px solid #edf1f7 !important;
            padding-top: 0.42rem !important;
            gap: 0.42rem !important;
        }

        .related-topic-author {
            font-size: 0.68rem !important;
            color: var(--forum-muted) !important;
            text-transform: none !important;
            font-weight: 600 !important;
        }

        .locked-box {
            border: 1px dashed #d5deec !important;
            border-radius: 12px !important;
            background: linear-gradient(180deg, #fffef7 0%, #ffffff 52%) !important;
            box-shadow: none !important;
            padding: 1.1rem 0.9rem !important;
        }

        .locked-box h4 {
            font-size: 0.92rem !important;
            font-weight: 700 !important;
            color: #1b2233 !important;
            text-transform: none !important;
        }

        .locked-box p {
            font-size: 0.78rem !important;
            font-weight: 500 !important;
            color: var(--forum-muted) !important;
        }

        .comments-mobile-topbar {
            background: #fff !important;
            border-bottom: 1px solid var(--forum-border) !important;
            padding: 0.55rem 0.72rem !important;
        }

        .comments-mobile-topbar .comments-topbar-title {
            font-size: 0.9rem !important;
            color: var(--forum-blue) !important;
            font-weight: 800 !important;
        }

        .comments-top-btn {
            width: 32px !important;
            height: 32px !important;
            border-radius: 9px !important;
            border: 1px solid var(--forum-border) !important;
            background: #fff !important;
            color: var(--forum-blue) !important;
            font-size: 0.86rem !important;
        }

        .comments-top-avatar {
            width: 32px !important;
            height: 32px !important;
            border: 1px solid var(--forum-border) !important;
            background: #fff !important;
        }

        @media (max-width: 900px) {
            .comments-view-container {
                max-width: 680px !important;
                padding: 4.85rem 0.72rem 8.2rem !important;
            }

            .discussion-area {
                padding: 0.56rem;
                border-radius: 9px;
            }

            .discussion-header h3 {
                font-size: 0.78rem !important;
                padding: 0.2rem 0.5rem;
            }

            .topic-card {
                border-radius: 10px !important;
                margin-bottom: 0.7rem !important;
            }

            .topic-header {
                padding: 0.68rem 0.72rem !important;
            }

            .topic-title-text {
                font-size: 0.94rem !important;
                margin-bottom: 0.5rem !important;
            }

            .topic-body {
                padding: 0.72rem !important;
                font-size: 0.8rem !important;
                line-height: 1.42 !important;
            }

            .topic-attachments {
                padding: 0.68rem 0.72rem !important;
            }

            .reply-avatar {
                width: 30px !important;
                height: 30px !important;
            }

            .reply-card {
                padding: 0.56rem 0.6rem !important;
                border-radius: 9px !important;
            }

            .reply-author-name {
                font-size: 0.74rem !important;
            }

            .reply-time {
                font-size: 0.64rem !important;
            }

            .reply-content,
            .reply-body {
                font-size: 0.78rem !important;
            }

            .thread-children {
                margin-left: 0.52rem !important;
                padding-left: 0.46rem !important;
            }
        }

        .reply-upload-status {
            display: none;
            margin-top: 0.75rem;
            padding: 0.55rem 0.65rem;
            border: 1px solid #dbeafe;
            border-radius: 10px;
            background: #f8fbff;
        }

        .reply-upload-status.is-visible {
            display: block;
        }

        .reply-upload-status.is-error {
            border-color: #fecaca;
            background: #fff1f2;
        }

        .reply-upload-status__row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
            font-size: 0.74rem;
            font-weight: 700;
            color: #1e68cb;
        }

        .reply-upload-status.is-error .reply-upload-status__row {
            color: #b91c1c;
        }

        .reply-upload-status__text {
            font-size: 0.74rem;
            line-height: 1.35;
        }

        .reply-upload-status__percent {
            font-size: 1rem;
            font-weight: 900;
            color: #1e3a8a;
            min-width: 3rem;
            text-align: right;
            line-height: 1;
        }

        .reply-upload-status__percent.is-pending {
            color: #64748b;
            animation: replyUploadStatusPulse 1.2s ease-in-out infinite;
        }

        [v-cloak] {
            display: none !important;
        }

        .smooth-reply-app {
            margin-bottom: 0.65rem;
        }

        .smooth-reply-stack {
            display: grid;
            gap: 0.62rem;
        }

        .smooth-reply-node {
            margin-bottom: 0 !important;
        }

        .thread-node.is-delete-pending {
            opacity: 0.35;
            transform: translateX(8px);
            transition: opacity 0.12s ease, transform 0.12s ease;
            pointer-events: none;
        }

        .smooth-reply-card {
            border-color: #bfdbfe !important;
            background: linear-gradient(135deg, #eff6ff 0%, #ffffff 68%) !important;
        }

        .smooth-reply-card.is-sent {
            border-color: #bbf7d0 !important;
            background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 70%) !important;
        }

        .smooth-reply-card.is-error {
            border-color: #fecaca !important;
            background: linear-gradient(135deg, #fff1f2 0%, #ffffff 70%) !important;
        }

        .smooth-reply-status {
            display: inline-flex;
            align-items: center;
            gap: 0.28rem;
            border-radius: 999px;
            padding: 0.16rem 0.48rem;
            background: #dbeafe;
            color: #1d4ed8;
            font-size: 0.62rem;
            font-weight: 800;
        }

        .smooth-reply-status.is-uploading,
        .smooth-reply-status.is-sending,
        .smooth-reply-status.is-waiting {
            animation: replyUploadStatusPulse 1.2s ease-in-out infinite;
        }

        .smooth-reply-status.is-sent {
            background: #dcfce7;
            color: #15803d;
            animation: none;
        }

        .smooth-reply-status.is-error {
            background: #fee2e2;
            color: #b91c1c;
            animation: none;
        }

        .smooth-reply-body {
            white-space: pre-wrap;
        }

        .smooth-reply-attachment {
            display: inline-flex;
            align-items: center;
            gap: 0.42rem;
            margin-top: 0.58rem;
            border: 1px solid #dbeafe;
            border-radius: 9px;
            background: #fff;
            color: #1e40af;
            font-size: 0.74rem;
            font-weight: 700;
            padding: 0.38rem 0.56rem;
        }

        .smooth-reply-progress {
            height: 4px;
            margin-top: 0.55rem;
            border-radius: 999px;
            background: #e2e8f0;
            overflow: hidden;
        }

        .smooth-reply-progress span {
            display: block;
            height: 100%;
            width: 0;
            border-radius: inherit;
            background: linear-gradient(90deg, #1e68cb, #facc15);
            transition: width 0.18s ease;
        }

        .smooth-reply-dismiss {
            margin-top: 0.58rem;
            border: 0;
            border-radius: 999px;
            background: #fee2e2;
            color: #991b1b;
            font-size: 0.72rem;
            font-weight: 800;
            padding: 0.28rem 0.62rem;
        }

        .smooth-reply-enter-active,
        .smooth-reply-leave-active {
            transition: opacity 0.22s ease, transform 0.22s ease;
        }

        .smooth-reply-enter-from,
        .smooth-reply-leave-to {
            opacity: 0;
            transform: translateY(8px);
        }

        @keyframes replyUploadStatusPulse {
            0%, 100% {
                opacity: 0.65;
            }
            50% {
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .reply-upload-status__row {
                align-items: flex-start;
                flex-direction: column;
                gap: 0.28rem;
            }

            .reply-upload-status__percent {
                text-align: left;
                font-size: 0.95rem;
            }
        }
