.comments-container {
    padding-top: 30px;
	padding-bottom: 30px;
	max-width: min-content;
}
.comment-input-section {
    margin-bottom: 32px;
}
.comment-input-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
}
.comment-container {
    flex: 1;
    min-width: 0; 
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    position: relative;
}
.comment-rating-container {
    flex-shrink: 0;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
}
.comment-rating-container .rating-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.comment-rating-container .rating-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.comment-rating-container .rating-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}
.comment-rating-container .rating-label i {
    font-size: 14px;
    color: #6c757d;
}
.comment-rating-container .rating-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}
.comment-rating-container .rating-select {
    flex: 1;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 13px;
    background: white;
    color: #495057;
    cursor: pointer;
}
.comment-rating-container .rating-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}
.comment-rating-container .torrentRating {
    flex-shrink: 0;
    min-width: 60px;
    width: 60px;
}
.comment-rating-container.hidden {
    display: none;
}
.comment-rating-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    padding: 6px 2px;
    border-radius: 4px;
    font-size: 12px;
    color: #6c757d;
    width: 205px;
}
.comment-rating-display .rating-item {
    display: flex;
    align-items: center;
    gap: 4px;
}
.comment-rating-display .rating-label {
    font-weight: 600;
    color: #495057;
}
.comment-rating-display .rating-value {
    background: #e9ecef87;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
    color: #495057;
}
.comment-input-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    position: relative;
}
.comment-input-box textarea {
    width: 100%;
    border: none;
    background: transparent;
    resize: none;
    outline: none;
    font-size: 14px;
    color: #6b7280;
    font-family: inherit;
}
.comment-input-box textarea::placeholder {
    color: #9ca3af;
}
.comment-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.formatting-tools {
    display: flex;
    gap: 8px;
}
.tool-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
    position: relative;
}
.tool-btn:hover {
    background: #00afff;
    color: #374151;
}
.tool-btn.active {
    background: #008bf6;
    color: white;
}
.dropdown-menu.show {
	width: min-content !important;
}
.submit-btn {
    background: #008bf6;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.submit-btn:hover {
    background: #00afff;
}
.submit-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
}
.cancel-btn {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #6b7280;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 8px;
}
.cancel-btn:hover {
    background: #f3f4f6;
    color: #374151;
}
.comments-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 24px;
    align-items: baseline;
    gap: 16px;
}
.comments-title {
    display: flex;
    align-items: center;
    gap: 8px;
}
.comments-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}
.comment-count {
    background: #e9ecef;
    color: rgb(21 21 21 / 87%);
    padding: 0px 15px 0px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
	margin-top: 12px;
    line-height: 24px;
}
.search-container {
    flex: 0 0 240px;
    width: 240px;
    position: relative;
}
.comments-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.comments-search-input-wrapper .bmd-form-group {
    position: relative;
    flex: 1;
    margin: 0;
    overflow: visible;
}
.comments-search-input-wrapper .bmd-form-group.is-filled,
.comments-search-input-wrapper .bmd-form-group {
    position: relative !important;
    overflow: visible !important;
}
.comments-search-input {
    width: 100%;
    padding: 8px 35px 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
    background: white;
    transition: all 0.2s ease;
}
.comments-search-input:focus {
    outline: none;
    border-color: #008bf6;
    box-shadow: 0 0 0 3px rgba(0, 139, 246, 0.1);
}
.comments-search-input::placeholder {
    color: #9ca3af;
}
.search-clear-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s;
    z-index: 10;
}
.comments-search-input-wrapper .bmd-form-group .search-clear-btn,
.bmd-form-group .search-clear-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.comments-search-input-wrapper .search-clear-btn {
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
}
.search-clear-btn:hover {
    background: #f3f4f6;
    color: #6b7280;
}
.sort-dropdown {
    position: relative;
    margin-left: auto;
}
.dropdown-btn {
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s;
}
.dropdown-btn:hover {
    color: #374151;
    background: #f3f4f6;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dropdown-item:hover {
    background: #f3f4f6;
}
.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}
.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}
.dropdown-item.danger {
    color: #dc2626;
}
.dropdown-item.danger:hover {
    background: #fef2f2;
}
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.comment-item {
    position: relative;
    opacity: 1;
    transition: all 0.3s ease;
	border-radius: 12px;
    border: 1px solid #eee;
    padding: 14px;
}
.comment-item:has(.action-btn.active) {
    z-index: 1000;
}
.comment-item.new {
    animation: slideIn 0.5s ease;
}
.comment-item.editing .comment-text {
    display: none;
}
.comment-item.editing .edit-form {
    display: block;
}
.comment-item.comment-highlighted,
.reply-item.comment-highlighted {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin: 8px 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: scale(1.02);
    transition: all 0.5s ease;
}
@keyframes highlightPulse {
    0% { 
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15); 
    }
    50% { 
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25); 
    }
    100% { 
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15); 
    }
}
.comment-item.comment-highlighted,
.reply-item.comment-highlighted {
    animation: highlightPulse 2s ease-in-out 3;
}
.comment-link-copy-message {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.comment-link-copy-message i {
    font-size: 16px;
}
.edit-form {
    display: none;
    margin-bottom: 12px;
}
.edit-form textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 60px;
}
.edit-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.edit-actions button {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.save-btn {
    background: #008bf6;
    color: white;
    border: none;
}
.save-btn:hover {
    background: #00afff;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.comment-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.comment-avatar {
    position: relative;
    flex-shrink: 0;
}
.comment-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.avatar-letter {
    width: 32px;
    height: 32px;
    background: #9E9E9E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}
.status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #ffffff !important;
    background-color: #10b981;
    z-index: 10;
	width: 4px !important;
    height: 4px !important;
	padding: 0.24em !important;
}
.status-indicator:hover {
    background-color: #1bc38b;
}
.verified-badge {
    color: #3b82f6;
    font-size: 12px;
    margin-left: 4px;
}
.edited-badge {
    color: #6b7280;
    font-size: 12px;
    font-style: italic;
}
.comment-body {
    flex: 1;
    min-width: 0;
	padding-top: 2px;
}
.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    min-height: 32px;
}

.moderation-badge {
    display: inline-flex;
    align-items: center;
    padding: 1px 5px;
    background: #ffeaa7;
    color: #8b6914;
    border-radius: 6px;
    font-size: 0.65em;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    vertical-align: middle;
    line-height: 16px;
	animation: moderation-pulse 2s infinite;
}

@keyframes moderation-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.username-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
.username-link:hover {
    color: #ea580c;
}
.username {
    font-weight: 600;
    color: #111827;
    font-size: 14px;
}
.username.is-uploader {
    color: #e87f45; 
}
.username.is-uploader:hover {
    color: #f3681b;
}
.username.is-elite-uploader {
    color: #ab47bc; 
}
.username.is-elite-uploader:hover {
    color: #9c27b0;
}
.username.is-verified-uploader {
    color: #b94309; 
}
.username.is-verified-uploader:hover {
    color: #d84315;
}
.username.is-system-moderator {
    color: #6366f1;
    font-weight: 600;
}
.username.is-system-moderator:hover {
    color: #4f46e5;
}
.comment-text.system-moderator {
    background: #eff6ff;
    border-left: 3px solid #6366f1;
    padding: 12px;
    border-radius: 8px;
    font-style: italic;
    color: #374151;
}
.avatar-letter.system-moderator {
    background: #6366f1;
    color: white;
    font-weight: bold;
    font-size: 12px;
}
.timestamp {
    color: #6b7280;
    font-size: 12px;
}
.comment-text {
	color: #262626;
    font-size: 14px;
    line-height: 1.5;
	margin-top: 12px;
    margin-bottom: 12px;
}
.comment-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}
.action-btn {
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
    position: relative;
}
.action-btn.active {
    z-index: 1001;
}
.action-btn:hover {
    color: #374151;
    background: #f3f4f6;
}
.action-btn.liked {
    color: #4CAF50;
    background: #eefaef;
}
.action-btn.disliked {
    color: #dc2626;
    background: #fef2f2;
}
.like-btn:hover {
    color: #4caf50;
}
.dislike-btn:hover {
    color: #dc2626;
}
.more-btn.active {
    background: #f3f4f6;
    color: #374151;
}
.more-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 140px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    margin-top: 5px;
}
.more-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.comment-item {
    position: relative;
}
.replies-container {
    display: block;
}
.replies-container.collapsed {
    display: none !important;
}
.reply-thread {
    display: block !important;
    margin-left: 20px; 
    margin-top: 16px;

    padding-left: 16px;
    position: relative;

	border-radius: 12px;
}
.reply-thread.flat-thread {
    margin-left: 0; 
    border-left: 1px solid #f8f9fa; 
    padding-left: 12px; 
    background: linear-gradient(90deg, rgba(248, 249, 250, 0.3) 0%, rgba(248, 249, 250, 0) 15%); 
}
.reply-thread:hover {
    border-left-color: #e5e7eb; 
    background: linear-gradient(90deg, rgba(229, 231, 235, 0.4) 0%, rgba(229, 231, 235, 0) 25%); 
}
.reply-thread.flat-thread:hover {
    border-left-color: #e9ecef; 
    background: linear-gradient(90deg, rgba(233, 236, 239, 0.4) 0%, rgba(233, 236, 239, 0) 20%);
}
.reply-item {
    display: block !important;
    margin-top: 12px;
    position: relative;
	border: 1px solid #eee;
    padding: 14px;
    border-radius: 12px;
}
.reply-item:first-child {
    margin-top: 0;
}
.reply-item .comment-header::before {
    content: "↳";
    color: #9ca3af;
    font-size: 14px;
    margin-right: 4px;
    opacity: 0.7;
	display: none;
}
.reply-thread.flat-thread .reply-item .comment-header::before {
    content: "💬";
    color: #6b7280;
    font-size: 12px;
    margin-right: 6px;
    opacity: 0.8;
}
.reply-form {
    margin-top: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    animation: slideDown 0.3s ease;
	width: 100%;
	max-width: 768px;
    position: relative;
    z-index: 1;
}
.reply-form .toolbar-left {
    position: relative;
}
.reply-form .reply-emojiPicker {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 320px;
    max-height: 300px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-top: 5px;
}
.reply-form .reply-emojiPicker.show {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.reply-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 12px;
}
.cancel-btn {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #6b7280;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}
.cancel-btn:hover {
    background: #f3f4f6;
    color: #374151;
}
.toolbar-left {
    position: relative;
}
.emoji-picker {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 320px;
    max-height: 300px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-top: 5px;
}
.emoji-picker.show {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}
.reply-emojiPicker {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 320px;
    max-height: 300px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-top: 5px;
}
.reply-emojiPicker.show {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}
.emoji-picker-header {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
}
.emoji-categories {
    display: flex;
    padding: 8px;
    border-bottom: 1px solid #f3f4f6;
    gap: 4px;
}
.emoji-category {
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}
.emoji-category:hover,
.emoji-category.active {
    background: #f3f4f6;
}
.emoji-grid {
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
    max-height: 200px;
    overflow-y: auto;
}
.emoji-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
}
.emoji-item:hover {
    background: #f3f4f6;
    transform: scale(1.2);
}
.show-replies-container {
    margin-top: 12px;
    padding-top: 8px;
}
.show-replies-btn {
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
    font-weight: 500;
}
.show-replies-btn:hover {
    background: #f3f4f6;
    color: #374151;
}
.show-replies-btn i {
    font-size: 12px;
    transition: transform 0.2s;
}
.replies-text {
    font-weight: 500;
}
.show-more {
    text-align: center;
    margin-top: 24px;
    padding-top: 16px;
}
.show-more-btn {
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s;
}
.show-more-btn:hover {
    background: #ebf5ff;
}
.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #008CF3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.comment-container {
	width: 768px;
    max-width: 768px;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
	border: 1px solid #e5e7eb;
}
.comment-editor {
    width: 100%;
    min-height: 80px;
    border: none;
    background: transparent;
    resize: none;
    outline: none;
    font-size: 1.025rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-family: inherit;
    line-height: 1.5;
}
.comment-editor::placeholder {
    color: #9ca3af;
}
.comment-editor:focus {
    color: #374151;
}
.toolbar {
    display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.reply-toolbar {
    justify-content: flex-start;
    gap: 16px;
}
.reply-toolbar .toolbar-left {
    flex: 1;
}
.toolbar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}
.toolbar-btn {
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    border-radius: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}
.toolbar-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.toolbar-btn[id*="youtube"] svg {
    width: 20px;
    height: 20px;
}
.reply-toolbar .toolbar-btn {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}
.reply-toolbar .toolbar-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.toolbar-btn:hover {
    background-color: #e5e7eb;
    color: #374151;
}
.toolbar-btn.active {
    background-color: #dbeafe;
    color: #2563eb;
}
.separator {
    width: 1px;
    height: 1.25rem;
    background-color: #d1d5db;
    margin: 0 0.5rem;
}
.hidden {
    display: none;
}
.file-input {
    display: none;
}
@media (max-width: 640px) {
    .comments-container {
        margin: 10px;
        padding: 16px;
    }
    .comment-toolbar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .formatting-tools {
        justify-content: center;
    }
    .comments-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .search-container {
        order: 2;
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }
    .comments-title {
        order: 1;
    }
    .sort-dropdown {
        order: 3;
        align-self: flex-end;
    }
    .reply-thread {
        margin-left: 12px; 
        padding-left: 12px;
        border-left-width: 1px; 
    }
    .reply-thread.flat-thread {
        margin-left: 0; 
        padding-left: 8px; 
        border-left-width: 1px;
    }
    .reply-item .comment-header::before {
        font-size: 12px;
    }
    .reply-thread.flat-thread .reply-item .comment-header::before {
        font-size: 11px;
        margin-right: 4px;
    }
    .comment-actions {
        flex-wrap: wrap;
        gap: 8px;
    }
    .emoji-picker {
        width: 280px;
        left: 50%;
        transform: translateX(-50%);
    }
    .show-replies-btn {
        font-size: 12px;
        padding: 4px 8px;
        gap: 4px;
    }
    html, body {
        overflow-x: hidden !important;
        box-sizing: border-box;
    }
    .comments-container {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem 0rem;
        border-radius: 0.5rem;
        margin: 0;
        box-sizing: border-box;
    }
    .comment-container {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem 0.5rem;
        border-radius: 0.5rem;
        margin: 0;
        left: 0;
        right: 0;
        box-sizing: border-box;
    }
    .comment-editor {
        min-height: 56px;
        font-size: 1rem;
        padding: 0.5rem 0.25rem;
    }
    .toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    .toolbar-left {
        gap: 0.5rem;
		flex-wrap: wrap;
    }
    .toolbar-btn {
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
        min-height: 2.5rem;
    }
    .toolbar-btn svg {
        width: 18px;
        height: 18px;
    }
    .toolbar-btn[id*="youtube"] svg {
        width: 22px;
        height: 22px;
    }
    .reply-toolbar .toolbar-btn {
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
        min-height: 2.5rem;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }
    .reply-toolbar .toolbar-btn svg {
        width: 18px;
        height: 18px;
    }
    .submit-btn {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1rem;
        min-height: 2.5rem;
    }
}
.comment-rating-container {
    display: flex;
    gap: 20px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}
.rating-section {
    display: flex;
    align-items: center;
    gap: 12px;
}
.rating-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rating-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}
.rating-label i {
    font-size: 16px;
    color: #9ca3af;
}
.rating-select {
    padding: 6px 8px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 13px;
    background: white;
    color: #374151;
    cursor: pointer;
}
.rating-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.rating-display {
    min-width: 40px;
}
.avg-rating {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}
.avg-rating span {
    color: #6b7280;
    font-weight: 400;
}
.comment-rating-container.hidden {
    display: none;
}
@media (max-width: 1024px) {
.comment-item {
	padding: 6px;
}
.reply-item {
	padding: 6px;
}
}
@media (max-width: 640px) {
    .comment-rating-container {
        flex-direction: column;
        gap: 12px;
		align-items: baseline;
    }
    .rating-section {
        justify-content: space-between;
    }
} 
@media (max-width: 768px) {
    .comment-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    .comment-rating-container {
        width: 100%;
        order: -1; 
    }
} 
.badge-uploader {
    display: inline-flex;
    align-items: center;
    padding: 1px 5px;
    background: #e3f2fd;
    color: #008bf6;
    border-radius: 6px;
    font-size: 0.65em;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    vertical-align: middle;
    line-height: 16px;
}
.spoiler-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 12px 0;
    border-radius: 8px;
    padding: 10px 14px 0px 14px;
    position: relative;
}
.spoiler-toggle {
    display: inline-block;
    background: #e5e7eb;
    color: #6b7280;
    border: none;
    border-radius: 6px;
    padding: 4px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 8px;
    transition: background 0.2s, color 0.2s;
}
.spoiler-toggle:hover {
    background: #008bf6;
    color: #fff;
    outline: none;
}
.spoiler-content {
    display: inline-block;
    max-width: 100%;
    margin-top: 8px;
    background: #f3f4f6;
    border-radius: 6px;
    padding: 10px 12px;
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
    box-sizing: border-box;
}
.spoiler-block:has(.spoiler-content:empty),
.spoiler-content:empty {
    display: none;
}
.spoiler-block:has(.spoiler-content:empty),
.spoiler-content:empty {
    display: none;
}
.youtube-embed-container {
    position: relative;
    width: 320px;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}
.youtube-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 180px;
    border: none;
    border-radius: 8px;
}
@media (max-width: 640px) {
    .youtube-embed-container {
        width: 280px;
        height: 157px;
        margin: 8px 0;
    }
    .youtube-embed-container iframe {
        width: 280px;
        height: 157px;
    }
} 
.sub-replies-container {
    display: block;
    margin-left: 0; 
    margin-top: 12px;
    padding-left: 12px;
    background: linear-gradient(90deg, rgba(243, 244, 246, 0.2) 0%, rgba(243, 244, 246, 0) 15%);
    border-radius: 0 3px 3px 0;
}
.sub-replies-container.collapsed {
    display: none !important;
}
.show-sub-replies-container {
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px solid #f8f9fa;
}
.show-sub-replies-btn {
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
    font-weight: 500;
}
.show-sub-replies-btn:hover {
    background: #f8f9fa;
    color: #374151;
}
.show-sub-replies-btn i {
    font-size: 10px;
    transition: transform 0.2s;
}
.sub-replies-text {
    font-weight: 500;
    font-size: 11px;
}
.show-more-replies-container {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #f3f4f6;
    text-align: center;
}
.show-more-replies-btn {
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
    font-weight: 500;
    margin: 0 auto;
}
.show-more-replies-btn:hover {
    background: #f3f4f6;
    color: #374151;
}
.show-more-replies-btn i {
    font-size: 12px;
    transition: transform 0.2s;
}
.reply-item .sub-replies-container .reply-item .comment-header::before {
    content: "↳↳";
    color: #d1d5db;
    font-size: 12px;
    margin-right: 4px;
    opacity: 0.6;
	display: none;
}
@media (max-width: 640px) {
    .sub-replies-container {
        margin-left: 0;
        padding-left: 8px;
        border-left-width: 1px;
    }
    .show-sub-replies-btn {
        font-size: 11px;
        padding: 3px 6px;
        gap: 3px;
    }
    .sub-replies-text {
        font-size: 10px;
    }
    .show-more-replies-btn {
        font-size: 12px;
        padding: 4px 8px;
        gap: 4px;
    }
    .reply-item .sub-replies-container .reply-item .comment-header::before {
        font-size: 11px;
        margin-right: 3px;
    }
} 
.torrent-link {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    text-decoration: none;
    color: #495057;
    font-size: 13px;
    margin: 2px 0;
    max-width: 500px;
	text-wrap: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.torrent-link:hover {
    background: linear-gradient(135deg, #008bf6 0%, #00afff 100%);
    color: white;
    text-decoration: none;
    border-color: #008bf6;
}
.torrent-link:hover .fas {
    color: white !important;
}
.torrent-link .torrent-name {
    font-style: normal;
    font-weight: 500;
    margin-left: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 420px;
}
.torrent-link:hover .torrent-name {
    color: white;
}
.magnet-link .magnet-name {
    font-style: normal;
    font-weight: 500;
    margin-left: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 420px;
}
.torrent-tooltip {
    position: absolute;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    max-width: 450px;
    min-width: 320px;
    font-size: 13px;
}
.torrent-tooltip-container {
    padding: 14px;
}
.torrent-tooltip-header {
    margin-bottom: 12px;
}
.torrent-title {
    font-weight: 600;
    color: #3C4858;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
    word-break: break-word;
}
.torrent-meta {
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.3;
}
.torrent-meta strong {
    color: #374151;
}
.torrent-meta .verified-badge {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.torrent-hash {
    font-family: 'Courier New', monospace;
    font-size: 10px;
	text-transform: uppercase;
    color: #9ca3af;
    background: #f3f4f6;
    padding: 4px 6px;
    border-radius: 4px;
    word-break: break-all;
    line-height: 1.2;
	width: max-content;
}
.torrent-tooltip-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 8px;
    margin-top: 8px;
    gap: 12px;
}
.stats-left, .stats-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.stats-left {
    flex: 1;
}
.stats-right {
    flex-shrink: 0;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #374151;
}
.stat-item strong {
    font-weight: 600;
}
.rating-item {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    color: #374151;
    font-weight: 600;
}
.rating-item .fas {
    font-size: 11px;
    color: #6b7280;
}
.rating-item .fa-thumbs-up {
    color: #22c55e;
}
.rating-item .fa-thumbs-down {
    color: #ef4444;
}
.rating-max {
    color: #9ca3af;
    font-weight: 400;
    font-size: 10px;
}
.torrent-tooltip.error-tooltip .torrent-title {
    color: #9ca3af;
}
.torrent-tooltip.error-tooltip .torrent-meta {
    color: #9ca3af;
}
.torrent-tooltip.error-tooltip .stat-item strong,
.torrent-tooltip.error-tooltip .rating-item {
    color: #9ca3af;
}
@media (max-width: 640px) {
    .torrent-link {
        font-size: 12px;
        padding: 4px 8px;
        max-width: 100%;
    }
    .torrent-link .torrent-name {
        max-width: 250px;
    }
    .torrent-tooltip {
        max-width: 300px;
        min-width: 280px;
        font-size: 12px;
    }
    .torrent-tooltip-container {
        padding: 12px;
    }
    .torrent-title {
        font-size: 13px;
    }
    .torrent-tooltip-stats {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        padding: 6px 8px;
    }
    .stats-left, .stats-right {
        gap: 8px;
        flex-wrap: wrap;
        width: 100%;
    }
    .rating-item, .stat-item {
        min-width: 40px;
        justify-content: flex-start;
        font-size: 11px;
    }
}
.deleted-comment {
    opacity: 0.6;
}
.deleted-comment .avatar-letter.deleted {
    background-color: #6c757d;
    color: #fff;
    font-weight: bold;
}
.deleted-comment .username.deleted {
    color: #6c757d;
    font-style: italic;
    font-weight: normal;
}
.deleted-comment .comment-text.deleted,
.comment-text.deleted {
    color: #6c757d;
    font-style: italic;
    background-color: #f1f3f4;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
	width: max-content;
}
.deleted-comment > .comment-content > .comment-body > .comment-actions .action-btn:not(.reply-btn) {
    display: none; 
}

.comment-item[data-user-id="system_moderator"] .action-btn,
.reply-item[data-user-id="system_moderator"] .action-btn {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.comment-item[data-user-id="system_moderator"] .action-btn:hover,
.reply-item[data-user-id="system_moderator"] .action-btn:hover {
    background: transparent;
    color: #6b7280;
}

.comment-item:has(> .comment-content > .comment-body > .comment-header > .moderation-badge) .comment-actions .action-btn,
.reply-item:has(> .comment-content > .comment-body > .comment-header > .moderation-badge) .comment-actions .action-btn {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.comment-item:has(> .comment-content > .comment-body > .comment-header > .moderation-badge) .comment-actions .action-btn:hover,
.reply-item:has(> .comment-content > .comment-body > .comment-header > .moderation-badge) .comment-actions .action-btn:hover {
    background: transparent;
    color: #6b7280;
}
@media (prefers-color-scheme: dark) {
    .deleted-comment .comment-content {
        background-color: #2d3748;
        border-left-color: #4a5568;
    }
    .deleted-comment .comment-text.deleted,
    .comment-text.deleted {
        background-color: #374151;
        border-color: #4b5563;
        color: #9ca3af;
    }
}

.comments-error-container {
    margin: 16px 0;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
}
.comments-error-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #6b7280;
}
.comments-error-content i {
    color: #9ca3af;
    font-size: 16px;
}
.comments-error-content span {
    flex: 1;
}
.comments-error-container button {
    padding: 4px 12px;
    font-size: 13px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    background: white;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}
.comments-error-container button:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}
.comments-error-container .error-dismiss-btn {
    padding: 4px 8px;
    font-size: 18px;
    line-height: 1;
}

.dark-mode .comment-input-box {
    background: #2a2f38;
}

.dark-mode .comment-input-box textarea {
    color: #98a2b6;
}

.dark-mode .comment-input-box textarea::placeholder {
    color: #5e687d;
}

.dark-mode .comment-editor::placeholder {
    color: #5e687d;
}

.dark-mode .comment-rating-container .rating-select:focus {
    border-color: #008bf6;
    box-shadow: 0 0 0 2px rgba(0, 139, 246, 0.2);
}

.dark-mode .comment-rating-container .rating-label i {
    color: #98a2b6;
}

.dark-mode .toolbar-btn {
    color: #98a2b6;
}

.dark-mode .toolbar-btn:hover {
    background-color: #333843;
    color: #c9d1d9;
}

.dark-mode .toolbar-btn.active {
    background-color: rgba(0, 139, 246, 0.15);
    color: #3bb6ff;
}

.dark-mode .separator {
    background-color: #3d4450;
}

.dark-mode .submit-btn:disabled {
    background: #3d4450;
    color: #5e687d;
}

.dark-mode .comment-item.comment-highlighted,
.dark-mode .reply-item.comment-highlighted {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.dark-mode .username-link:hover {
    color: #ea580c;
}

.dark-mode .edited-badge {
    color: #8994aa;
}

.dark-mode .comment-text.system-moderator {
    background: rgba(99, 102, 241, 0.08);
    border-left-color: #6366f1;
    color: #98a2b6;
}

.dark-mode .moderation-badge {
    background: rgba(255, 193, 7, 0.15);
    color: #ffd700;
}

.dark-mode .badge-uploader {
    background: rgba(0, 139, 246, 0.12);
    color: #3bb6ff;
}

.dark-mode .comment-actions {
    border-top-color: #333843;
}

.dark-mode .action-btn {
    color: #98a2b6;
}

.dark-mode .like-btn:hover {
    color: #3fb950;
}

.dark-mode .dislike-btn:hover {
    color: #f85149;
}

.dark-mode .more-btn.active {
    background: #333843;
    color: #c9d1d9;
}

.dark-mode .more-dropdown {
    background: #262a33;
    border-color: #5f6a7d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.dark-mode .dropdown-item.danger {
    color: #f85149;
}

.dark-mode .dropdown-item.danger:hover {
    background: rgba(248, 81, 73, 0.08);
}

.dark-mode .reply-thread.flat-thread {
    border-left-color: #5f6a7d;
    background: linear-gradient(90deg, rgba(38, 42, 51, 0.3) 0%, rgba(38, 42, 51, 0) 15%);
}

.dark-mode .reply-thread:hover {
    border-left-color: #5e687d;
    background: linear-gradient(90deg, rgba(42, 47, 56, 0.4) 0%, rgba(42, 47, 56, 0) 25%);
}

.dark-mode .reply-thread.flat-thread:hover {
    border-left-color: #5e687d;
    background: linear-gradient(90deg, rgba(42, 47, 56, 0.4) 0%, rgba(42, 47, 56, 0) 20%);
}

.dark-mode .reply-item .comment-header::before {
    color: #5e687d;
}

.dark-mode .reply-form {
    background: #2a2f38;
}

.dark-mode .cancel-btn {
    border-color: #5f6a7d;
    color: #98a2b6;
}

.dark-mode .cancel-btn:hover {
    background: #333843;
    color: #c9d1d9;
}

.dark-mode .show-replies-btn {
    color: #98a2b6;
}

.dark-mode .show-replies-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #c9d1d9;
}

.dark-mode .show-sub-replies-btn {
    color: #98a2b6;
}

.dark-mode .show-sub-replies-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #c9d1d9;
}

.dark-mode .show-more-replies-btn {
    color: #98a2b6;
}

.dark-mode .show-more-replies-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #c9d1d9;
}

.dark-mode .show-more-replies-container {
    border-top-color: #333843;
}

.dark-mode .show-sub-replies-container {
    border-top-color: #333843;
}

.dark-mode .show-more-btn {
    color: #98a2b6;
}

.dark-mode .show-more-btn:hover {
    background: rgba(59, 182, 255, 0.1);
    color: #3bb6ff;
}

.dark-mode .reply-emojiPicker,
.dark-mode .reply-form .reply-emojiPicker {
    background: #262a33;
    border: 1px solid #5f6a7d;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.dark-mode .emoji-category:hover,
.dark-mode .emoji-category.active {
    background: #333843;
}

.dark-mode .emoji-item:hover {
    background: #333843;
}

.dark-mode .comments-search-input:focus {
    border-color: #008bf6;
    box-shadow: 0 0 0 3px rgba(0, 139, 246, 0.15);
}

.dark-mode .comments-search-input::placeholder {
    color: #5e687d;
}

.dark-mode .comments-title h3 {
    color: #c9d1d9;
}

.dark-mode .comment-count {
    background: #333843;
    color: #98a2b6;
}

.dark-mode .rating-label {
    color: #8994aa;
}

.dark-mode .rating-label i {
    color: #98a2b6;
}

.dark-mode .rating-select {
    background: #1e2229;
    border-color: #5f6a7d;
    color: #98a2b6;
}

.dark-mode .rating-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.dark-mode .avg-rating {
    color: #c9d1d9;
}

.dark-mode .avg-rating span {
    color: #8994aa;
}

.dark-mode .spoiler-block {
    background: rgba(255, 255, 255, 0.04);
}

.dark-mode .spoiler-toggle {
    background: #3d4450;
    color: #98a2b6;
}

.dark-mode .spoiler-toggle:hover {
    background: #008bf6;
    color: #fff;
}

.dark-mode .spoiler-content {
    background: #2a2f38;
    color: #98a2b6;
}

.dark-mode .torrent-tooltip {
    background: #262a33;
    border-color: #5f6a7d;
    color: #98a2b6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.dark-mode .torrent-title {
    color: #c9d1d9;
}

.dark-mode .torrent-meta {
    color: #8994aa;
}

.dark-mode .torrent-meta strong {
    color: #c9d1d9;
}

.dark-mode .torrent-meta .verified-badge {
    background: rgba(59, 182, 255, 0.12);
    color: #3bb6ff;
}

.dark-mode .torrent-hash {
    background: #1e2229;
    color: #8994aa;
}

.dark-mode .torrent-tooltip-stats {
    background: #1e2229;
}

.dark-mode .torrent-tooltip-stats .stat-item {
    color: #98a2b6;
}

.dark-mode .torrent-tooltip-stats .rating-item {
    color: #98a2b6;
}

.dark-mode .torrent-tooltip.error-tooltip .torrent-title {
    color: #5f6a7d;
}

.dark-mode .torrent-tooltip.error-tooltip .torrent-meta {
    color: #5f6a7d;
}

.dark-mode .torrent-tooltip.error-tooltip .stat-item strong,
.dark-mode .torrent-tooltip.error-tooltip .rating-item {
    color: #5f6a7d;
}

.dark-mode .deleted-comment .avatar-letter.deleted {
    background-color: #4f5769;
}

.dark-mode .comments-error-container {
    background: #262a33;
    border-color: #333843;
}

.dark-mode .comments-error-content {
    color: #98a2b6;
}

.dark-mode .comments-error-content i {
    color: #5e687d;
}

.dark-mode .comments-error-container button {
    background: #2a2f38;
    border-color: #5f6a7d;
    color: #98a2b6;
}

.dark-mode .comments-error-container button:hover {
    background: #333843;
    border-color: #5e687d;
}

.dark-mode .edit-form textarea {
    background: #1e2229;
    border-color: #5f6a7d;
    color: #98a2b6;
}

.dark-mode .loading {
    border-color: #333843;
    border-top-color: #008bf6;
}