.comment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.comment-modal-content {
    background: #1a1a1a;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.comment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.comment-modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.comment-modal-close {
    background: none;
    border: none;
    color: #999;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.2s;
}

.comment-modal-close:hover {
    color: #fff;
}

.comment-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.comment-modal-body .comments-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.comment-modal-body .comment-item {
    padding: 12px 0;
    border-bottom: 1px solid #2a2a2a;
}

.comment-modal-body .comment-item:last-child {
    border-bottom: none;
}

.comment-loading {
    text-align: center;
    padding: 20px;
    color: #999;
}

@media (max-width: 768px) {
    .comment-modal-overlay {
        padding: 10px;
    }

    .comment-modal-content {
        max-height: 90vh;
    }

    .comment-modal-header {
        padding: 16px;
    }

    .comment-modal-body {
        padding: 16px;
    }
}

